-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathauthn.go
507 lines (380 loc) · 11.4 KB
/
authn.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
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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
package gaia
import (
"fmt"
"github.com/globalsign/mgo/bson"
"github.com/mitchellh/copystructure"
"go.aporeto.io/elemental"
"go.aporeto.io/gaia/types"
)
// AuthnIdentity represents the Identity of the object.
var AuthnIdentity = elemental.Identity{
Name: "authn",
Category: "authn",
Package: "midgard",
Private: false,
}
// AuthnsList represents a list of Authns
type AuthnsList []*Authn
// Identity returns the identity of the objects in the list.
func (o AuthnsList) Identity() elemental.Identity {
return AuthnIdentity
}
// Copy returns a pointer to a copy the AuthnsList.
func (o AuthnsList) Copy() elemental.Identifiables {
copy := append(AuthnsList{}, o...)
return ©
}
// Append appends the objects to the a new copy of the AuthnsList.
func (o AuthnsList) Append(objects ...elemental.Identifiable) elemental.Identifiables {
out := append(AuthnsList{}, o...)
for _, obj := range objects {
out = append(out, obj.(*Authn))
}
return out
}
// List converts the object to an elemental.IdentifiablesList.
func (o AuthnsList) List() elemental.IdentifiablesList {
out := make(elemental.IdentifiablesList, len(o))
for i := 0; i < len(o); i++ {
out[i] = o[i]
}
return out
}
// DefaultOrder returns the default ordering fields of the content.
func (o AuthnsList) DefaultOrder() []string {
return []string{}
}
// ToSparse returns the AuthnsList converted to SparseAuthnsList.
// Objects in the list will only contain the given fields. No field means entire field set.
func (o AuthnsList) ToSparse(fields ...string) elemental.Identifiables {
out := make(SparseAuthnsList, len(o))
for i := 0; i < len(o); i++ {
out[i] = o[i].ToSparse(fields...).(*SparseAuthn)
}
return out
}
// Version returns the version of the content.
func (o AuthnsList) Version() int {
return 1
}
// Authn represents the model of a authn
type Authn struct {
// The claims in the token.
Claims *types.MidgardClaims `json:"claims" msgpack:"claims" bson:"-" mapstructure:"claims,omitempty"`
// The token to verify. This is only used if a POST request is used.
Token string `json:"token" msgpack:"token" bson:"-" mapstructure:"token,omitempty"`
ModelVersion int `json:"-" msgpack:"-" bson:"_modelversion"`
}
// NewAuthn returns a new *Authn
func NewAuthn() *Authn {
return &Authn{
ModelVersion: 1,
Claims: types.NewMidgardClaims(),
}
}
// Identity returns the Identity of the object.
func (o *Authn) Identity() elemental.Identity {
return AuthnIdentity
}
// Identifier returns the value of the object's unique identifier.
func (o *Authn) Identifier() string {
return ""
}
// SetIdentifier sets the value of the object's unique identifier.
func (o *Authn) SetIdentifier(id string) {
}
// GetBSON implements the bson marshaling interface.
// This is used to transparently convert ID to MongoDBID as ObectID.
func (o *Authn) GetBSON() (interface{}, error) {
if o == nil {
return nil, nil
}
s := &mongoAttributesAuthn{}
return s, nil
}
// SetBSON implements the bson marshaling interface.
// This is used to transparently convert ID to MongoDBID as ObectID.
func (o *Authn) SetBSON(raw bson.Raw) error {
if o == nil {
return nil
}
s := &mongoAttributesAuthn{}
if err := raw.Unmarshal(s); err != nil {
return err
}
return nil
}
// Version returns the hardcoded version of the model.
func (o *Authn) Version() int {
return 1
}
// BleveType implements the bleve.Classifier Interface.
func (o *Authn) BleveType() string {
return "authn"
}
// DefaultOrder returns the list of default ordering fields.
func (o *Authn) DefaultOrder() []string {
return []string{}
}
// Doc returns the documentation for the object
func (o *Authn) Doc() string {
return `Verifies if the given token is valid or not. If it is valid it will
return the claims of the token.`
}
func (o *Authn) String() string {
return fmt.Sprintf("<%s:%s>", o.Identity().Name, o.Identifier())
}
// ToSparse returns the sparse version of the model.
// The returned object will only contain the given fields. No field means entire field set.
func (o *Authn) ToSparse(fields ...string) elemental.SparseIdentifiable {
if len(fields) == 0 {
// nolint: goimports
return &SparseAuthn{
Claims: o.Claims,
Token: &o.Token,
}
}
sp := &SparseAuthn{}
for _, f := range fields {
switch f {
case "claims":
sp.Claims = o.Claims
case "token":
sp.Token = &(o.Token)
}
}
return sp
}
// Patch apply the non nil value of a *SparseAuthn to the object.
func (o *Authn) Patch(sparse elemental.SparseIdentifiable) {
if !sparse.Identity().IsEqual(o.Identity()) {
panic("cannot patch from a parse with different identity")
}
so := sparse.(*SparseAuthn)
if so.Claims != nil {
o.Claims = so.Claims
}
if so.Token != nil {
o.Token = *so.Token
}
}
// DeepCopy returns a deep copy if the Authn.
func (o *Authn) DeepCopy() *Authn {
if o == nil {
return nil
}
out := &Authn{}
o.DeepCopyInto(out)
return out
}
// DeepCopyInto copies the receiver into the given *Authn.
func (o *Authn) DeepCopyInto(out *Authn) {
target, err := copystructure.Copy(o)
if err != nil {
panic(fmt.Sprintf("Unable to deepcopy Authn: %s", err))
}
*out = *target.(*Authn)
}
// Validate valides the current information stored into the structure.
func (o *Authn) Validate() error {
errors := elemental.Errors{}
requiredErrors := elemental.Errors{}
if len(requiredErrors) > 0 {
return requiredErrors
}
if len(errors) > 0 {
return errors
}
return nil
}
// SpecificationForAttribute returns the AttributeSpecification for the given attribute name key.
func (*Authn) SpecificationForAttribute(name string) elemental.AttributeSpecification {
if v, ok := AuthnAttributesMap[name]; ok {
return v
}
// We could not find it, so let's check on the lower case indexed spec map
return AuthnLowerCaseAttributesMap[name]
}
// AttributeSpecifications returns the full attribute specifications map.
func (*Authn) AttributeSpecifications() map[string]elemental.AttributeSpecification {
return AuthnAttributesMap
}
// ValueForAttribute returns the value for the given attribute.
// This is a very advanced function that you should not need but in some
// very specific use cases.
func (o *Authn) ValueForAttribute(name string) interface{} {
switch name {
case "claims":
return o.Claims
case "token":
return o.Token
}
return nil
}
// AuthnAttributesMap represents the map of attribute for Authn.
var AuthnAttributesMap = map[string]elemental.AttributeSpecification{
"Claims": {
AllowedChoices: []string{},
Autogenerated: true,
ConvertedName: "Claims",
Description: `The claims in the token.`,
Exposed: true,
Name: "claims",
ReadOnly: true,
SubType: "_claims",
Type: "external",
},
"Token": {
AllowedChoices: []string{},
ConvertedName: "Token",
Description: `The token to verify. This is only used if a POST request is used.`,
Exposed: true,
Name: "token",
Type: "string",
},
}
// AuthnLowerCaseAttributesMap represents the map of attribute for Authn.
var AuthnLowerCaseAttributesMap = map[string]elemental.AttributeSpecification{
"claims": {
AllowedChoices: []string{},
Autogenerated: true,
ConvertedName: "Claims",
Description: `The claims in the token.`,
Exposed: true,
Name: "claims",
ReadOnly: true,
SubType: "_claims",
Type: "external",
},
"token": {
AllowedChoices: []string{},
ConvertedName: "Token",
Description: `The token to verify. This is only used if a POST request is used.`,
Exposed: true,
Name: "token",
Type: "string",
},
}
// SparseAuthnsList represents a list of SparseAuthns
type SparseAuthnsList []*SparseAuthn
// Identity returns the identity of the objects in the list.
func (o SparseAuthnsList) Identity() elemental.Identity {
return AuthnIdentity
}
// Copy returns a pointer to a copy the SparseAuthnsList.
func (o SparseAuthnsList) Copy() elemental.Identifiables {
copy := append(SparseAuthnsList{}, o...)
return ©
}
// Append appends the objects to the a new copy of the SparseAuthnsList.
func (o SparseAuthnsList) Append(objects ...elemental.Identifiable) elemental.Identifiables {
out := append(SparseAuthnsList{}, o...)
for _, obj := range objects {
out = append(out, obj.(*SparseAuthn))
}
return out
}
// List converts the object to an elemental.IdentifiablesList.
func (o SparseAuthnsList) List() elemental.IdentifiablesList {
out := make(elemental.IdentifiablesList, len(o))
for i := 0; i < len(o); i++ {
out[i] = o[i]
}
return out
}
// DefaultOrder returns the default ordering fields of the content.
func (o SparseAuthnsList) DefaultOrder() []string {
return []string{}
}
// ToPlain returns the SparseAuthnsList converted to AuthnsList.
func (o SparseAuthnsList) ToPlain() elemental.IdentifiablesList {
out := make(elemental.IdentifiablesList, len(o))
for i := 0; i < len(o); i++ {
out[i] = o[i].ToPlain()
}
return out
}
// Version returns the version of the content.
func (o SparseAuthnsList) Version() int {
return 1
}
// SparseAuthn represents the sparse version of a authn.
type SparseAuthn struct {
// The claims in the token.
Claims *types.MidgardClaims `json:"claims,omitempty" msgpack:"claims,omitempty" bson:"-" mapstructure:"claims,omitempty"`
// The token to verify. This is only used if a POST request is used.
Token *string `json:"token,omitempty" msgpack:"token,omitempty" bson:"-" mapstructure:"token,omitempty"`
ModelVersion int `json:"-" msgpack:"-" bson:"_modelversion"`
}
// NewSparseAuthn returns a new SparseAuthn.
func NewSparseAuthn() *SparseAuthn {
return &SparseAuthn{}
}
// Identity returns the Identity of the sparse object.
func (o *SparseAuthn) Identity() elemental.Identity {
return AuthnIdentity
}
// Identifier returns the value of the sparse object's unique identifier.
func (o *SparseAuthn) Identifier() string {
return ""
}
// SetIdentifier sets the value of the sparse object's unique identifier.
func (o *SparseAuthn) SetIdentifier(id string) {
}
// GetBSON implements the bson marshaling interface.
// This is used to transparently convert ID to MongoDBID as ObectID.
func (o *SparseAuthn) GetBSON() (interface{}, error) {
if o == nil {
return nil, nil
}
s := &mongoAttributesSparseAuthn{}
return s, nil
}
// SetBSON implements the bson marshaling interface.
// This is used to transparently convert ID to MongoDBID as ObectID.
func (o *SparseAuthn) SetBSON(raw bson.Raw) error {
if o == nil {
return nil
}
s := &mongoAttributesSparseAuthn{}
if err := raw.Unmarshal(s); err != nil {
return err
}
return nil
}
// Version returns the hardcoded version of the model.
func (o *SparseAuthn) Version() int {
return 1
}
// ToPlain returns the plain version of the sparse model.
func (o *SparseAuthn) ToPlain() elemental.PlainIdentifiable {
out := NewAuthn()
if o.Claims != nil {
out.Claims = o.Claims
}
if o.Token != nil {
out.Token = *o.Token
}
return out
}
// DeepCopy returns a deep copy if the SparseAuthn.
func (o *SparseAuthn) DeepCopy() *SparseAuthn {
if o == nil {
return nil
}
out := &SparseAuthn{}
o.DeepCopyInto(out)
return out
}
// DeepCopyInto copies the receiver into the given *SparseAuthn.
func (o *SparseAuthn) DeepCopyInto(out *SparseAuthn) {
target, err := copystructure.Copy(o)
if err != nil {
panic(fmt.Sprintf("Unable to deepcopy SparseAuthn: %s", err))
}
*out = *target.(*SparseAuthn)
}
type mongoAttributesAuthn struct {
}
type mongoAttributesSparseAuthn struct {
}