-
Notifications
You must be signed in to change notification settings - Fork 31
/
database.go
276 lines (241 loc) · 5.33 KB
/
database.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
package aranGO
import (
"errors"
nap "github.com/diegogub/napping"
"regexp"
"time"
)
// Database struct
type Database struct {
Name string `json:"name"`
Id string `json:"id"`
Path string `json:"path"`
System bool `json:"isSystem"`
Collections []Collection
sess *Session
baseURL string
}
/*
type DatabaseResult struct {
Result []string `json:"result"`
Error bool `json:"error"`
Code int `json:"code"`
}
*/
// Execute AQL query into server and returns cursor struct
func (d *Database) Execute(q *Query) (*Cursor, error) {
if q == nil {
return nil, errors.New("Cannot execute nil query")
} else {
// check if I need to validate query
if q.Validate {
if !d.IsValid(q) {
return nil, errors.New(q.ErrorMsg)
}
}
// create cursor
c := NewCursor(d)
t0 := time.Now()
_, err := d.send("cursor", "", "POST", q, c, c)
t1 := time.Now()
if err != nil {
return nil, err
}
c.max = len(c.Result) - 1
c.Time = t1.Sub(t0)
return c, nil
}
}
// ExecuteTran executes transaction into the database
func (d *Database) ExecuteTran(t *Transaction) error {
if t.Action == "" {
return errors.New("Action must not be nil")
}
// record execution time
t0 := time.Now()
resp, err := d.send("transaction", "", "POST", t, t, t)
if err != nil {
panic(err)
}
t1 := time.Now()
t.Time = t1.Sub(t0)
if err != nil {
return err
}
if resp.Status() == 400 {
return errors.New("Error executing transaction")
}
return nil
}
func (d *Database) IsValid(q *Query) bool {
if q != nil {
res, err := d.send("query", "", "POST", map[string]string{"query": q.Aql}, q, q)
if err != nil {
return false
}
if res.Status() == 200 {
return true
} else {
// could check error into query
return false
}
} else {
return false
}
}
// Do a request to test if the database is up and user authorized to use it
func (d *Database) get(resource string, id string, method string, param *nap.Params, result, err interface{}) (*nap.Response, error) {
url := d.buildRequest(resource, id)
var r *nap.Response
var e error
switch method {
case "OPTIONS":
r, e = d.sess.nap.Options(url, result, err)
case "HEAD":
r, e = d.sess.nap.Head(url, result, err)
case "DELETE":
r, e = d.sess.nap.Delete(url, result, err)
default:
r, e = d.sess.nap.Get(url, param, result, err)
}
return r, e
}
func (d *Database) send(resource string, id string, method string, payload, result, err interface{}) (*nap.Response, error) {
url := d.buildRequest(resource, id)
var r *nap.Response
var e error
switch method {
case "POST":
r, e = d.sess.nap.Post(url, payload, result, err)
case "PUT":
r, e = d.sess.nap.Put(url, payload, result, err)
case "PATCH":
r, e = d.sess.nap.Patch(url, payload, result, err)
}
return r, e
}
func (db Database) buildRequest(t string, id string) string {
var r string
if id == "" {
r = db.baseURL + t
} else {
r = db.baseURL + t + "/" + id
}
return r
}
// Col returns Collection attached to current Database
func (db Database) Col(name string) *Collection {
var col Collection
var found bool
// need to validate this more
for _, c := range db.Collections {
if c.Name == name {
col = c
col.db = &db
found = true
break
}
}
if !found {
if db.sess.safe {
panic("Collection " + name + " not found")
} else {
var col CollectionOptions
col.Name = name
db.CreateCollection(&col)
return db.Col(name)
}
}
return &col
}
func validColName(name string) error {
reg, err := regexp.Compile(`^[A-z]+[0-9\-_]*`)
if err != nil {
return err
}
if !reg.MatchString(name) {
return errors.New("Invalid collection name")
}
return nil
}
// Create collections
func (d *Database) CreateCollection(c *CollectionOptions) error {
err := validColName(c.Name)
if err != nil {
return err
}
resp, err := d.send("collection", "", "POST", c, nil, nil)
if err != nil {
return err
}
switch resp.Status() {
case 200:
//push name into list
Collections(d)
return nil
default:
return errors.New("Failed to create collection")
}
}
//Drop Collection
func (d *Database) DropCollection(name string) error {
resp, err := d.get("collection", name, "DELETE", nil, nil, nil)
if err != nil {
return err
}
switch resp.Status() {
case 200:
return nil
default:
return errors.New("Failed to create collection")
}
}
// Truncate collection
func (d *Database) TruncateCollection(name string) error {
resp, err := d.send("collection", name+"/truncate", "PUT", nil, nil, nil)
if err != nil {
return err
}
switch resp.Status() {
// TODO need to define return codes
case 201:
return nil
case 200:
return nil
case 202:
return nil
default:
return errors.New("Failed to truncate collection")
}
}
// ColExist checks if collection exist
func (db *Database) ColExist(name string) bool {
if name == "" {
return false
}
res, err := db.get("collection", name, "GET", nil, nil, nil)
if err != nil {
panic(err)
}
switch res.Status() {
case 404:
return false
default:
return true
}
}
// CheckCollection returns collection option based on name, nil otherwise
func (d *Database) CheckCollection(name string) *CollectionOptions {
var col CollectionOptions
if name == "" {
return nil
}
resp, err := d.get("collection", name, "GET", nil, &col, &col)
if err != nil {
return nil
}
if resp.Status() == 200 {
return &col
}
return nil
}