-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.go
94 lines (78 loc) · 3.04 KB
/
db.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
package queue
import (
"context"
"errors"
"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 DbInterface interface {
InsertOne(document interface{}) (primitive.ObjectID, error)
FindOneAndUpdate(filter interface{}, update interface{}, opts ...*options.FindOneAndUpdateOptions) *mongo.SingleResult
UpdateOne(filter interface{}, update interface{}) error
UpdateMany(filter interface{}, update interface{}) error
Watch(pipeline interface{}) (ChangeStreamInterface, error)
CreateIndexes(index []mongo.IndexModel) error
Context() context.Context
}
type ChangeStreamInterface interface {
Next(ctx context.Context) bool
Decode(v interface{}) error
Close(ctx context.Context) error
}
type CollectionInterface interface {
InsertOne(ctx context.Context, document interface{}, opts ...*options.InsertOneOptions) (*mongo.InsertOneResult, error)
FindOneAndUpdate(ctx context.Context, filter interface{}, update interface{}, opts ...*options.FindOneAndUpdateOptions) *mongo.SingleResult
UpdateOne(ctx context.Context, filter interface{}, update interface{}, opts ...*options.UpdateOptions) (*mongo.UpdateResult, error)
UpdateMany(ctx context.Context, filter interface{}, update interface{}, opts ...*options.UpdateOptions) (*mongo.UpdateResult, error)
Watch(ctx context.Context, pipeline interface{}, opts ...*options.ChangeStreamOptions) (*mongo.ChangeStream, error)
Indexes() mongo.IndexView
}
type StdDb struct {
context context.Context
collection CollectionInterface
}
func NewStdDb(collection CollectionInterface, ctx context.Context) *StdDb {
if ctx == nil {
ctx = context.Background()
}
db := StdDb{
context: ctx,
collection: collection,
}
return &db
}
func (d *StdDb) InsertOne(document interface{}) (primitive.ObjectID, error) {
res, err := d.collection.InsertOne(d.context, document)
if err != nil {
return primitive.NilObjectID, err
}
return res.InsertedID.(primitive.ObjectID), nil
}
func (d *StdDb) FindOneAndUpdate(filter interface{}, update interface{}, opts ...*options.FindOneAndUpdateOptions) *mongo.SingleResult {
opts = append(opts, options.FindOneAndUpdate().SetReturnDocument(options.After))
res := d.collection.FindOneAndUpdate(d.context, filter, update, opts...)
if res == nil {
return mongo.NewSingleResultFromDocument(bson.M{}, errors.New("no result returned"), nil)
}
return res
}
func (d *StdDb) UpdateOne(filter interface{}, update interface{}) error {
_, err := d.collection.UpdateOne(d.context, filter, update)
return err
}
func (d *StdDb) UpdateMany(filter interface{}, update interface{}) error {
_, err := d.collection.UpdateMany(d.context, filter, update)
return err
}
func (d *StdDb) Watch(pipeline interface{}) (ChangeStreamInterface, error) {
return d.collection.Watch(d.context, pipeline)
}
func (d *StdDb) CreateIndexes(indexes []mongo.IndexModel) error {
_, err := d.collection.Indexes().CreateMany(d.context, indexes)
return err
}
func (d *StdDb) Context() context.Context {
return d.context
}