-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmodel.go
417 lines (349 loc) · 10.3 KB
/
model.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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
package octopus
import (
"errors"
"fmt"
"reflect"
"strings"
"github.com/Kamva/nautilus"
"github.com/Kamva/nautilus/url"
"github.com/Kamva/octopus/base"
"github.com/Kamva/octopus/clients"
"github.com/Kamva/shark"
)
var newMongo = clients.NewMongoDB
var newSQLServer = clients.NewSQLServer
var newPostgres = clients.NewPostgres
// Configurator is a function for configuring Model attributes.
// Usually it is used for adding indices or configure table
// name, or even configuring drivers with custom drivers
type Configurator func(*Model)
// Model is an object that responsible for interacting
type Model struct {
scheme base.Scheme
tableName string
config base.DBConfig
client base.Client
}
// Initiate initialize the model and prepare it for interacting with database
func (m *Model) Initiate(scheme base.Scheme, config base.DBConfig, configurators ...Configurator) {
if reflect.ValueOf(scheme).Kind() != reflect.Ptr {
panic("scheme should passed by reference")
}
// Set basic attributes
m.config = config
m.tableName = m.guessTableName(scheme)
m.scheme = scheme
// run configurators to set custom value for model attributes
for _, configure := range configurators {
configure(m)
}
// At last check for table name prefix
if config.HasPrefix() {
m.tableName = config.Prefix + "_" + m.tableName
}
}
// EnsureIndex checks for table/collection existence in database, if not found tries
// to create it. Then it ensures that given indices are exists on table/collection.
func (m *Model) EnsureIndex(indices ...base.Index) {
m.PrepareClient()
defer m.CloseClient()
if m.config.Driver != base.Mongo {
err := m.client.CreateTable(m.tableName, m.getTableStruct())
shark.PanicIfError(err)
}
for _, index := range indices {
err := m.client.EnsureIndex(m.tableName, index)
shark.PanicIfError(err)
}
}
// Find search for a record/document in model table/collection match with given ID
func (m *Model) Find(id interface{}) (base.Scheme, error) {
m.PrepareClient()
defer m.CloseClient()
result, err := m.client.FindByID(m.tableName, id)
if result.Length() == 0 {
return nil, err
}
fillScheme(m.scheme, *result.GetMap())
return m.scheme, err
}
// Where returns a Query Builder based on given conditions on model table/collection
// that you can fetch, update or delete records/document match the query.
func (m *Model) Where(query ...base.Condition) base.Builder {
m.PrepareClient()
queryBuilder := m.client.Query(m.tableName, query...)
return NewBuilder(queryBuilder, m)
}
// Create inserts the given filled scheme into model table/collection and return
// inserted record/document or error if there was any fault in data insertion.
func (m *Model) Create(data base.Scheme) error {
m.PrepareClient()
defer m.CloseClient()
recordData := generateRecordData(data, true)
err := m.client.Insert(m.tableName, recordData)
if err != nil {
return err
}
fillScheme(data, *recordData.GetMap())
return nil
}
// Update find a record/document that match with data ID and updates its field
// with data values. It'll return error if anything went wrong during update
func (m *Model) Update(data base.Scheme) error {
m.PrepareClient()
defer m.CloseClient()
recordData := generateRecordData(data, false)
return m.client.UpdateByID(m.tableName, data.GetID(), *recordData)
}
// Delete find a record/document that match with data ID and remove it from
// related table/collection. It will return error if anything went wrong
func (m *Model) Delete(data base.Scheme) error {
m.PrepareClient()
defer m.CloseClient()
return m.client.DeleteByID(m.tableName, data.GetID())
}
// GetClient returns database client.
// Note that client should be closed after use.
func (m *Model) GetClient() base.Client {
m.PrepareClient()
return m.client
}
// GetCollection returns collection object for mongo db.
func (m *Model) GetCollection() (base.MongoCollection, error) {
c := m.GetClient()
client, ok := c.(*clients.MongoDB)
if !ok {
return nil, errors.New("cannot call GetCollection on a non-mongodb model")
}
return client.GetCollection(m.tableName), nil
}
// Guess the table name based on scheme name
func (m *Model) guessTableName(scheme base.Scheme) string {
table := nautilus.Plural(nautilus.ToSnake(nautilus.GetType(scheme)))
// If driver is SQL Server we should guess table name differently
// since in SQL Server table names have an additional schema part
if m.config.Driver == base.MSSQL {
// If scheme is implement MsScheme we get schema name from scheme
// itself, otherwise we chose a default schema which is `dbo`
if msScheme, ok := scheme.(base.MsScheme); ok {
table = msScheme.GetSchema() + "." + table
} else {
table = "dbo." + table
}
}
return table
}
// PrepareClient Prepare client for further actions
func (m *Model) PrepareClient() {
if m.client == nil {
userInfo := url.NewUserInfo(m.config.Username, m.config.Password)
switch m.config.Driver {
case base.Mongo:
i := &url.URL{
Scheme: "mongodb",
UserInfo: userInfo,
Host: m.config.Host,
Port: m.config.Port,
Path: m.config.Database,
Query: m.config.GetOptions(),
}
con := i.String()
m.client = newMongo(con, m.config.Database)
break
case base.MSSQL:
m.config.AddOption("database", m.config.Database)
i := &url.URL{
Scheme: "sqlserver",
UserInfo: userInfo,
Host: m.config.Host,
Port: m.config.Port,
Query: m.config.GetOptions(),
}
con := i.String()
m.client = newSQLServer(con)
break
case base.PG:
i := &url.URL{
Scheme: "postgres",
UserInfo: userInfo,
Host: m.config.Host,
Port: m.config.Port,
Path: m.config.Database,
Query: m.config.GetOptions(),
}
con := i.String()
m.client = newPostgres(con)
break
default:
panic("Invalid database driver")
}
}
}
// CloseClient close and destroy client connection
func (m *Model) CloseClient() {
if m.client != nil {
m.client.Close()
m.client = nil
}
}
func (m *Model) getTableStruct() base.TableStructure {
fieldsData := getSchemeData(m.scheme)
tableStructure := make([]base.FieldStructure, 0)
for _, fieldData := range fieldsData {
tagData := parseTag(fieldData)
if _, ok := tagData["ignore"]; !ok && !fieldData.Anonymous && fieldData.Exported {
var fieldName string
if name, ok := tagData["column"]; ok {
fieldName = name
} else {
fieldName = nautilus.ToSnake(fieldData.Name)
}
if fieldName == m.scheme.GetKeyName() {
tagData["ai"] = "true"
tagData["id"] = "true"
tagData["pk"] = "true"
}
fieldStructure := base.FieldStructure{
Name: fieldName,
Type: m.getMatchingType(fieldData.Type, tagData),
Options: m.getFieldOptions(tagData),
}
tableStructure = append(tableStructure, fieldStructure)
}
}
return tableStructure
}
func (m *Model) getMatchingType(t reflect.Type, tags base.SQLTag) string {
if typename, ok := tags["type"]; ok {
return typename
}
switch m.config.Driver {
case base.PG:
return m.getPostgresMatchingType(t, tags)
case base.MSSQL:
return m.getMSSQLMatchingType(t)
}
panic("Invalid database driver")
}
func (m *Model) getPostgresMatchingType(t reflect.Type, tags base.SQLTag) string {
switch t.Kind() {
case reflect.Bool:
return "BOOLEAN"
case reflect.Int8, reflect.Int16, reflect.Uint8:
if tags["ai"] == "true" {
return "SMALLSERIAL"
}
return "SMALLINT"
case reflect.Int32, reflect.Int, reflect.Uint16:
if tags["ai"] == "true" {
return "SERIAL"
}
return "INT"
case reflect.Int64, reflect.Uint32, reflect.Uint:
if tags["ai"] == "true" {
return "BIGSERIAL"
}
return "BIGINT"
case reflect.Float32:
return "REAL"
case reflect.Float64:
return "FLOAT8"
case reflect.Uint64:
return "DECIMAL"
case reflect.Array, reflect.Slice:
return m.getPostgresMatchingType(t.Elem(), tags) + "[]"
case reflect.Map, reflect.Struct:
return "JSON"
case reflect.String:
return "TEXT"
}
panic(fmt.Sprintf("Field Type [%s] is not supported. Change type or ignore it with tag", t.Kind().String()))
}
func (m *Model) getMSSQLMatchingType(t reflect.Type) string {
switch t.Kind() {
case reflect.Bool:
return "BIT"
case reflect.Uint8:
return "TINYINT"
case reflect.Int8, reflect.Int16:
return "SMALLINT"
case reflect.Int32, reflect.Int, reflect.Uint16:
return "INT"
case reflect.Int64, reflect.Uint32, reflect.Uint:
return "BIGINT"
case reflect.Float32:
return "REAL"
case reflect.Float64:
return "FLOAT"
case reflect.Uint64:
return "DECIMAL"
case reflect.String:
return "NVARCHAR(MAX)"
}
panic(fmt.Sprintf("Field Type [%s] is not supported. Change type or ignore it with tag", t.Kind().String()))
}
func (m *Model) getFieldOptions(tags base.SQLTag) string {
switch m.config.Driver {
case base.PG:
return m.getPostgresFieldOptions(tags)
case base.MSSQL:
return m.getMSSQLFieldOptions(tags)
}
panic("Invalid database driver")
}
func (m *Model) getPostgresFieldOptions(tags base.SQLTag) (options string) {
if _, ok := tags["pk"]; ok {
options = "PRIMARY KEY "
} else if _, ok := tags["notnull"]; ok {
options += "NOT NULL "
} else if _, ok := tags["null"]; ok {
options += "NULL "
}
if check, ok := tags["check"]; ok {
options += fmt.Sprintf("CHECK (%s) ", check)
}
if def, ok := tags["default"]; ok {
options += fmt.Sprintf("DEFAULT %s ", def)
}
if _, ok := tags["unique"]; ok {
options += "UNIQUE"
}
return strings.TrimRight(options, " ")
}
func (m *Model) getMSSQLFieldOptions(tags base.SQLTag) (options string) {
if val, ok := tags["id"]; ok {
if val == "true" {
options += "IDENTITY "
} else {
options += fmt.Sprintf("IDENTITY%s ", val)
}
}
if _, ok := tags["pk"]; ok {
options += "PRIMARY KEY "
if _, ok := tags["cluster"]; ok {
options += "CLUSTERED "
} else if _, ok := tags["noncluster"]; ok {
options += "NONCLUSTERED "
}
} else if _, ok := tags["null"]; ok {
options += "NULL "
} else if _, ok := tags["notnull"]; ok {
options += "NOT NULL "
}
if def, ok := tags["default"]; ok {
options += fmt.Sprintf("DEFAULT %s ", def)
}
if _, ok := tags["unique"]; ok {
options += "UNIQUE "
if _, ok := tags["cluster"]; ok {
options += "CLUSTERED "
} else if _, ok := tags["noncluster"]; ok {
options += "NONCLUSTERED "
}
}
if check, ok := tags["check"]; ok {
options += fmt.Sprintf("CHECK %s ", check)
}
options = strings.TrimRight(options, " ")
return options
}