-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmongo.go
157 lines (116 loc) · 3.99 KB
/
mongo.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
package artifact
import (
"context"
"fmt"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
"go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo"
"log"
"time"
)
var Mongo *MongoDB
type MongoDB struct {
Client *mongo.Client
Database *mongo.Database
Ctx context.Context
}
type MongoCollection struct {
*mongo.Collection
Ctx context.Context
CancelFunc context.CancelFunc
}
func (mongoCollection MongoCollection) WithContext() MongoCollection {
mongoCollection.Ctx, mongoCollection.CancelFunc = context.WithTimeout(context.Background(), 10*time.Second)
return mongoCollection
}
func NewNoSqlDB() *MongoDB {
client, err := mongo.NewClient(options.Client().ApplyURI(getMongoUri()))
if err != nil {
log.Fatal(err)
}
ctx := context.Background()
err = client.Connect(ctx)
if err != nil {
log.Fatal(err)
}
//ping the database
err = client.Ping(ctx, nil)
if err != nil {
log.Fatal(err)
}
fmt.Println("[C-Log] Connected to MongoDB")
database := client.Database(Config.GetString(Config.NoSqlConfig + ".Database"))
return &MongoDB{Client: client, Database: database, Ctx: ctx}
}
func NewNoSqlDBWithOtelMonitoring() *MongoDB {
opts := options.Client().
ApplyURI(getMongoUri()).
SetMonitor(otelmongo.NewMonitor(
otelmongo.WithCommandAttributeDisabled(false),
))
ctx := context.Background()
client, err := mongo.Connect(ctx, opts)
if err != nil {
log.Fatal(err)
}
//ping the database
err = client.Ping(ctx, nil)
if err != nil {
log.Fatal(err)
}
fmt.Println("[C-Log] Connected to MongoDB")
database := client.Database(Config.GetString(Config.NoSqlConfig + ".Database"))
return &MongoDB{Client: client, Database: database, Ctx: ctx}
}
func (mongodb *MongoDB) Collection(name string) MongoCollection {
return MongoCollection{Collection: mongodb.Database.Collection(name)}
}
func (collection MongoCollection) Find(filter interface{},
opts ...*options.FindOptions) (*mongo.Cursor, error, context.Context) {
collection = collection.WithContext()
defer collection.CancelFunc()
cursor, err := collection.Collection.Find(collection.Ctx, filter, opts...)
return cursor, err, collection.Ctx
}
func (collection MongoCollection) InsertOne(document interface{},
opts ...*options.InsertOneOptions) (*mongo.InsertOneResult, error) {
collection = collection.WithContext()
defer collection.CancelFunc()
return collection.Collection.InsertOne(collection.Ctx, document, opts...)
}
func (collection MongoCollection) FindOneAndUpdate(filter interface{},
update interface{}, opts ...*options.FindOneAndUpdateOptions) *mongo.SingleResult {
collection = collection.WithContext()
defer collection.CancelFunc()
return collection.Collection.FindOneAndUpdate(collection.Ctx, filter, update, opts...)
}
func (collection MongoCollection) FindOne(filter interface{},
opts ...*options.FindOneOptions) *mongo.SingleResult {
collection = collection.WithContext()
defer collection.CancelFunc()
result := collection.Collection.FindOne(collection.Ctx, filter, opts...)
return result
}
func (collection MongoCollection) FindOneAndDelete(filter interface{},
opts ...*options.FindOneAndDeleteOptions) *mongo.SingleResult {
collection = collection.WithContext()
defer collection.CancelFunc()
return collection.Collection.FindOneAndDelete(collection.Ctx, filter, opts...)
}
func getMongoUri() string {
port := Config.GetString(Config.NoSqlConfig + ".Port")
var noSqlProtocol, host string
if port != "" {
noSqlProtocol = "mongodb://"
host = Config.GetString(Config.NoSqlConfig+".Host") + ":" + port
} else {
noSqlProtocol = "mongodb+srv://"
host = Config.GetString(Config.NoSqlConfig + ".Host")
}
password := Config.GetString(Config.NoSqlConfig + ".Password")
noSqlUserInfo := ""
if password != "" {
noSqlUserInfo = Config.GetString(Config.NoSqlConfig+".Username") + ":" + password + "@"
}
return noSqlProtocol + noSqlUserInfo + host + "/" + Config.GetString(Config.NoSqlConfig+".Database") + "?retryWrites=true&w=majority"
}