-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathhit.go
603 lines (465 loc) · 13.8 KB
/
hit.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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
package gaia
import (
"fmt"
"github.com/globalsign/mgo/bson"
"github.com/mitchellh/copystructure"
"go.aporeto.io/elemental"
)
// HitIdentity represents the Identity of the object.
var HitIdentity = elemental.Identity{
Name: "hit",
Category: "hits",
Package: "minwu",
Private: false,
}
// HitsList represents a list of Hits
type HitsList []*Hit
// Identity returns the identity of the objects in the list.
func (o HitsList) Identity() elemental.Identity {
return HitIdentity
}
// Copy returns a pointer to a copy the HitsList.
func (o HitsList) Copy() elemental.Identifiables {
copy := append(HitsList{}, o...)
return ©
}
// Append appends the objects to the a new copy of the HitsList.
func (o HitsList) Append(objects ...elemental.Identifiable) elemental.Identifiables {
out := append(HitsList{}, o...)
for _, obj := range objects {
out = append(out, obj.(*Hit))
}
return out
}
// List converts the object to an elemental.IdentifiablesList.
func (o HitsList) 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 HitsList) DefaultOrder() []string {
return []string{}
}
// ToSparse returns the HitsList converted to SparseHitsList.
// Objects in the list will only contain the given fields. No field means entire field set.
func (o HitsList) ToSparse(fields ...string) elemental.Identifiables {
out := make(SparseHitsList, len(o))
for i := 0; i < len(o); i++ {
out[i] = o[i].ToSparse(fields...).(*SparseHit)
}
return out
}
// Version returns the version of the content.
func (o HitsList) Version() int {
return 1
}
// Hit represents the model of a hit
type Hit struct {
// name of the counter.
Name string `json:"name" msgpack:"name" bson:"-" mapstructure:"name,omitempty"`
// The ID of the referenced object..
TargetID string `json:"targetID" msgpack:"targetID" bson:"-" mapstructure:"targetID,omitempty"`
// The identity of the referenced object.
TargetIdentity string `json:"targetIdentity" msgpack:"targetIdentity" bson:"targetidentity" mapstructure:"targetIdentity,omitempty"`
// The value of the hit.
Value int `json:"value" msgpack:"value" bson:"-" mapstructure:"value,omitempty"`
ModelVersion int `json:"-" msgpack:"-" bson:"_modelversion"`
}
// NewHit returns a new *Hit
func NewHit() *Hit {
return &Hit{
ModelVersion: 1,
Name: "counter",
}
}
// Identity returns the Identity of the object.
func (o *Hit) Identity() elemental.Identity {
return HitIdentity
}
// Identifier returns the value of the object's unique identifier.
func (o *Hit) Identifier() string {
return ""
}
// SetIdentifier sets the value of the object's unique identifier.
func (o *Hit) SetIdentifier(id string) {
}
// GetBSON implements the bson marshaling interface.
// This is used to transparently convert ID to MongoDBID as ObectID.
func (o *Hit) GetBSON() (interface{}, error) {
if o == nil {
return nil, nil
}
s := &mongoAttributesHit{}
s.TargetIdentity = o.TargetIdentity
return s, nil
}
// SetBSON implements the bson marshaling interface.
// This is used to transparently convert ID to MongoDBID as ObectID.
func (o *Hit) SetBSON(raw bson.Raw) error {
if o == nil {
return nil
}
s := &mongoAttributesHit{}
if err := raw.Unmarshal(s); err != nil {
return err
}
o.TargetIdentity = s.TargetIdentity
return nil
}
// Version returns the hardcoded version of the model.
func (o *Hit) Version() int {
return 1
}
// BleveType implements the bleve.Classifier Interface.
func (o *Hit) BleveType() string {
return "hit"
}
// DefaultOrder returns the list of default ordering fields.
func (o *Hit) DefaultOrder() []string {
return []string{}
}
// Doc returns the documentation for the object
func (o *Hit) Doc() string {
return `This API allows to retrieve a generic hit counter for a given object.`
}
func (o *Hit) 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 *Hit) ToSparse(fields ...string) elemental.SparseIdentifiable {
if len(fields) == 0 {
// nolint: goimports
return &SparseHit{
Name: &o.Name,
TargetID: &o.TargetID,
TargetIdentity: &o.TargetIdentity,
Value: &o.Value,
}
}
sp := &SparseHit{}
for _, f := range fields {
switch f {
case "name":
sp.Name = &(o.Name)
case "targetID":
sp.TargetID = &(o.TargetID)
case "targetIdentity":
sp.TargetIdentity = &(o.TargetIdentity)
case "value":
sp.Value = &(o.Value)
}
}
return sp
}
// Patch apply the non nil value of a *SparseHit to the object.
func (o *Hit) Patch(sparse elemental.SparseIdentifiable) {
if !sparse.Identity().IsEqual(o.Identity()) {
panic("cannot patch from a parse with different identity")
}
so := sparse.(*SparseHit)
if so.Name != nil {
o.Name = *so.Name
}
if so.TargetID != nil {
o.TargetID = *so.TargetID
}
if so.TargetIdentity != nil {
o.TargetIdentity = *so.TargetIdentity
}
if so.Value != nil {
o.Value = *so.Value
}
}
// DeepCopy returns a deep copy if the Hit.
func (o *Hit) DeepCopy() *Hit {
if o == nil {
return nil
}
out := &Hit{}
o.DeepCopyInto(out)
return out
}
// DeepCopyInto copies the receiver into the given *Hit.
func (o *Hit) DeepCopyInto(out *Hit) {
target, err := copystructure.Copy(o)
if err != nil {
panic(fmt.Sprintf("Unable to deepcopy Hit: %s", err))
}
*out = *target.(*Hit)
}
// Validate valides the current information stored into the structure.
func (o *Hit) Validate() error {
errors := elemental.Errors{}
requiredErrors := elemental.Errors{}
if err := elemental.ValidateRequiredString("name", o.Name); err != nil {
requiredErrors = requiredErrors.Append(err)
}
if err := elemental.ValidateRequiredString("targetIdentity", o.TargetIdentity); err != nil {
requiredErrors = requiredErrors.Append(err)
}
if err := ValidateIdentity("targetIdentity", o.TargetIdentity); err != nil {
errors = errors.Append(err)
}
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 (*Hit) SpecificationForAttribute(name string) elemental.AttributeSpecification {
if v, ok := HitAttributesMap[name]; ok {
return v
}
// We could not find it, so let's check on the lower case indexed spec map
return HitLowerCaseAttributesMap[name]
}
// AttributeSpecifications returns the full attribute specifications map.
func (*Hit) AttributeSpecifications() map[string]elemental.AttributeSpecification {
return HitAttributesMap
}
// 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 *Hit) ValueForAttribute(name string) interface{} {
switch name {
case "name":
return o.Name
case "targetID":
return o.TargetID
case "targetIdentity":
return o.TargetIdentity
case "value":
return o.Value
}
return nil
}
// HitAttributesMap represents the map of attribute for Hit.
var HitAttributesMap = map[string]elemental.AttributeSpecification{
"Name": {
AllowedChoices: []string{},
ConvertedName: "Name",
DefaultValue: "counter",
Description: `name of the counter.`,
Exposed: true,
Name: "name",
Required: true,
Type: "string",
},
"TargetID": {
AllowedChoices: []string{},
ConvertedName: "TargetID",
Description: `The ID of the referenced object..`,
Exposed: true,
Name: "targetID",
Type: "string",
},
"TargetIdentity": {
AllowedChoices: []string{},
BSONFieldName: "targetidentity",
ConvertedName: "TargetIdentity",
Description: `The identity of the referenced object.`,
Exposed: true,
Name: "targetIdentity",
Required: true,
Stored: true,
Type: "string",
},
"Value": {
AllowedChoices: []string{},
ConvertedName: "Value",
Description: `The value of the hit.`,
Exposed: true,
Name: "value",
ReadOnly: true,
Type: "integer",
},
}
// HitLowerCaseAttributesMap represents the map of attribute for Hit.
var HitLowerCaseAttributesMap = map[string]elemental.AttributeSpecification{
"name": {
AllowedChoices: []string{},
ConvertedName: "Name",
DefaultValue: "counter",
Description: `name of the counter.`,
Exposed: true,
Name: "name",
Required: true,
Type: "string",
},
"targetid": {
AllowedChoices: []string{},
ConvertedName: "TargetID",
Description: `The ID of the referenced object..`,
Exposed: true,
Name: "targetID",
Type: "string",
},
"targetidentity": {
AllowedChoices: []string{},
BSONFieldName: "targetidentity",
ConvertedName: "TargetIdentity",
Description: `The identity of the referenced object.`,
Exposed: true,
Name: "targetIdentity",
Required: true,
Stored: true,
Type: "string",
},
"value": {
AllowedChoices: []string{},
ConvertedName: "Value",
Description: `The value of the hit.`,
Exposed: true,
Name: "value",
ReadOnly: true,
Type: "integer",
},
}
// SparseHitsList represents a list of SparseHits
type SparseHitsList []*SparseHit
// Identity returns the identity of the objects in the list.
func (o SparseHitsList) Identity() elemental.Identity {
return HitIdentity
}
// Copy returns a pointer to a copy the SparseHitsList.
func (o SparseHitsList) Copy() elemental.Identifiables {
copy := append(SparseHitsList{}, o...)
return ©
}
// Append appends the objects to the a new copy of the SparseHitsList.
func (o SparseHitsList) Append(objects ...elemental.Identifiable) elemental.Identifiables {
out := append(SparseHitsList{}, o...)
for _, obj := range objects {
out = append(out, obj.(*SparseHit))
}
return out
}
// List converts the object to an elemental.IdentifiablesList.
func (o SparseHitsList) 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 SparseHitsList) DefaultOrder() []string {
return []string{}
}
// ToPlain returns the SparseHitsList converted to HitsList.
func (o SparseHitsList) 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 SparseHitsList) Version() int {
return 1
}
// SparseHit represents the sparse version of a hit.
type SparseHit struct {
// name of the counter.
Name *string `json:"name,omitempty" msgpack:"name,omitempty" bson:"-" mapstructure:"name,omitempty"`
// The ID of the referenced object..
TargetID *string `json:"targetID,omitempty" msgpack:"targetID,omitempty" bson:"-" mapstructure:"targetID,omitempty"`
// The identity of the referenced object.
TargetIdentity *string `json:"targetIdentity,omitempty" msgpack:"targetIdentity,omitempty" bson:"targetidentity,omitempty" mapstructure:"targetIdentity,omitempty"`
// The value of the hit.
Value *int `json:"value,omitempty" msgpack:"value,omitempty" bson:"-" mapstructure:"value,omitempty"`
ModelVersion int `json:"-" msgpack:"-" bson:"_modelversion"`
}
// NewSparseHit returns a new SparseHit.
func NewSparseHit() *SparseHit {
return &SparseHit{}
}
// Identity returns the Identity of the sparse object.
func (o *SparseHit) Identity() elemental.Identity {
return HitIdentity
}
// Identifier returns the value of the sparse object's unique identifier.
func (o *SparseHit) Identifier() string {
return ""
}
// SetIdentifier sets the value of the sparse object's unique identifier.
func (o *SparseHit) SetIdentifier(id string) {
}
// GetBSON implements the bson marshaling interface.
// This is used to transparently convert ID to MongoDBID as ObectID.
func (o *SparseHit) GetBSON() (interface{}, error) {
if o == nil {
return nil, nil
}
s := &mongoAttributesSparseHit{}
if o.TargetIdentity != nil {
s.TargetIdentity = o.TargetIdentity
}
return s, nil
}
// SetBSON implements the bson marshaling interface.
// This is used to transparently convert ID to MongoDBID as ObectID.
func (o *SparseHit) SetBSON(raw bson.Raw) error {
if o == nil {
return nil
}
s := &mongoAttributesSparseHit{}
if err := raw.Unmarshal(s); err != nil {
return err
}
if s.TargetIdentity != nil {
o.TargetIdentity = s.TargetIdentity
}
return nil
}
// Version returns the hardcoded version of the model.
func (o *SparseHit) Version() int {
return 1
}
// ToPlain returns the plain version of the sparse model.
func (o *SparseHit) ToPlain() elemental.PlainIdentifiable {
out := NewHit()
if o.Name != nil {
out.Name = *o.Name
}
if o.TargetID != nil {
out.TargetID = *o.TargetID
}
if o.TargetIdentity != nil {
out.TargetIdentity = *o.TargetIdentity
}
if o.Value != nil {
out.Value = *o.Value
}
return out
}
// DeepCopy returns a deep copy if the SparseHit.
func (o *SparseHit) DeepCopy() *SparseHit {
if o == nil {
return nil
}
out := &SparseHit{}
o.DeepCopyInto(out)
return out
}
// DeepCopyInto copies the receiver into the given *SparseHit.
func (o *SparseHit) DeepCopyInto(out *SparseHit) {
target, err := copystructure.Copy(o)
if err != nil {
panic(fmt.Sprintf("Unable to deepcopy SparseHit: %s", err))
}
*out = *target.(*SparseHit)
}
type mongoAttributesHit struct {
TargetIdentity string `bson:"targetidentity"`
}
type mongoAttributesSparseHit struct {
TargetIdentity *string `bson:"targetidentity,omitempty"`
}