-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsession.go
314 lines (253 loc) · 7.92 KB
/
session.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
package daos
import (
"crypto/tls"
"crypto/x509"
"net"
"reflect"
"time"
"github.com/byteball/odex-backend/app"
"github.com/byteball/odex-backend/utils"
"github.com/globalsign/mgo"
"github.com/globalsign/mgo/bson"
)
// Database struct contains the pointer to mgo.session
// It is a wrapper over mgo to help utilize mgo connection pool
type Database struct {
Session *mgo.Session
}
// Global instance of Database struct for singleton use
var db *Database
var logger = utils.Logger
var defaultTimeout = 10 * time.Second
func InitSession(session *mgo.Session) (*mgo.Session, error) {
if db == nil {
if session == nil {
if app.Config.EnableTLS {
session = NewTLSSession()
} else {
session = NewSession()
}
}
db = &Database{session}
}
return db.Session, nil
}
func InitTLSSession() (*mgo.Session, error) {
session := NewTLSSession()
db = &Database{session}
return db.Session, nil
}
func (d *Database) InitDatabase(session *mgo.Session) {
d.Session = session
}
func NewSession() *mgo.Session {
dialInfo := &mgo.DialInfo{
Addrs: []string{app.Config.MongoURL},
Timeout: 15 * time.Second,
}
session, err := mgo.DialWithInfo(dialInfo)
if err != nil {
panic(err)
}
return session
}
func NewTLSSession() *mgo.Session {
tlsConfig := &tls.Config{}
tlsConfig.InsecureSkipVerify = true
dialInfo := &mgo.DialInfo{
Addrs: []string{
app.Config.MongoDBShardURL1,
app.Config.MongoDBShardURL2,
app.Config.MongoDBShardURL3,
},
Timeout: 20 * time.Second,
ReadTimeout: 20 * time.Second,
WriteTimeout: 20 * time.Second,
PoolTimeout: 20 * time.Second,
MaxIdleTimeMS: 30000,
Database: "admin",
Username: app.Config.MongoDBUsername,
Password: app.Config.MongoDBPassword,
}
dialInfo.DialServer = func(addr *mgo.ServerAddr) (net.Conn, error) {
conn, err := tls.Dial("tcp", addr.String(), tlsConfig)
return conn, err
}
session, err := mgo.DialWithInfo(dialInfo)
if err != nil {
panic(err)
}
session.SetMode(mgo.Monotonic, true)
return session
}
func NewSecureTLSSession() *mgo.Session {
tlsConfig := &tls.Config{}
tlsConfig.InsecureSkipVerify = true
roots := x509.NewCertPool()
//doesn't seem like it's the right file to be used
// ca, err := ioutil.ReadFile(app.Config.TLSCACertFile)
// if err != nil {
// panic(err)
// }
// roots.AppendCertsFromPEM(ca)
tlsConfig.RootCAs = roots
dialInfo := &mgo.DialInfo{
Addrs: []string{app.Config.MongoURL},
Username: app.Config.MongoDBUsername,
Password: app.Config.MongoDBPassword,
Database: "odex",
}
dialInfo.DialServer = func(addr *mgo.ServerAddr) (net.Conn, error) {
conn, err := tls.Dial("tcp", addr.String(), tlsConfig)
if err != nil {
logger.Error(err)
}
return conn, err
}
session, err := mgo.DialWithInfo(dialInfo)
if err != nil {
panic(err)
}
session.SetMode(mgo.Monotonic, true)
return session
}
// Create is a wrapper for mgo.Insert function.
// It creates a copy of session initialized, sends query over this session
// and returns the session to connection pool
func (d *Database) Create(dbName, collection string, data ...interface{}) (err error) {
sc := d.Session.Copy()
defer sc.Close()
err = sc.DB(dbName).C(collection).Insert(data...)
return
}
// GetByID is a wrapper for mgo.FindId function.
// It creates a copy of session initialized, sends query over this session
// and returns the session to connection pool
func (d *Database) GetByID(dbName, collection string, id bson.ObjectId, response interface{}) (err error) {
sc := d.Session.Copy()
defer sc.Close()
err = sc.DB(dbName).C(collection).FindId(id).SetMaxTime(defaultTimeout).One(response)
return
}
// Get is a wrapper for mgo.Find function.
// It creates a copy of session initialized, sends query over this session
// and returns the session to connection pool
func (d *Database) Get(dbName, collection string, query interface{}, offset, limit int, response interface{}) (err error) {
sc := d.Session.Copy()
defer sc.Close()
err = sc.DB(dbName).C(collection).Find(query).SetMaxTime(defaultTimeout).Skip(offset).Limit(limit).All(response)
return
}
func (d *Database) Query(dbName, collection string, query interface{}, selector interface{}, offset, limit int, response interface{}) (err error) {
sc := d.Session.Copy()
defer sc.Close()
err = sc.DB(dbName).C(collection).Find(query).SetMaxTime(defaultTimeout).Skip(offset).Limit(limit).Select(selector).All(response)
return
}
// GetAndSort is a wrapper for mgo.Find function with SORT function in pipeline.
// It creates a copy of session initialized, sends query over this session
// and returns the session to connection pool
func (d *Database) GetAndSort(dbName, collection string, query interface{}, sort []string, offset, limit int, response interface{}) (err error) {
sc := d.Session.Copy()
defer sc.Close()
err = sc.DB(dbName).C(collection).Find(query).SetMaxTime(defaultTimeout).Sort(sort...).Skip(offset).Limit(limit).All(response)
return
}
func (d *Database) Count(dbName, collection string, query interface{}) (n int, err error) {
sc := d.Session.Copy()
defer sc.Close()
n, err = sc.DB(dbName).C(collection).Find(query).Count()
return
}
// Update is a wrapper for mgo.Update function.
// It creates a copy of session initialized, sends query over this session
// and returns the session to connection pool
func (d *Database) Update(dbName, collection string, query interface{}, update interface{}) error {
sc := d.Session.Copy()
defer sc.Close()
err := sc.DB(dbName).C(collection).Update(query, update)
if err != nil {
logger.Error(err)
return err
}
return nil
}
func (d *Database) UpdateAll(dbName, collection string, query interface{}, update interface{}) error {
sc := d.Session.Copy()
defer sc.Close()
_, err := sc.DB(dbName).C(collection).UpdateAll(query, update)
if err != nil {
logger.Error(err)
return err
}
return nil
}
func (d *Database) Upsert(dbName, collection string, query interface{}, update interface{}) error {
sc := d.Session.Copy()
defer sc.Close()
_, err := sc.DB(dbName).C(collection).Upsert(query, update)
if err != nil {
logger.Error(err)
return err
}
return nil
}
func (d *Database) FindAndModify(dbName, collection string, query interface{}, change mgo.Change, response interface{}) error {
sc := d.Session.Copy()
defer sc.Close()
_, err := sc.DB(dbName).C(collection).Find(query).SetMaxTime(defaultTimeout).Apply(change, response)
if err != nil {
logger.Error(err)
return err
}
return nil
}
// Aggregate is a wrapper for mgo.Pipe function.
// It is used to make mongo aggregate pipeline queries
// It creates a copy of session initialized, sends query over this session
// and returns the session to connection pool
func (d *Database) Aggregate(dbName, collection string, query []bson.M, response interface{}) error {
sc := d.Session.Copy()
defer sc.Close()
// collation := mgo.Collation{Locale: "en", NumericOrdering: true}
result := reflect.ValueOf(response).Interface()
err := sc.DB(dbName).C(collection).Pipe(query). /*.Collation(&collation)*/ All(result)
if err != nil {
logger.Error(err)
return err
}
return nil
}
// Remove removes one document matching a certain query
func (d *Database) Remove(dbName, collection string, query []bson.M) error {
sc := d.Session.Copy()
defer sc.Close()
err := sc.DB(dbName).C(collection).Remove(query)
if err != nil {
logger.Error(err)
return err
}
return nil
}
// RemoveAll removes all the documents from a collection matching a certain query
func (d *Database) RemoveAll(dbName, collection string, query interface{}) error {
sc := d.Session.Copy()
defer sc.Close()
_, err := sc.DB(dbName).C(collection).RemoveAll(query)
if err != nil {
logger.Error(err)
return err
}
return nil
}
// DropCollection drops all the documents in a collection
func (d *Database) DropCollection(dbName, collection string) error {
sc := d.Session.Copy()
defer sc.Close()
err := sc.DB(dbName).C(collection).DropCollection()
if err != nil {
logger.Error(err)
return err
}
return nil
}