-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepostory.go
532 lines (514 loc) · 13.7 KB
/
repostory.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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
package mongoutils
import (
"context"
"errors"
"fmt"
"time"
"go.mongodb.org/mongo-driver/bson/primitive"
"go.mongodb.org/mongo-driver/mongo"
)
// Find find records
//
// @param ctx operation context
// @param filter (ignored on nil)
// @param sorts (ignored on nil)
// @param skip (ignored on 0)
// @param limit (ignored on 0)
// @opts operation option
func FindCtx[T any](
ctx context.Context,
filter any,
sorts any,
skip int64,
limit int64,
opts ...MongoOption,
) ([]T, error) {
res := make([]T, 0)
model := modelSafe(new(T))
var pipeline MongoPipeline
opt := optionOf(opts...)
if v, err := callMethod(model, opt.Pipeline, opt.Params...); err != nil {
return res, err
} else {
pipeline = parsePipeline(v)
}
if pipeline == nil {
return res, errors.New(opt.Pipeline + " method should return MongoPipeline!")
}
pipe := pipeline.
Match(filter).
Sort(sorts).
Skip(skip).
Limit(limit).
Build()
if opt.DebugPipe {
fmt.Println("=============== FIND PIPE ===============")
prettyLog(pipe)
fmt.Println("=========================================")
}
if opt.DebugResult {
fmt.Println("============== FIND DECODE ==============")
if cur, err := model.Collection(opt.Database).Aggregate(ctx, pipe, AggregateOption()); err != nil {
fmt.Println("ERROR: " + err.Error())
} else {
defer cur.Close(ctx)
var _res []map[string]any
cur.All(ctx, &_res)
prettyLog(_res)
}
fmt.Println("=========================================")
}
if cur, err := model.Collection(opt.Database).Aggregate(ctx, pipe, AggregateOption()); err != nil {
return res, err
} else {
defer cur.Close(ctx)
if err := cur.All(ctx, &res); err != nil {
return res, err
}
}
return res, nil
}
func Find[T any](filter any, sorts any, skip int64, limit int64, opts ...MongoOption) ([]T, error) {
ctx, cancel := MongoOperationCtx()
defer cancel()
return FindCtx[T](ctx, filter, sorts, skip, limit, opts...)
}
// FindRaw find records from pipeline
// option pipeline not effected
//
// @param ctx operation context
// @param pipeline aggregation pipeline
// @opts operation option
func FindRawCtx[T any](
ctx context.Context,
pipeline MongoPipeline,
opts ...MongoOption,
) ([]T, error) {
res := make([]T, 0)
model := modelSafe(new(T))
option := optionOf(opts...)
if option.DebugPipe {
fmt.Println("============= FIND RAW PIPE =============")
prettyLog(pipeline.Build())
fmt.Println("=========================================")
}
if option.DebugResult {
fmt.Println("============ FIND RAW DECODE ============")
if cur, err := model.Collection(option.Database).Aggregate(ctx, pipeline.Build(), AggregateOption()); err != nil {
fmt.Println("ERROR: " + err.Error())
} else {
defer cur.Close(ctx)
var _res []map[string]any
cur.All(ctx, &_res)
prettyLog(_res)
}
fmt.Println("=========================================")
}
if cur, err := model.Collection(option.Database).Aggregate(ctx, pipeline.Build(), AggregateOption()); err != nil {
return res, err
} else {
defer cur.Close(ctx)
if err := cur.All(ctx, &res); err != nil {
return res, err
}
}
return res, nil
}
func FindRaw[T any](pipeline MongoPipeline, opts ...MongoOption) ([]T, error) {
ctx, cancel := MongoOperationCtx()
defer cancel()
return FindRawCtx[T](ctx, pipeline, opts...)
}
// FindOne find one record
//
// @param ctx operation context
// @param filter (ignored on nil)
// @param sorts (ignored on nil)
// @opts operation option
func FindOneCtx[T any](
ctx context.Context,
filter any,
sorts any,
opts ...MongoOption,
) (*T, error) {
res := new(T)
model := modelSafe(new(T))
var pipeline MongoPipeline
opt := optionOf(opts...)
if v, err := callMethod(model, opt.Pipeline, opt.Params...); err != nil {
return res, err
} else {
pipeline = parsePipeline(v)
}
if pipeline == nil {
return res, errors.New(opt.Pipeline + " method should return MongoPipeline!")
}
pipe := pipeline.
Match(filter).
Sort(sorts).
Limit(1).
Build()
if opt.DebugPipe {
fmt.Println("============= FIND ONE PIPE =============")
prettyLog(pipe)
fmt.Println("=========================================")
}
if cur, err := model.Collection(opt.Database).Aggregate(ctx, pipe, AggregateOption()); err != nil {
return res, err
} else {
defer cur.Close(ctx)
for cur.Next(ctx) {
if opt.DebugResult {
var _res map[string]any
cur.Decode(&_res)
fmt.Println("============ FIND ONE DECODE ============")
prettyLog(_res)
fmt.Println("=========================================")
}
if err := cur.Decode(res); err != nil {
return res, err
} else {
return res, nil
}
}
}
return nil, nil
}
func FindOne[T any](filter any, sorts any, opts ...MongoOption) (*T, error) {
ctx, cancel := MongoOperationCtx()
defer cancel()
return FindOneCtx[T](ctx, filter, sorts, opts...)
}
// Insert insert new record
// this function use FindOne to find old record
//
// @param ctx operation context
// @param v model
// @opts operation option
func InsertCtx[T any](
ctx context.Context,
v *T,
opts ...MongoOption,
) (*mongo.InsertOneResult, error) {
model := modelSafe(v)
opt := optionOf(opts...)
model.Cleanup()
model.FillCreatedAt()
FillBackupFields(v)
if !opt.IgnoreHooks {
model.OnInsert(ctx, opts...)
}
if res, err := model.Collection(opt.Database).InsertOne(ctx, model); err != nil {
return res, err
} else {
if opt.DebugResult {
fmt.Println("============= INSERT RESULT =============")
prettyLog(res)
fmt.Println("=========================================")
}
if id, ok := res.InsertedID.(primitive.ObjectID); !ok {
return res, errors.New("no ObjectId returned")
} else {
model.SetID(id)
if !opt.IgnoreHooks {
model.OnInserted(ctx, opts...)
}
return res, nil
}
}
}
func Insert[T any](v *T, opts ...MongoOption) (*mongo.InsertOneResult, error) {
ctx, cancel := MongoOperationCtx()
defer cancel()
return InsertCtx(ctx, v, opts...)
}
// Update update one record
//
// @param ctx operation context
// @param v model
// @param isSilent disable update meta (updated_at)
// @opts operation option
func UpdateCtx[T any](
ctx context.Context,
v *T,
isSilent bool,
opts ...MongoOption,
) (*mongo.UpdateResult, error) {
model := modelSafe(v)
opt := optionOf(opts...)
old, err := FindOneCtx[T](ctx, primitive.M{"_id": model.GetID()}, nil, opts...)
if err != nil {
return nil, err
}
// Handle model changes
model.Cleanup()
isChanged := true
oldCS, _ := modelChecksum(old)
if cs, backup := modelChecksum(v); cs != "" {
if cs != oldCS {
backup.SetChecksum(cs)
backup.UnMarkBackup()
}
isChanged = cs != oldCS
}
if !isSilent && isChanged {
model.FillUpdatedAt()
}
if !opt.IgnoreHooks {
model.OnUpdate(ctx, opts...)
}
if res, err := model.Collection(opt.Database).UpdateByID(ctx, model.GetID(), Set(model)); err != nil {
return nil, err
} else {
if opt.DebugResult {
fmt.Println("============= UPDATE RESULT =============")
prettyLog(res)
fmt.Println("=========================================")
}
if res.ModifiedCount+res.UpsertedCount > 0 && !opt.IgnoreHooks {
model.OnUpdated(old, ctx, opts...)
}
return res, nil
}
}
func Update[T any](v *T, silent bool, opts ...MongoOption) (*mongo.UpdateResult, error) {
ctx, cancel := MongoOperationCtx()
defer cancel()
return UpdateCtx(ctx, v, silent, opts...)
}
// Delete delete record
//
// @param ctx operation context
// @param v model
// @opts operation option
func DeleteCtx[T any](
ctx context.Context,
v *T,
opts ...MongoOption,
) (*mongo.DeleteResult, error) {
model := modelSafe(v)
opt := optionOf(opts...)
if !opt.IgnoreHooks {
model.OnDelete(ctx, opts...)
}
if res, err := model.Collection(opt.Database).DeleteOne(ctx, primitive.M{"_id": model.GetID()}); err != nil {
return nil, err
} else {
if opt.DebugResult {
fmt.Println("============= DELETE RESULT =============")
prettyLog(res)
fmt.Println("=========================================")
}
if !opt.IgnoreHooks {
model.OnDeleted(ctx, opts...)
}
return res, nil
}
}
func Delete[T any](v *T, opts ...MongoOption) (*mongo.DeleteResult, error) {
ctx, cancel := MongoOperationCtx()
defer cancel()
return DeleteCtx(ctx, v, opts...)
}
// Count get records count
//
// @param ctx operation context
// @param filter (ignored on nil)
// @opts operation option
func CountCtx[T any](
ctx context.Context,
filter any,
opts ...MongoOption,
) (int64, error) {
model := typeModelSafe[T]()
var pipeline MongoPipeline
opt := optionOf(opts...)
if v, err := callMethod(model, opt.Pipeline, opt.Params...); err != nil {
return 0, err
} else {
pipeline = parsePipeline(v)
}
if pipeline == nil {
return 0, errors.New(opt.Pipeline + " method should return MongoPipeline!")
}
pipe := pipeline.
Match(filter).
Add(func(d MongoDoc) MongoDoc {
return d.Add("$count", "count")
}).
Build()
if opt.DebugPipe {
fmt.Println("=============== COUNT PIPE ===============")
prettyLog(pipe)
fmt.Println("==========================================")
}
if cur, err := model.Collection(opt.Database).Aggregate(ctx, pipe, AggregateOption()); err != nil {
return 0, err
} else {
defer cur.Close(ctx)
for cur.Next(ctx) {
if opt.DebugResult {
var _res map[string]any
cur.Decode(&_res)
fmt.Println("=============== COUNT DECODE ===============")
prettyLog(_res)
fmt.Println("============================================")
}
rec := new(countResult)
if err := cur.Decode(rec); err != nil {
return 0, err
} else {
return rec.Count, nil
}
}
}
return 0, nil
}
func Count[T any](filter any, opts ...MongoOption) (int64, error) {
ctx, cancel := MongoOperationCtx()
defer cancel()
return CountCtx[T](ctx, filter, opts...)
}
// CountRaw get records count
// option Pipeline not effected
//
// @param ctx operation context
// @param filter (ignored on nil)
// @opts operation option
func CountRawCtx[T any](
ctx context.Context,
pipeline MongoPipeline,
opts ...MongoOption,
) (int64, error) {
model := typeModelSafe[T]()
option := optionOf(opts...)
pipeline.Add(func(d MongoDoc) MongoDoc { return d.Add("$count", "count") })
if option.DebugPipe {
fmt.Println("=============== COUNT PIPE ===============")
prettyLog(pipeline.Build())
fmt.Println("==========================================")
}
if cur, err := model.Collection(option.Database).Aggregate(ctx, pipeline.Build(), AggregateOption()); err != nil {
return 0, err
} else {
defer cur.Close(ctx)
for cur.Next(ctx) {
if option.DebugResult {
var _res map[string]any
cur.Decode(&_res)
fmt.Println("=============== COUNT DECODE ===============")
prettyLog(_res)
fmt.Println("============================================")
}
rec := new(countResult)
if err := cur.Decode(rec); err != nil {
return 0, err
} else {
return rec.Count, nil
}
}
}
return 0, nil
}
func CountRaw[T any](filter any, opts ...MongoOption) (int64, error) {
ctx, cancel := MongoOperationCtx()
defer cancel()
return CountCtx[T](ctx, filter, opts...)
}
// BatchUpdate update multiple records
//
// @param ctx operation context
// @param condition update condition
// @param updates update value
// @opts operation option
func BatchUpdateCtx[T any](
ctx context.Context,
condition any,
updates any,
opts ...MongoOption,
) (*mongo.UpdateResult, error) {
model := typeModelSafe[T]()
opt := optionOf(opts...)
if res, err := model.Collection(opt.Database).UpdateMany(ctx, condition, updates); err != nil {
return nil, err
} else {
if opt.DebugResult {
fmt.Println("========== BATCH UPDATE RESULT ==========")
prettyLog(res)
fmt.Println("=========================================")
}
return res, nil
}
}
func BatchUpdate[T any](condition any, updates any, opts ...MongoOption) (*mongo.UpdateResult, error) {
ctx, cancel := MongoOperationCtx()
defer cancel()
return BatchUpdateCtx[T](ctx, condition, updates, opts...)
}
// Patch partial update multiple records using $set
//
// @param ctx operation context
// @param condition update condition
// @param data update value
// @param silent disable update meta (updated_at)
// @opts operation option
func PatchCtx[T any](
ctx context.Context,
condition any,
data primitive.M,
silent bool,
opts ...MongoOption,
) (*mongo.UpdateResult, error) {
model := typeModelSafe[T]()
opt := optionOf(opts...)
if !silent {
data["updated_at"] = time.Now().UTC()
}
if res, err := model.Collection(opt.Database).UpdateMany(ctx, condition, Set(data)); err != nil {
return nil, err
} else {
if opt.DebugResult {
fmt.Println("============== PATCH RESULT ==============")
prettyLog(res)
fmt.Println("==========================================")
}
return res, nil
}
}
func Patch[T any](condition any, data primitive.M, silent bool, opts ...MongoOption) (*mongo.UpdateResult, error) {
ctx, cancel := MongoOperationCtx()
defer cancel()
return PatchCtx[T](ctx, condition, data, silent, opts...)
}
// Increment increment numeric data
// pass negative value for decrement
// increment run on silent mode
//
// @param ctx operation context
// @param condition update condition
// @param data update value
// @opts operation option
func IncrementCtx[T any](
ctx context.Context,
condition any,
data any,
opts ...MongoOption,
) (*mongo.UpdateResult, error) {
model := typeModelSafe[T]()
opt := optionOf(opts...)
if res, err := model.Collection(opt.Database).UpdateMany(ctx, condition, primitive.M{"$inc": data}); err != nil {
return nil, err
} else {
if opt.DebugResult {
fmt.Println("============ INCREMENT RESULT ============")
prettyLog(res)
fmt.Println("==========================================")
}
return res, nil
}
}
func Increment[T any](condition any, data any, opts ...MongoOption) (*mongo.UpdateResult, error) {
ctx, cancel := MongoOperationCtx()
defer cancel()
return IncrementCtx[T](ctx, condition, data, opts...)
}