-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.go
78 lines (70 loc) · 2.02 KB
/
base.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
package gomongo
import (
"context"
"errors"
"fmt"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/bson/primitive"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)
type BaseMongoRepository struct {
database *mongo.Database
collectionName string
}
func NewBaseMongoRepository(database *mongo.Database, collectionName string) *BaseMongoRepository {
return &BaseMongoRepository{database: database, collectionName: collectionName}
}
func (m *BaseMongoRepository) Collection() *mongo.Collection {
return m.database.Collection(m.collectionName)
}
func (m *BaseMongoRepository) UpdateOne(ctx context.Context, q bson.M, update bson.M) error {
result, err := m.Collection().UpdateOne(ctx, q, update)
if err != nil {
return err
}
if result.ModifiedCount != 1 {
return errors.New(fmt.Sprintf("Incorrect modified count should be 1 got %d", result.ModifiedCount))
}
return err
}
func (m *BaseMongoRepository) DeleteOne(ctx context.Context, q bson.M) error {
result, err := m.Collection().DeleteOne(ctx, q)
if err != nil {
return err
}
if result.DeletedCount != 1 {
return errors.New(fmt.Sprintf("Incorrect deleted count should be 1 got %d", result.DeletedCount))
}
return err
}
func (m *BaseMongoRepository) InsertOne(ctx context.Context, newValue interface{}) (*primitive.ObjectID, error) {
result, err := m.Collection().InsertOne(ctx, newValue)
if err != nil {
return nil, err
}
objID := result.InsertedID.(primitive.ObjectID)
return &objID, nil
}
func (m *BaseMongoRepository) GetList(ctx context.Context, result interface{}, q bson.M, skip, limit *int, sort *bson.D) (int, error) {
opts := options.FindOptions{
Skip: Int64Ptr(skip),
Limit: Int64Ptr(limit),
}
if sort != nil {
opts.Sort = *sort
}
cursor, err := m.Collection().Find(ctx, q, &opts)
if err != nil {
return -1, err
}
err = cursor.All(ctx, result)
if err != nil {
return -1, err
}
count, err := m.Collection().CountDocuments(ctx, q)
if err != nil {
return -1, err
}
return int(count), nil
}