-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepository.go
337 lines (329 loc) · 9.25 KB
/
repository.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
package repository
import (
"context"
"errors"
"fmt"
"log"
"reflect"
"strings"
mgo "github.com/core-go/mongo"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/bson/primitive"
"go.mongodb.org/mongo-driver/mongo"
)
type Mapper[T any] interface {
DbToModel(*T)
ModelToDb(*T)
MapToDb(map[string]interface{}) map[string]interface{}
}
type Repository[T any, K any] struct {
Collection *mongo.Collection
Map map[string]string
ObjectId bool
idIndex int
idJson string
versionIndex int
versionJson string
versionBson string
Mapper Mapper[T]
}
func FindFieldByName(modelType reflect.Type, fieldName string) (int, string, string) {
numField := modelType.NumField()
for i := 0; i < numField; i++ {
field := modelType.Field(i)
if field.Name == fieldName {
name1 := fieldName
name2 := fieldName
tag1, ok1 := field.Tag.Lookup("json")
tag2, ok2 := field.Tag.Lookup("bson")
if ok1 {
name1 = strings.Split(tag1, ",")[0]
}
if ok2 {
name2 = strings.Split(tag2, ",")[0]
}
return i, name1, name2
}
}
return -1, fieldName, fieldName
}
func NewMongoRepositoryWithVersion[T any, K any](db *mongo.Database, collectionName string, idObjectId bool, versionField string, options ...Mapper[T]) *Repository[T, K] {
var mapper Mapper[T]
if len(options) > 0 {
mapper = options[0]
}
var t T
modelType := reflect.TypeOf(t)
if modelType.Kind() != reflect.Struct {
panic("T must be a struct")
}
idIndex, _, jsonIdName := mgo.FindIdField(modelType)
if idIndex < 0 {
log.Println(modelType.Name() + " Repository can't use functions that need Id value (Ex Load, Exist, Save, Update) because don't have any fields of " + modelType.Name() + " struct define _id bson tag.")
}
repo := &Repository[T, K]{Collection: db.Collection(collectionName), idJson: jsonIdName, idIndex: idIndex, ObjectId: idObjectId,
Map: mgo.MakeBsonMap(modelType), Mapper: mapper, versionIndex: -1}
if len(versionField) > 0 {
index, versionJson, versionBson := FindFieldByName(modelType, versionField)
if index >= 0 {
repo.versionIndex = index
repo.versionJson = versionJson
repo.versionBson = versionBson
}
}
return repo
}
func NewRepositoryWithVersion[T any, K any](db *mongo.Database, collectionName string, versionField string, options ...Mapper[T]) *Repository[T, K] {
return NewMongoRepositoryWithVersion[T, K](db, collectionName, false, versionField, options...)
}
func NewRepository[T any, K any](db *mongo.Database, collectionName string, options ...Mapper[T]) *Repository[T, K] {
return NewMongoRepositoryWithVersion[T, K](db, collectionName, false, "", options...)
}
func (a *Repository[T, K]) All(ctx context.Context) ([]T, error) {
filter := bson.M{}
cursor, err := a.Collection.Find(ctx, filter)
if err != nil {
return nil, err
}
var objs []T
err = cursor.All(ctx, &objs)
if err != nil {
return nil, err
}
if a.Mapper != nil {
l := len(objs)
for i := 0; i < l; i++ {
a.Mapper.DbToModel(&objs[i])
}
}
return objs, nil
}
func (a *Repository[T, K]) Load(ctx context.Context, id K) (*T, error) {
var res T
if a.ObjectId {
objId := fmt.Sprintf("%v", id)
objectId, err := primitive.ObjectIDFromHex(objId)
if err != nil {
return nil, err
}
query := bson.M{"_id": objectId}
ok, er0 := mgo.FindOne(ctx, a.Collection, query, &res)
if ok && er0 == nil && a.Mapper != nil {
a.Mapper.DbToModel(&res)
}
return &res, er0
}
query := bson.M{"_id": id}
ok, er2 := mgo.FindOne(ctx, a.Collection, query, &res)
if er2 != nil {
return nil, er2
}
if !ok {
return nil, nil
}
if a.Mapper != nil {
a.Mapper.DbToModel(&res)
}
return &res, er2
}
func (a *Repository[T, K]) Exist(ctx context.Context, id K) (bool, error) {
if a.ObjectId {
objId := fmt.Sprintf("%v", id)
objectId, err := primitive.ObjectIDFromHex(objId)
if err != nil {
return false, err
}
return mgo.Exist(ctx, a.Collection, objectId)
}
return mgo.Exist(ctx, a.Collection, id)
}
func (a *Repository[T, K]) Create(ctx context.Context, model *T) (int64, error) {
if a.Mapper != nil {
a.Mapper.ModelToDb(model)
}
vo := reflect.Indirect(reflect.ValueOf(model))
if a.versionIndex >= 0 {
setVersion(vo, a.versionIndex)
}
rid, res, err := mgo.InsertOne(ctx, a.Collection, model)
if err != nil {
return res, err
}
if rid != nil {
idF := vo.Field(a.idIndex)
switch idF.Kind() {
case reflect.String:
idF.Set(reflect.ValueOf(rid.Hex()))
case reflect.Ptr:
if idF.Type().String() == "*string" {
s := rid.Hex()
idF.Set(reflect.ValueOf(&s))
} else {
idF.Set(reflect.ValueOf(rid))
}
case reflect.Array:
idF.Set(reflect.ValueOf(*rid))
default:
}
}
return res, err
}
func (a *Repository[T, K]) Update(ctx context.Context, model *T) (int64, error) {
if a.Mapper != nil {
a.Mapper.ModelToDb(model)
}
vo := reflect.Indirect(reflect.ValueOf(model))
id := vo.Field(a.idIndex).Interface()
if a.versionIndex >= 0 {
currentVersion := vo.Field(a.versionIndex).Interface()
increaseVersion(vo, a.versionIndex, currentVersion)
var filter = bson.D{}
filter = append(filter, bson.E{Key: "_id", Value: id})
filter = append(filter, bson.E{Key: a.versionBson, Value: currentVersion})
res, err := mgo.UpdateOneByFilter(ctx, a.Collection, filter, model)
if err != nil {
return res, err
}
if res <= 0 {
ok, _ := mgo.Exist(ctx, a.Collection, id)
if ok {
return -1, nil
} else {
return 0, nil
}
}
}
return mgo.UpdateOne(ctx, a.Collection, id, model)
}
func (a *Repository[T, K]) Patch(ctx context.Context, model map[string]interface{}) (int64, error) {
if a.Mapper != nil {
model = a.Mapper.MapToDb(model)
}
id, exist := model[a.idJson]
if !exist {
return -1, fmt.Errorf("%s must be in map[string]interface{} for patch", a.idJson)
}
if a.versionIndex >= 0 {
currentVersion, vok := model[a.versionJson]
if !vok {
return -1, fmt.Errorf("%s must be in model for patch", a.versionJson)
}
ok := increaseMapVersion(model, a.versionJson, currentVersion)
if !ok {
return -1, errors.New("do not support this version type")
}
var filter = bson.D{}
filter = append(filter, bson.E{Key: "_id", Value: id})
filter = append(filter, bson.E{Key: a.versionBson, Value: currentVersion})
b := mgo.MapToBson(model, a.Map)
return mgo.PatchOneByFilter(ctx, a.Collection, filter, b)
}
b := mgo.MapToBson(model, a.Map)
return mgo.PatchOne(ctx, a.Collection, id, b)
}
func (a *Repository[T, K]) Save(ctx context.Context, model *T) (int64, error) {
if a.Mapper != nil {
a.Mapper.ModelToDb(model)
}
vo := reflect.Indirect(reflect.ValueOf(model))
id := vo.Field(a.idIndex).Interface()
sid, ok := id.(string)
if id == nil || ok && len(sid) == 0 {
if a.versionIndex >= 0 {
setVersion(vo, a.versionIndex)
}
rid, res, err := mgo.InsertOne(ctx, a.Collection, model)
if err != nil {
return res, err
}
if rid != nil {
idF := vo.Field(a.idIndex)
switch idF.Kind() {
case reflect.String:
idF.Set(reflect.ValueOf(rid.Hex()))
case reflect.Ptr:
if idF.Type().String() == "*string" {
s := rid.Hex()
idF.Set(reflect.ValueOf(&s))
} else {
idF.Set(reflect.ValueOf(rid))
}
case reflect.Array:
idF.Set(reflect.ValueOf(*rid))
default:
}
}
return res, err
} else {
if a.versionIndex >= 0 {
currentVersion := vo.Field(a.versionIndex).Interface()
increaseVersion(vo, a.versionIndex, currentVersion)
var filter = bson.D{}
filter = append(filter, bson.E{Key: "_id", Value: id})
filter = append(filter, bson.E{Key: a.versionBson, Value: currentVersion})
return mgo.UpsertOneByFilter(ctx, a.Collection, filter, model)
} else {
return mgo.UpsertOne(ctx, a.Collection, id, model)
}
}
}
func (a *Repository[T, K]) Delete(ctx context.Context, id K) (int64, error) {
if a.ObjectId {
objId := fmt.Sprintf("%v", id)
objectId, err := primitive.ObjectIDFromHex(objId)
if err != nil {
return 0, err
}
return mgo.DeleteOne(ctx, a.Collection, objectId)
}
return mgo.DeleteOne(ctx, a.Collection, id)
}
func setVersion(vo reflect.Value, versionIndex int) bool {
versionType := vo.Field(versionIndex).Type().String()
switch versionType {
case "int32":
vo.Field(versionIndex).Set(reflect.ValueOf(int32(1)))
return true
case "int":
vo.Field(versionIndex).Set(reflect.ValueOf(1))
return true
case "int64":
vo.Field(versionIndex).Set(reflect.ValueOf(int64(1)))
return true
default:
return false
}
}
func increaseVersion(vo reflect.Value, versionIndex int, curVer interface{}) bool {
versionType := vo.Field(versionIndex).Type().String()
switch versionType {
case "int32":
nextVer := curVer.(int32) + 1
vo.Field(versionIndex).Set(reflect.ValueOf(nextVer))
return true
case "int":
nextVer := curVer.(int) + 1
vo.Field(versionIndex).Set(reflect.ValueOf(nextVer))
return true
case "int64":
nextVer := curVer.(int64) + 1
vo.Field(versionIndex).Set(reflect.ValueOf(nextVer))
return true
default:
return false
}
}
func increaseMapVersion(model map[string]interface{}, name string, currentVersion interface{}) bool {
if versionI32, ok := currentVersion.(int32); ok {
model[name] = versionI32 + 1
return true
} else if versionI, ok := currentVersion.(int); ok {
model[name] = versionI + 1
return true
} else if versionI64, ok := currentVersion.(int64); ok {
model[name] = versionI64 + 1
return true
} else {
return false
}
}