forked from emiddleton/gads
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcriterion.go
More file actions
563 lines (487 loc) · 14.9 KB
/
criterion.go
File metadata and controls
563 lines (487 loc) · 14.9 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
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
package gads
import (
"encoding/xml"
"fmt"
)
// AdScheduleCriterion struct
// DayOfWeek: MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
// StartHour: 0~23 inclusive
// StartMinute: ZERO, FIFTEEN, THIRTY, FORTY_FIVE
// EndHour: 0~24 inclusive
// EndMinute: ZERO, FIFTEEN, THIRTY, FORTY_FIVE
type AdScheduleCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
DayOfWeek string `xml:"dayOfWeek,omitempty"`
StartHour string `xml:"startHour,omitempty"`
StartMinute string `xml:"startMinute,omitempty"`
EndHour string `xml:"endHour,omitempty"`
EndMinute string `xml:"endMinute,omitempty"`
}
func (c AdScheduleCriterion) GetType() string {
return "AdSchedule"
}
func (c AdScheduleCriterion) GetID() int64 {
return c.Id
}
// AgeRangeType: AGE_RANGE_18_24, AGE_RANGE_25_34, AGE_RANGE_35_44, AGE_RANGE_45_54, AGE_RANGE_55_64, AGE_RANGE_65_UP, AGE_RANGE_UNDETERMINED, UNKNOWN
type AgeRangeCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
AgeRangeType string `xml:"ageRangeType"`
}
func (c AgeRangeCriterion) GetType() string {
return "AgeRange"
}
func (c AgeRangeCriterion) GetID() int64 {
return c.Id
}
type CarrierCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
Name string `xml:"name,emitempty"`
CountryCode string `xml:"countryCode,emitempty"`
}
func (c CarrierCriterion) GetType() string {
return "Carrier"
}
func (c CarrierCriterion) GetID() int64 {
return c.Id
}
type ContentLabelCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
ContentLabelType string `xml:"contentLabelType"` // ContentLabelType: "ADULTISH", "AFE", "BELOW_THE_FOLD", "CONFLICT", "DP", "EMBEDDED_VIDEO", "GAMES", "JACKASS", "PROFANITY", "UGC_FORUMS", "UGC_IMAGES", "UGC_SOCIAL", "UGC_VIDEOS", "SIRENS", "TRAGEDY", "VIDEO", "UNKNOWN"
}
func (c ContentLabelCriterion) GetType() string {
return "ContentLabel"
}
func (c ContentLabelCriterion) GetID() int64 {
return c.Id
}
type GenderCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
GenderType string `xml:"genderType"` // GenderType: "GENDER_MALE", "GENDER_FEMALE", "GENDER_UNDETERMINED"
}
func (c GenderCriterion) GetType() string {
return "Gender"
}
func (c GenderCriterion) GetID() int64 {
return c.Id
}
type KeywordCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
Text string `xml:"text,omitempty"` // Text: up to 80 characters and ten words
MatchType string `xml:"matchType,omitempty"` // MatchType: "EXACT", "PHRASE", "BROAD"
}
func (c KeywordCriterion) GetType() string {
return "Keyword"
}
func (c KeywordCriterion) GetID() int64 {
return c.Id
}
type LanguageCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
Code string `xml:"code,omitempty"`
Name string `xml:"name,omitempty"`
}
func (c LanguageCriterion) GetType() string {
return "Language"
}
func (c LanguageCriterion) GetID() int64 {
return c.Id
}
// LocationName:
// DisplayType:
// TargetingStatus: ACTIVE, OBSOLETE, PHASING_OUT
// ParentLocations:
type Location struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
LocationName string `xml:"locationName,omitempty"`
DisplayType string `xml:"displayType,omitempty"`
TargetingStatus string `xml:"targetingStatus,omitempty"`
ParentLocations []Location `xml:"parentLocations,omitempty"`
}
func (c Location) GetID() int64 {
return c.Id
}
// MobileAppCategoryId:
// https://developers.google.com/adwords/api/docs/appendix/mobileappcategories
// DisplayName:
type MobileAppCategoryCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
MobileAppCategoryId int64 `xml:"mobileAppCategoryId"`
DisplayName string `xml:"displayName,omitempty"`
}
func (c MobileAppCategoryCriterion) GetType() string {
return "MobileAppCategory"
}
func (c MobileAppCategoryCriterion) GetID() int64 {
return c.Id
}
// AppId: "{platform}-{platform_native_id}"
// DisplayName:
type MobileApplicationCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
AppId string `xml:"appId"`
DisplayName string `xml:"displayName,omitempty"`
}
func (c MobileApplicationCriterion) GetType() string {
return "MobileApplication"
}
func (c MobileApplicationCriterion) GetID() int64 {
return c.Id
}
// DeviceName:
// ManufacturerName:
// DeviceType: DEVICE_TYPE_MOBILE, DEVICE_TYPE_TABLET
// OperatingSystemName:
type MobileDeviceCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
DeviceName string `xml:"deviceName,omitempty"`
ManufacturerName string `xml:"manufacturerName,omitempty"`
DeviceType string `xml:"deviceType,omitempty"`
OperatingSystemName string `xml:"operatingSystemName,omitempty"`
}
func (c MobileDeviceCriterion) GetType() string {
return "MobileDevice"
}
func (c MobileDeviceCriterion) GetID() int64 {
return c.Id
}
// Name:
// OsMajorVersion:
// OsMinorVersion:
// OperatorType: GREATER_THAN_EQUAL_TO, EQUAL_TO, UNKNOWN
type OperatingSystemVersionCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
Name string `xml:"name,omitempty"`
OsMajorVersion int64 `xml:"osMajorVersion,omitempty"`
OsMinorVersion int64 `xml:"osMinorVersion,omitempty"`
OperatorType string `xml:"operatorType,omitempty"`
}
func (c OperatingSystemVersionCriterion) GetType() string {
return "OperatingSystemVersion"
}
func (c OperatingSystemVersionCriterion) GetID() int64 {
return c.Id
}
// Url:
type PlacementCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
Url string `xml:"url"`
}
func (c PlacementCriterion) GetType() string {
return "Placement"
}
func (c PlacementCriterion) GetID() int64 {
return c.Id
}
// PlatformId:
// Desktop 30000
// HighEndMobile 30001
// Tablet 30002
type PlatformCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
PlatformName string `xml:"platformName,omitempty"`
}
func (c PlatformCriterion) GetType() string {
return "Platform"
}
func (c PlatformCriterion) GetID() int64 {
return c.Id
}
// Argument:
// Operand: id, product_type, brand, adwords_grouping, condition, adwords_labels
type ProductCondition struct {
Argument string `xml:"argument"`
Operand string `xml:"operand"`
}
func (c ProductCriterion) GetID() int64 {
return c.Id
}
type ProductCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
Conditions []ProductCondition `xml:"conditions,omitempty"`
Text string `xml:"text,omitempty"`
}
func (c ProductCriterion) GetType() string {
return "Product"
}
type ProductDimension struct {
Type string `xml:"xsi:type,attr,omitempty"`
CategoryType string `xml:"type,omitempty"`
Value string `xml:"value,omitempty"`
}
// UnmarshalXML special case of unmarshall to manage xsi:type
// work on Marshal not in Unmarshal
func (pd *ProductDimension) UnmarshalXML(dec *xml.Decoder, start xml.StartElement) error {
typeValue, err := findAttr(start.Attr, xml.Name{Space: "http://www.w3.org/2001/XMLSchema-instance", Local: "type"})
if err != nil {
return err
}
pd.Type = typeValue
for token, err := dec.Token(); err == nil; token, err = dec.Token() {
if err != nil {
return err
}
switch start := token.(type) {
case xml.StartElement:
switch start.Name.Local {
case "type":
if err := dec.DecodeElement(&pd.CategoryType, &start); err != nil {
return err
}
case "value":
if err := dec.DecodeElement(&pd.Value, &start); err != nil {
return err
}
}
}
}
return nil
}
func (c ProductDimension) GetType() string {
return c.Type
}
func NewProductOfferId(value string) *ProductDimension {
return &ProductDimension{Type: "ProductOfferId", Value: value}
}
// ProductPartitionCriterion is a criterion representing a group of
// items - Use the Type : ProductPartition
const (
ProductPartitionCriterionTypeUnit = "UNIT"
ProductPartitionCriterionTypeSubdivision = "SUBDIVISION"
)
type ProductPartitionCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
PartitionType *string `xml:"partitionType,omitempty"`
ParentCriterionId *int64 `xml:"parentCriterionId,omitempty"`
CaseValue *ProductDimension `xml:"caseValue,omitempty"`
}
func (c ProductPartitionCriterion) GetType() string {
return "ProductPartition"
}
// GetID returns the current identifier of the criterion
func (c ProductPartitionCriterion) GetID() int64 {
return c.Id
}
type GeoPoint struct {
Latitude int64 `xml:"latitudeInMicroDegrees"`
Longitude int64 `xml:"longitudeInMicroDegrees"`
}
type Address struct {
StreetAddress string `xml:"streetAddress"`
StreetAddress2 string `xml:"streetAddress2"`
CityName string `xml:"cityName"`
ProvinceCode string `xml:"provinceCode"`
ProvinceName string `xml:"provinceName"`
PostalCode string `xml:"postalCode"`
CountryCode string `xml:"countryCode"`
}
// RadiusDistanceUnits: KILOMETERS, MILES
// RadiusUnits:
type ProximityCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
GeoPoint GeoPoint `xml:"geoPoint"`
RadiusDistanceUnits string `xml:"radiusDistanceUnits"`
RadiusInUnits float64 `xml:"radiusInUnits"`
Address Address `xml:"address"`
}
func (c ProximityCriterion) GetID() int64 {
return c.Id
}
func (c ProximityCriterion) GetType() string {
return "Proximity"
}
type UserInterestCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"userInterestId,omitempty"`
Name string `xml:"userInterestName"`
}
func (c UserInterestCriterion) GetType() string {
return "CriterionUserInterest"
}
func (c UserInterestCriterion) GetID() int64 {
return c.Id
}
type UserListCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
UserListId int64 `xml:"userListId"`
UserListName string `xml:"userListName,omitempty"`
UserListMembershipStatus string `xml:"userListMembershipStatus,omitempty"`
}
func (c UserListCriterion) GetType() string {
return "CriterionUserList"
}
func (c UserListCriterion) GetID() int64 {
return c.Id
}
type VerticalCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"verticalId,omitempty"`
ParentId int64 `xml:"verticalParentId"`
Path []string `xml:"path"`
}
func (c VerticalCriterion) GetType() string {
return "Vertical"
}
func (c VerticalCriterion) GetID() int64 {
return c.Id
}
type WebpageCondition struct {
Operand string `xml:"operand"`
Argument string `xml:"argument"`
}
type WebpageParameter struct {
CriterionName string `xml:"criterionName"`
Conditions []WebpageCondition `xml:"conditions"`
}
type WebpageCriterion struct {
Type string `xml:"xsi:type,attr,omitempty"`
Id int64 `xml:"id,omitempty"`
Parameter WebpageParameter `xml:"parameter"`
CriteriaCoverage float64 `xml:"criteriaCoverage"`
CriteriaSamples []string `xml:"criteriaSamples"`
}
func (c WebpageCriterion) GetType() string {
return "Webpage"
}
func (c WebpageCriterion) GetID() int64 {
return c.Id
}
type Criterion interface {
GetID() int64
}
func criterionUnmarshalXML(dec *xml.Decoder, start xml.StartElement) (Criterion, error) {
criterionType, err := findAttr(start.Attr, xml.Name{Space: "http://www.w3.org/2001/XMLSchema-instance", Local: "type"})
if err != nil {
return nil, err
}
switch criterionType {
case "AdSchedule":
c := AdScheduleCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "AgeRange":
c := AgeRangeCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "Carrier":
c := CarrierCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "ContentLabel":
c := ContentLabelCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "Gender":
c := GenderCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "Keyword":
c := KeywordCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "Language":
c := LanguageCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "MobileAppCategory":
c := MobileAppCategoryCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "MobileApplication":
c := MobileApplicationCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "MobileDevice":
c := MobileDeviceCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "OperatingSystemVersion":
c := OperatingSystemVersionCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "Placement":
c := PlacementCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "Platform":
c := PlatformCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "Product":
c := ProductCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "ProductPartition":
c := ProductPartitionCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "Proximity":
c := ProximityCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "CriterionUserInterest":
c := UserInterestCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "CriterionUserList":
c := UserListCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "Location":
c := Location{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "Vertical":
c := VerticalCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
case "Webpage":
c := WebpageCriterion{}
c.Type = criterionType
err := dec.DecodeElement(&c, &start)
return c, err
default:
if StrictMode {
return nil, fmt.Errorf("unknown criterion type %#v", criterionType)
}
return nil, nil
}
}