-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.go
More file actions
381 lines (281 loc) · 8.35 KB
/
Copy pathuser.go
File metadata and controls
381 lines (281 loc) · 8.35 KB
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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
package models
import (
"time"
"github.com/elos/data"
"github.com/elos/data/builtin/mongo"
"github.com/elos/metis"
"gopkg.in/mgo.v2/bson"
)
// THIS FILE GENERATED BY METIS
// this type def generated by metis
type User struct {
AuthorizationsIds []string `json:"authorizations_ids" bson:"authorizations_ids"`
CreatedAt time.Time `json:"created_at" bson:"created_at"`
CredentialsIds []string `json:"credentials_ids" bson:"credentials_ids"`
DeletedAt time.Time `json:"deleted_at" bson:"deleted_at"`
GroupsIds []string `json:"groups_ids" bson:"groups_ids"`
Id string `json:"id" bson:"_id,omitempty"`
Password string `json:"password" bson:"password"`
SessionsIds []string `json:"sessions_ids" bson:"sessions_ids"`
UpdatedAt time.Time `json:"updated_at" bson:"updated_at"`
}
func NewUser() *User {
return &User{}
}
func FindUser(db data.DB, id data.ID) (*User, error) {
user := NewUser()
user.SetID(id)
return user, db.PopulateByID(user)
}
// Kind is derived from the models package and is
// defined in type.go, shared among implementations
func (user *User) Kind() data.Kind {
return UserKind
}
// just returns itself for now
func (user *User) Concerned() []data.ID {
foo := make([]data.ID, 1)
foo[0] = user.ID()
return foo
}
func (user *User) SetID(id data.ID) {
user.Id = id.String()
}
func (user *User) ID() data.ID {
return data.ID(user.Id)
}
func (user *User) IncludeAuthorization(authorization *Group) {
otherID := authorization.ID().String()
for i := range user.AuthorizationsIds {
if user.AuthorizationsIds[i] == otherID {
return
}
}
user.AuthorizationsIds = append(user.AuthorizationsIds, otherID)
}
func (user *User) ExcludeAuthorization(authorization *Group) {
tmp := make([]string, 0)
id := authorization.ID().String()
for _, s := range user.AuthorizationsIds {
if s != id {
tmp = append(tmp, s)
}
}
user.AuthorizationsIds = tmp
}
func (user *User) AuthorizationsIter(db data.DB) (data.Iterator, error) {
// not yet completely general
return mongo.NewIDIter(mongo.NewIDSetFromStrings(user.AuthorizationsIds), db), nil
}
func (user *User) Authorizations(db data.DB) (authorizations []*Group, err error) {
authorizations = make([]*Group, len(user.AuthorizationsIds))
authorization := NewGroup()
for i, id := range user.AuthorizationsIds {
authorization.Id = id
if err = db.PopulateByID(authorization); err != nil {
return
}
authorizations[i] = authorization
authorization = NewGroup()
}
return
}
func (user *User) IncludeCredential(credential *Credential) {
otherID := credential.ID().String()
for i := range user.CredentialsIds {
if user.CredentialsIds[i] == otherID {
return
}
}
user.CredentialsIds = append(user.CredentialsIds, otherID)
}
func (user *User) ExcludeCredential(credential *Credential) {
tmp := make([]string, 0)
id := credential.ID().String()
for _, s := range user.CredentialsIds {
if s != id {
tmp = append(tmp, s)
}
}
user.CredentialsIds = tmp
}
func (user *User) CredentialsIter(db data.DB) (data.Iterator, error) {
// not yet completely general
return mongo.NewIDIter(mongo.NewIDSetFromStrings(user.CredentialsIds), db), nil
}
func (user *User) Credentials(db data.DB) (credentials []*Credential, err error) {
credentials = make([]*Credential, len(user.CredentialsIds))
credential := NewCredential()
for i, id := range user.CredentialsIds {
credential.Id = id
if err = db.PopulateByID(credential); err != nil {
return
}
credentials[i] = credential
credential = NewCredential()
}
return
}
func (user *User) IncludeGroup(group *Group) {
otherID := group.ID().String()
for i := range user.GroupsIds {
if user.GroupsIds[i] == otherID {
return
}
}
user.GroupsIds = append(user.GroupsIds, otherID)
}
func (user *User) ExcludeGroup(group *Group) {
tmp := make([]string, 0)
id := group.ID().String()
for _, s := range user.GroupsIds {
if s != id {
tmp = append(tmp, s)
}
}
user.GroupsIds = tmp
}
func (user *User) GroupsIter(db data.DB) (data.Iterator, error) {
// not yet completely general
return mongo.NewIDIter(mongo.NewIDSetFromStrings(user.GroupsIds), db), nil
}
func (user *User) Groups(db data.DB) (groups []*Group, err error) {
groups = make([]*Group, len(user.GroupsIds))
group := NewGroup()
for i, id := range user.GroupsIds {
group.Id = id
if err = db.PopulateByID(group); err != nil {
return
}
groups[i] = group
group = NewGroup()
}
return
}
func (user *User) IncludeSession(session *Session) {
otherID := session.ID().String()
for i := range user.SessionsIds {
if user.SessionsIds[i] == otherID {
return
}
}
user.SessionsIds = append(user.SessionsIds, otherID)
}
func (user *User) ExcludeSession(session *Session) {
tmp := make([]string, 0)
id := session.ID().String()
for _, s := range user.SessionsIds {
if s != id {
tmp = append(tmp, s)
}
}
user.SessionsIds = tmp
}
func (user *User) SessionsIter(db data.DB) (data.Iterator, error) {
// not yet completely general
return mongo.NewIDIter(mongo.NewIDSetFromStrings(user.SessionsIds), db), nil
}
func (user *User) Sessions(db data.DB) (sessions []*Session, err error) {
sessions = make([]*Session, len(user.SessionsIds))
session := NewSession()
for i, id := range user.SessionsIds {
session.Id = id
if err = db.PopulateByID(session); err != nil {
return
}
sessions[i] = session
session = NewSession()
}
return
}
// BSON {{{
func (user *User) GetBSON() (interface{}, error) {
return struct {
CreatedAt time.Time `json:"created_at" bson:"created_at"`
DeletedAt time.Time `json:"deleted_at" bson:"deleted_at"`
Id string `json:"id" bson:"_id,omitempty"`
Password string `json:"password" bson:"password"`
UpdatedAt time.Time `json:"updated_at" bson:"updated_at"`
AuthorizationsIds []string `json:"authorizations_ids" bson:"authorizations_ids"`
CredentialsIds []string `json:"credentials_ids" bson:"credentials_ids"`
GroupsIds []string `json:"groups_ids" bson:"groups_ids"`
SessionsIds []string `json:"sessions_ids" bson:"sessions_ids"`
}{
CreatedAt: user.CreatedAt,
DeletedAt: user.DeletedAt,
Password: user.Password,
UpdatedAt: user.UpdatedAt,
AuthorizationsIds: user.AuthorizationsIds,
CredentialsIds: user.CredentialsIds,
GroupsIds: user.GroupsIds,
SessionsIds: user.SessionsIds,
}, nil
}
func (user *User) SetBSON(raw bson.Raw) error {
tmp := struct {
CreatedAt time.Time `json:"created_at" bson:"created_at"`
DeletedAt time.Time `json:"deleted_at" bson:"deleted_at"`
Id bson.ObjectId `json:"id" bson:"_id,omitempty"`
Password string `json:"password" bson:"password"`
UpdatedAt time.Time `json:"updated_at" bson:"updated_at"`
AuthorizationsIds []string `json:"authorizations_ids" bson:"authorizations_ids"`
CredentialsIds []string `json:"credentials_ids" bson:"credentials_ids"`
GroupsIds []string `json:"groups_ids" bson:"groups_ids"`
SessionsIds []string `json:"sessions_ids" bson:"sessions_ids"`
}{}
err := raw.Unmarshal(&tmp)
if err != nil {
return err
}
user.CreatedAt = tmp.CreatedAt
user.DeletedAt = tmp.DeletedAt
user.Id = tmp.Id.Hex()
user.Password = tmp.Password
user.UpdatedAt = tmp.UpdatedAt
user.AuthorizationsIds = tmp.AuthorizationsIds
user.CredentialsIds = tmp.CredentialsIds
user.GroupsIds = tmp.GroupsIds
user.SessionsIds = tmp.SessionsIds
return nil
}
// BSON }}}
func (user *User) FromStructure(structure map[string]interface{}) {
if val, ok := structure["created_at"]; ok {
user.CreatedAt = val.(time.Time)
}
if val, ok := structure["updated_at"]; ok {
user.UpdatedAt = val.(time.Time)
}
if val, ok := structure["deleted_at"]; ok {
user.DeletedAt = val.(time.Time)
}
if val, ok := structure["password"]; ok {
user.Password = val.(string)
}
if val, ok := structure["id"]; ok {
user.Id = val.(string)
}
if val, ok := structure["authorizations_ids"]; ok {
user.AuthorizationsIds = val.([]string)
}
if val, ok := structure["sessions_ids"]; ok {
user.SessionsIds = val.([]string)
}
if val, ok := structure["credentials_ids"]; ok {
user.CredentialsIds = val.([]string)
}
if val, ok := structure["groups_ids"]; ok {
user.GroupsIds = val.([]string)
}
}
var UserStructure = map[string]metis.Primitive{
"password": 3,
"id": 9,
"created_at": 4,
"updated_at": 4,
"deleted_at": 4,
"credentials_ids": 10,
"groups_ids": 10,
"authorizations_ids": 10,
"sessions_ids": 10,
}