-
Notifications
You must be signed in to change notification settings - Fork 1
/
mongo.go
307 lines (268 loc) · 6.25 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
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
// mongodb related functions
package main
import (
"errors"
"fmt"
"regexp"
"strconv"
ldapMsg "github.com/lor00x/goldap/message"
"gopkg.in/mgo.v2"
"gopkg.in/mgo.v2/bson"
)
type mongoCtx struct {
session *mgo.Session
dbname string
}
var (
_mongo *mongoCtx
mgoIndexes = map[string]([]mgo.Index){
mgoUserColl: []mgo.Index{
mgo.Index{
Key: []string{"username"},
Unique: true,
},
mgo.Index{
Key: []string{"email"},
Unique: true,
},
mgo.Index{
Key: []string{"tags"},
},
},
mgoPosixGroupColl: []mgo.Index{
mgo.Index{
Key: []string{"tag", "gid"},
Unique: true,
},
mgo.Index{
Key: []string{"tag", "name"},
Unique: true,
},
},
}
)
func getMongo() *mongoCtx {
return &mongoCtx{_mongo.session.Copy(), _mongo.dbname}
}
func (m *mongoCtx) Close() {
m.session.Close()
}
func (m *mongoCtx) UserColl() *mgo.Collection {
return m.session.DB(m.dbname).C(mgoUserColl)
}
func (m *mongoCtx) PosixGroupColl() *mgo.Collection {
return m.session.DB(m.dbname).C(mgoPosixGroupColl)
}
func (m *mongoCtx) FilterTagColl() *mgo.Collection {
return m.session.DB(m.dbname).C(mgoFilterTagColl)
}
func (m *mongoCtx) CounterColl() *mgo.Collection {
return m.session.DB(m.dbname).C(mgoCounterColl)
}
// FindUsers returns the user list that matches filter and has a specified tag
func (m *mongoCtx) FindUsers(filter bson.M, tag string) []User {
var results []User
isAdmin := bson.M{"is_admin": true}
isActive := bson.M{"is_active": true}
filters := []bson.M{filter, isActive}
if tag != "" {
filters = append(filters, bson.M{"tags": tag})
}
m.UserColl().
Find(bson.M{
"$or": []bson.M{
bson.M{"$and": []bson.M{filter, isActive, isAdmin}},
bson.M{"$and": filters},
},
}).
All(&results)
return results
}
// FindGroups returns the group list that matches filter and has a specified tag
func (m *mongoCtx) FindGroups(filter bson.M, tag string) []PosixGroup {
var results []PosixGroup
filters := []bson.M{
filter,
bson.M{"is_active": true},
bson.M{"tag": bson.M{"$in": []string{tag, ""}}},
}
err := m.PosixGroupColl().Find(bson.M{"$and": filters}).All(&results)
if err != nil {
logger.Error(err.Error())
}
return results
}
func (m *mongoCtx) EnsureTag(tagName string) error {
coll := m.FilterTagColl()
cnt, _ := coll.Find(bson.M{"_id": tagName}).Count()
if cnt == 0 {
tagRegex := regexp.MustCompile(`[\w-]+`)
if !tagRegex.MatchString(tagName) {
return errors.New("Tag must only contains '0-9', 'a-z', 'A-z' and '-'")
}
tag := FilterTag{
Name: tagName,
}
return coll.Insert(tag)
}
return nil
}
// ldapQueryToBson convers an LDAP query to BSON filter
// the keymap maps ldap attribute to mongo doc key, e.g. userldap2bson
func ldapQueryToBson(filter ldapMsg.Filter, keymap map[string]string) bson.M {
res := bson.M{}
switch f := filter.(type) {
case ldapMsg.FilterAnd:
cfilters := []bson.M{}
for _, child := range f {
cf := ldapQueryToBson(child, keymap)
if len(cf) > 0 {
cfilters = append(cfilters, cf)
}
}
if len(cfilters) > 1 {
res["$and"] = cfilters
} else if len(cfilters) == 1 {
res = cfilters[0]
}
case ldapMsg.FilterOr:
cfilters := []bson.M{}
for _, child := range f {
cf := ldapQueryToBson(child, keymap)
if len(cf) > 0 {
cfilters = append(cfilters, cf)
}
}
if len(cfilters) > 1 {
res["$or"] = cfilters
} else if len(cfilters) == 1 {
res = cfilters[0]
}
case ldapMsg.FilterNot:
cf := ldapQueryToBson(f.Filter, keymap)
if len(cf) > 0 {
res["$not"] = cf
}
case ldapMsg.FilterEqualityMatch:
lkey := string(f.AttributeDesc())
lval := string(f.AssertionValue())
if key, ok := keymap[lkey]; ok {
if ldapIntegerFields[lkey] {
val, _ := strconv.Atoi(lval)
res[key] = val
} else {
res[key] = lval
}
}
case ldapMsg.FilterGreaterOrEqual:
lkey := string(f.AttributeDesc())
lval := string(f.AssertionValue())
if key, ok := keymap[lkey]; ok {
if ldapIntegerFields[lkey] {
val, _ := strconv.Atoi(lval)
res[key] = bson.M{"$gte": val}
} else {
res[key] = bson.M{"$gte": lval}
}
}
case ldapMsg.FilterLessOrEqual:
lkey := string(f.AttributeDesc())
lval := string(f.AssertionValue())
if key, ok := keymap[lkey]; ok {
if ldapIntegerFields[lkey] {
val, _ := strconv.Atoi(lval)
res[key] = bson.M{"$lte": val}
} else {
res[key] = bson.M{"$lte": lval}
}
}
}
return res
}
func (m *mongoCtx) getNextSeq(ID string) int {
counter := mongoCounter{}
change := mgo.Change{
Update: bson.M{
"$inc": bson.M{"seq": 1},
},
ReturnNew: true,
}
_, err := m.CounterColl().Find(bson.M{"_id": ID}).Apply(change, &counter)
if err != nil {
panic(err)
}
return counter.Seq
}
func (m *mongoCtx) ensureCounterMin(ID string, val int) {
err := m.CounterColl().
Update(bson.M{
"$and": []bson.M{
bson.M{"_id": ID},
bson.M{"seq": bson.M{"$lt": val}},
},
}, bson.M{
"$set": bson.M{"seq": val},
})
if err != nil {
if err != mgo.ErrNotFound {
panic(err)
}
}
}
func initMongo() error {
c := dcfg.DB
var addrs []string
if len(c.Addrs) > 0 {
addrs = c.Addrs
} else {
addrs = []string{fmt.Sprintf("%s:%d", c.Addr, c.Port)}
}
dialInfo := &mgo.DialInfo{
Addrs: addrs,
Direct: false,
Database: c.Name,
ReplicaSetName: c.Options["replica_set"],
FailFast: true,
PoolLimit: 128,
}
if c.User != "" && c.Password != "" {
dialInfo.Username = c.User
dialInfo.Password = c.Password
}
logger.Debugf("dbconfig: %#v", c)
logger.Debugf("dialInfo: %#v", dialInfo)
session, err := mgo.DialWithInfo(dialInfo)
if err != nil {
return err
}
_mongo = &mongoCtx{
session: session,
dbname: c.Name,
}
// don't need to init data in read-only mode
if dcfg.ReadOnly {
session.SetMode(mgo.Monotonic, false)
return nil
}
// init indexes
db := session.DB(c.Name)
for cname, indexes := range mgoIndexes {
for _, index := range indexes {
err = db.C(cname).EnsureIndex(index)
if err != nil {
return err
}
}
}
// seqStart
seqStart := map[string]int{
"uid": dcfg.TUNA.MinimumGID,
"gid": dcfg.TUNA.MinimumGID,
}
for k, v := range seqStart {
if cnt, _ := _mongo.CounterColl().FindId(k).Count(); cnt == 0 {
_mongo.CounterColl().Insert(mongoCounter{ID: k, Seq: v})
}
}
return nil
}