forked from emanic/gaia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathipinfo.go
546 lines (417 loc) · 12.6 KB
/
ipinfo.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
package gaia
import (
"fmt"
"github.com/globalsign/mgo/bson"
"github.com/mitchellh/copystructure"
"go.aporeto.io/elemental"
)
// IPInfoIdentity represents the Identity of the object.
var IPInfoIdentity = elemental.Identity{
Name: "ipinfo",
Category: "ipinfos",
Package: "canyon",
Private: false,
}
// IPInfosList represents a list of IPInfos
type IPInfosList []*IPInfo
// Identity returns the identity of the objects in the list.
func (o IPInfosList) Identity() elemental.Identity {
return IPInfoIdentity
}
// Copy returns a pointer to a copy the IPInfosList.
func (o IPInfosList) Copy() elemental.Identifiables {
copy := append(IPInfosList{}, o...)
return ©
}
// Append appends the objects to the a new copy of the IPInfosList.
func (o IPInfosList) Append(objects ...elemental.Identifiable) elemental.Identifiables {
out := append(IPInfosList{}, o...)
for _, obj := range objects {
out = append(out, obj.(*IPInfo))
}
return out
}
// List converts the object to an elemental.IdentifiablesList.
func (o IPInfosList) 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 IPInfosList) DefaultOrder() []string {
return []string{}
}
// ToSparse returns the IPInfosList converted to SparseIPInfosList.
// Objects in the list will only contain the given fields. No field means entire field set.
func (o IPInfosList) ToSparse(fields ...string) elemental.Identifiables {
out := make(SparseIPInfosList, len(o))
for i := 0; i < len(o); i++ {
out[i] = o[i].ToSparse(fields...).(*SparseIPInfo)
}
return out
}
// Version returns the version of the content.
func (o IPInfosList) Version() int {
return 1
}
// IPInfo represents the model of a ipinfo
type IPInfo struct {
// The IP address.
IP string `json:"IP" msgpack:"IP" bson:"-" mapstructure:"IP,omitempty"`
// Error that occurred during resolution.
Error string `json:"error" msgpack:"error" bson:"-" mapstructure:"error,omitempty"`
// List of DNS records associated with the IP address.
Records map[string]string `json:"records" msgpack:"records" bson:"-" mapstructure:"records,omitempty"`
ModelVersion int `json:"-" msgpack:"-" bson:"_modelversion"`
}
// NewIPInfo returns a new *IPInfo
func NewIPInfo() *IPInfo {
return &IPInfo{
ModelVersion: 1,
Records: map[string]string{},
}
}
// Identity returns the Identity of the object.
func (o *IPInfo) Identity() elemental.Identity {
return IPInfoIdentity
}
// Identifier returns the value of the object's unique identifier.
func (o *IPInfo) Identifier() string {
return ""
}
// SetIdentifier sets the value of the object's unique identifier.
func (o *IPInfo) SetIdentifier(id string) {
}
// GetBSON implements the bson marshaling interface.
// This is used to transparently convert ID to MongoDBID as ObectID.
func (o *IPInfo) GetBSON() (interface{}, error) {
if o == nil {
return nil, nil
}
s := &mongoAttributesIPInfo{}
return s, nil
}
// SetBSON implements the bson marshaling interface.
// This is used to transparently convert ID to MongoDBID as ObectID.
func (o *IPInfo) SetBSON(raw bson.Raw) error {
if o == nil {
return nil
}
s := &mongoAttributesIPInfo{}
if err := raw.Unmarshal(s); err != nil {
return err
}
return nil
}
// Version returns the hardcoded version of the model.
func (o *IPInfo) Version() int {
return 1
}
// BleveType implements the bleve.Classifier Interface.
func (o *IPInfo) BleveType() string {
return "ipinfo"
}
// DefaultOrder returns the list of default ordering fields.
func (o *IPInfo) DefaultOrder() []string {
return []string{}
}
// Doc returns the documentation for the object
func (o *IPInfo) Doc() string {
return `Provides information about IP address resolution.`
}
func (o *IPInfo) 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 *IPInfo) ToSparse(fields ...string) elemental.SparseIdentifiable {
if len(fields) == 0 {
// nolint: goimports
return &SparseIPInfo{
IP: &o.IP,
Error: &o.Error,
Records: &o.Records,
}
}
sp := &SparseIPInfo{}
for _, f := range fields {
switch f {
case "IP":
sp.IP = &(o.IP)
case "error":
sp.Error = &(o.Error)
case "records":
sp.Records = &(o.Records)
}
}
return sp
}
// Patch apply the non nil value of a *SparseIPInfo to the object.
func (o *IPInfo) Patch(sparse elemental.SparseIdentifiable) {
if !sparse.Identity().IsEqual(o.Identity()) {
panic("cannot patch from a parse with different identity")
}
so := sparse.(*SparseIPInfo)
if so.IP != nil {
o.IP = *so.IP
}
if so.Error != nil {
o.Error = *so.Error
}
if so.Records != nil {
o.Records = *so.Records
}
}
// DeepCopy returns a deep copy if the IPInfo.
func (o *IPInfo) DeepCopy() *IPInfo {
if o == nil {
return nil
}
out := &IPInfo{}
o.DeepCopyInto(out)
return out
}
// DeepCopyInto copies the receiver into the given *IPInfo.
func (o *IPInfo) DeepCopyInto(out *IPInfo) {
target, err := copystructure.Copy(o)
if err != nil {
panic(fmt.Sprintf("Unable to deepcopy IPInfo: %s", err))
}
*out = *target.(*IPInfo)
}
// Validate valides the current information stored into the structure.
func (o *IPInfo) 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 (*IPInfo) SpecificationForAttribute(name string) elemental.AttributeSpecification {
if v, ok := IPInfoAttributesMap[name]; ok {
return v
}
// We could not find it, so let's check on the lower case indexed spec map
return IPInfoLowerCaseAttributesMap[name]
}
// AttributeSpecifications returns the full attribute specifications map.
func (*IPInfo) AttributeSpecifications() map[string]elemental.AttributeSpecification {
return IPInfoAttributesMap
}
// 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 *IPInfo) ValueForAttribute(name string) interface{} {
switch name {
case "IP":
return o.IP
case "error":
return o.Error
case "records":
return o.Records
}
return nil
}
// IPInfoAttributesMap represents the map of attribute for IPInfo.
var IPInfoAttributesMap = map[string]elemental.AttributeSpecification{
"IP": elemental.AttributeSpecification{
AllowedChoices: []string{},
Autogenerated: true,
ConvertedName: "IP",
Description: `The IP address.`,
Exposed: true,
Name: "IP",
ReadOnly: true,
Type: "string",
},
"Error": elemental.AttributeSpecification{
AllowedChoices: []string{},
Autogenerated: true,
ConvertedName: "Error",
Description: `Error that occurred during resolution.`,
Exposed: true,
Name: "error",
ReadOnly: true,
Type: "string",
},
"Records": elemental.AttributeSpecification{
AllowedChoices: []string{},
Autogenerated: true,
ConvertedName: "Records",
Description: `List of DNS records associated with the IP address.`,
Exposed: true,
Name: "records",
ReadOnly: true,
SubType: "map[string]string",
Type: "external",
},
}
// IPInfoLowerCaseAttributesMap represents the map of attribute for IPInfo.
var IPInfoLowerCaseAttributesMap = map[string]elemental.AttributeSpecification{
"ip": elemental.AttributeSpecification{
AllowedChoices: []string{},
Autogenerated: true,
ConvertedName: "IP",
Description: `The IP address.`,
Exposed: true,
Name: "IP",
ReadOnly: true,
Type: "string",
},
"error": elemental.AttributeSpecification{
AllowedChoices: []string{},
Autogenerated: true,
ConvertedName: "Error",
Description: `Error that occurred during resolution.`,
Exposed: true,
Name: "error",
ReadOnly: true,
Type: "string",
},
"records": elemental.AttributeSpecification{
AllowedChoices: []string{},
Autogenerated: true,
ConvertedName: "Records",
Description: `List of DNS records associated with the IP address.`,
Exposed: true,
Name: "records",
ReadOnly: true,
SubType: "map[string]string",
Type: "external",
},
}
// SparseIPInfosList represents a list of SparseIPInfos
type SparseIPInfosList []*SparseIPInfo
// Identity returns the identity of the objects in the list.
func (o SparseIPInfosList) Identity() elemental.Identity {
return IPInfoIdentity
}
// Copy returns a pointer to a copy the SparseIPInfosList.
func (o SparseIPInfosList) Copy() elemental.Identifiables {
copy := append(SparseIPInfosList{}, o...)
return ©
}
// Append appends the objects to the a new copy of the SparseIPInfosList.
func (o SparseIPInfosList) Append(objects ...elemental.Identifiable) elemental.Identifiables {
out := append(SparseIPInfosList{}, o...)
for _, obj := range objects {
out = append(out, obj.(*SparseIPInfo))
}
return out
}
// List converts the object to an elemental.IdentifiablesList.
func (o SparseIPInfosList) 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 SparseIPInfosList) DefaultOrder() []string {
return []string{}
}
// ToPlain returns the SparseIPInfosList converted to IPInfosList.
func (o SparseIPInfosList) 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 SparseIPInfosList) Version() int {
return 1
}
// SparseIPInfo represents the sparse version of a ipinfo.
type SparseIPInfo struct {
// The IP address.
IP *string `json:"IP,omitempty" msgpack:"IP,omitempty" bson:"-" mapstructure:"IP,omitempty"`
// Error that occurred during resolution.
Error *string `json:"error,omitempty" msgpack:"error,omitempty" bson:"-" mapstructure:"error,omitempty"`
// List of DNS records associated with the IP address.
Records *map[string]string `json:"records,omitempty" msgpack:"records,omitempty" bson:"-" mapstructure:"records,omitempty"`
ModelVersion int `json:"-" msgpack:"-" bson:"_modelversion"`
}
// NewSparseIPInfo returns a new SparseIPInfo.
func NewSparseIPInfo() *SparseIPInfo {
return &SparseIPInfo{}
}
// Identity returns the Identity of the sparse object.
func (o *SparseIPInfo) Identity() elemental.Identity {
return IPInfoIdentity
}
// Identifier returns the value of the sparse object's unique identifier.
func (o *SparseIPInfo) Identifier() string {
return ""
}
// SetIdentifier sets the value of the sparse object's unique identifier.
func (o *SparseIPInfo) SetIdentifier(id string) {
}
// GetBSON implements the bson marshaling interface.
// This is used to transparently convert ID to MongoDBID as ObectID.
func (o *SparseIPInfo) GetBSON() (interface{}, error) {
if o == nil {
return nil, nil
}
s := &mongoAttributesSparseIPInfo{}
return s, nil
}
// SetBSON implements the bson marshaling interface.
// This is used to transparently convert ID to MongoDBID as ObectID.
func (o *SparseIPInfo) SetBSON(raw bson.Raw) error {
if o == nil {
return nil
}
s := &mongoAttributesSparseIPInfo{}
if err := raw.Unmarshal(s); err != nil {
return err
}
return nil
}
// Version returns the hardcoded version of the model.
func (o *SparseIPInfo) Version() int {
return 1
}
// ToPlain returns the plain version of the sparse model.
func (o *SparseIPInfo) ToPlain() elemental.PlainIdentifiable {
out := NewIPInfo()
if o.IP != nil {
out.IP = *o.IP
}
if o.Error != nil {
out.Error = *o.Error
}
if o.Records != nil {
out.Records = *o.Records
}
return out
}
// DeepCopy returns a deep copy if the SparseIPInfo.
func (o *SparseIPInfo) DeepCopy() *SparseIPInfo {
if o == nil {
return nil
}
out := &SparseIPInfo{}
o.DeepCopyInto(out)
return out
}
// DeepCopyInto copies the receiver into the given *SparseIPInfo.
func (o *SparseIPInfo) DeepCopyInto(out *SparseIPInfo) {
target, err := copystructure.Copy(o)
if err != nil {
panic(fmt.Sprintf("Unable to deepcopy SparseIPInfo: %s", err))
}
*out = *target.(*SparseIPInfo)
}
type mongoAttributesIPInfo struct {
}
type mongoAttributesSparseIPInfo struct {
}