forked from segmentio/gads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcriterion.go
418 lines (377 loc) · 13.8 KB
/
criterion.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
package gads
import (
"encoding/xml"
"fmt"
)
// 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 {
Id int64 `xml:"id,omitempty"`
DayOfWeek string `xml:"dayOfWeek"`
StartHour string `xml:"startHour"`
StartMinute string `xml:"startMinute"`
EndHour string `xml:"endHour"`
EndMinute string `xml:"endMinute"`
}
// 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 {
Id int64 `xml:"id,omitempty"`
AgeRangeType string `xml:"ageRangeType"`
}
type CarrierCriterion struct {
Id int64 `xml:"id,omitempty"`
Name string `xml:"name,emitempty"`
CountryCode string `xml:"countryCode,emitempty"`
}
type ContentLabelCriterion struct {
Id int64 `xml:"id,omitempty"`
ContentLabelType string `xml:"contentLabelType"` // ContentLabelType: "ADULTISH", "BELOW_THE_FOLD", "DP", "EMBEDDED_VIDEO", "GAMES", "JACKASS", "PROFANITY", "TRAGEDY", "VIDEO", "UNKNOWN"
}
type GenderCriterion struct {
Id int64 `xml:"id,omitempty"`
GenderType string `xml:"genderType"` // GenderType: "GENDER_MALE", "GENDER_FEMALE", "GENDER_UNDETERMINED"
}
type KeywordCriterion struct {
Id int64 `xml:"https://adwords.google.com/api/adwords/cm/v201809 id,omitempty"`
Text string `xml:"https://adwords.google.com/api/adwords/cm/v201809 text,omitempty"` // Text: up to 80 characters and ten words
MatchType string `xml:"https://adwords.google.com/api/adwords/cm/v201809 matchType,omitempty"` // MatchType: "EXACT", "PHRASE", "BROAD"
}
// https://developers.google.com/adwords/api/docs/reference/v201809/AdGroupExtensionSettingService.Keyword
// Represents a keyword.
type Keyword struct {
Id int64 `xml:"https://adwords.google.com/api/adwords/cm/v201809 id,omitempty"`
Type CriterionType `xml:"https://adwords.google.com/api/adwords/cm/v201809 type,omitempty"`
CriterionType CriterionType `xml:"https://adwords.google.com/api/adwords/cm/v201809 Criterion.Type,omitempty"`
Text string `xml:"https://adwords.google.com/api/adwords/cm/v201809 text,omitempty"`
MatchType KeywordMatchType `xml:"https://adwords.google.com/api/adwords/cm/v201809 matchType,omitempty"`
}
// https://developers.google.com/adwords/api/docs/reference/v201809/AdGroupExtensionSettingService.KeywordMatchType
// Match type of a keyword. i.e. the way we match a keyword string with search queries.
// EXACT, PHRASE, BROAD
type KeywordMatchType string
// https://developers.google.com/adwords/api/docs/reference/v201809/AdGroupExtensionSettingService.Criterion.Type
// The types of criteria
type CriterionType string
// https://developers.google.com/adwords/api/docs/reference/v201809/AdGroupExtensionSettingService.LocationTargetingStatus
// Enum that represents the different Targeting Status values for a Location criterion.
// ACTIVE, OBSOLETE, PHASING_OUT
type LocationTargetingStatus string
type LanguageCriterion struct {
Id int64 `xml:"https://adwords.google.com/api/adwords/cm/v201809 id,omitempty"`
Code string `xml:"https://adwords.google.com/api/adwords/cm/v201809 code,omitempty"`
Name string `xml:"https://adwords.google.com/api/adwords/cm/v201809 name,omitempty"`
}
// https://developers.google.com/adwords/api/docs/reference/v201809/AdGroupExtensionSettingService.Location
// Represents Location criterion. A criterion of this type can only be created using an ID.
// LocationName:
// DisplayType:
// TargetingStatus: ACTIVE, OBSOLETE, PHASING_OUT
// ParentLocations:
type Location struct {
Id int64 `xml:"https://adwords.google.com/api/adwords/cm/v201809 id,omitempty"`
Type CriterionType `xml:"https://adwords.google.com/api/adwords/cm/v201809 type,omitempty"`
CriterionType CriterionType `xml:"https://adwords.google.com/api/adwords/cm/v201809 Criterion.Type,omitempty"`
LocationName string `xml:"https://adwords.google.com/api/adwords/cm/v201809 locationName,omitempty"`
DisplayType string `xml:"https://adwords.google.com/api/adwords/cm/v201809 displayType,omitempty"`
TargetingStatus LocationTargetingStatus `xml:"https://adwords.google.com/api/adwords/cm/v201809 targetingStatus,omitempty"`
ParentLocations []Location `xml:"https://adwords.google.com/api/adwords/cm/v201809 parentLocations,omitempty"`
}
// MobileAppCategoryId:
// https://developers.google.com/adwords/api/docs/appendix/mobileappcategories
// DisplayName:
type MobileAppCategoryCriterion struct {
Id int64 `xml:"id,omitempty"`
MobileAppCategoryId int64 `xml:"mobileAppCategoryId"`
DisplayName string `xml:"displayName,omitempty"`
}
// AppId: "{platform}-{platform_native_id}"
// DisplayName:
type MobileApplicationCriterion struct {
Id int64 `xml:"id,omitempty"`
AppId string `xml:"appId"`
DisplayName string `xml:"displayName,omitempty"`
}
// DeviceName:
// ManufacturerName:
// DeviceType: DEVICE_TYPE_MOBILE, DEVICE_TYPE_TABLET
// OperatingSystemName:
type MobileDeviceCriterion struct {
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"`
}
// Name:
// OsMajorVersion:
// OsMinorVersion:
// OperatorType: GREATER_THAN_EQUAL_TO, EQUAL_TO, UNKNOWN
type OperatingSystemVersionCriterion struct {
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"`
}
// Url:
type PlacementCriterion struct {
Id int64 `xml:"id,omitempty"`
Url string `xml:"url"`
}
// PlatformId:
// Desktop 30000
// HighEndMobile 30001
// Tablet 30002
type PlatformCriterion struct {
Id int64 `xml:"id,omitempty"`
PlatformName string `xml:"platformName,omitempty"`
}
// Argument:
// Operand: id, product_type, brand, adwords_grouping, condition, adwords_labels
type ProductCondition struct {
Argument string `xml:"argument"`
Operand string `xml:"operand"`
}
type ProductCriterion struct {
Id int64 `xml:"id,omitempty"`
Conditions []ProductCondition `xml:"conditions"`
Text string `xml:"text,omitempty"`
}
// Represents a google_product_category level
type ProductBiddingCategory ProductDimension
type ProductBiddingCategoryData struct {
DimensionValue ProductBiddingCategory `xml:"dimensionValue"`
ParentDimensionValue ProductBiddingCategory `xml:"parentDimensionValue"`
Country string `xml:"country"`
Status string `xml:"status"`
DisplayValue []StringMapEntry `xml:"displayValue"`
}
type StringMapEntry struct {
Key string `xml:"key"`
Value string `xml:"value"`
}
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"`
}
type ProductDimension struct {
Type string `xml:"ProductDimension.Type"`
DimensionType string `xml:"type"`
Value string `xml:"value"`
}
type ProductPartition struct {
Id int64 `xml:"id,omitempty"`
CriteriaType string `xml:"type"`
PartitionType string `xml:"partitionType,omitempty"`
ParentCriterionId int64 `xml:"parentCriterionId,omitempty"`
Dimension ProductDimension `xml:"caseValue"`
Cpc *Cpc // This value is inherited from BiddableAdgroupCriterion
}
type ProductScope struct {
Id int64 `xml:"id,omitempty"`
CriteriaType string `xml:"type"`
Dimensions []ProductDimension `xml:"dimensions"`
}
// RadiusDistanceUnits: KILOMETERS, MILES
// RadiusUnits:
type ProximityCriterion struct {
Id int64 `xml:"id,omitempty"`
GeoPoint GeoPoint `xml:"geoPoint"`
RadiusDistanceUnits string `xml:"radiusDistanceUnits"`
RadiusInUnits float64 `xml:"radiusInUnits"`
Address Address `xml:"address"`
}
type UserInterestCriterion struct {
Id int64 `xml:"userInterestId,omitempty"`
Name string `xml:"userInterestName"`
}
type UserListCriterion struct {
Id int64 `xml:"id,omitempty"`
UserListId int64 `xml:"userListId"`
UserListName string `xml:"userListName"`
UserListMembershipStatus string `xml:"userListMembershipStatus"`
}
type VerticalCriterion struct {
Id int64 `xml:"verticalId,omitempty"`
ParentId int64 `xml:"verticalParentId"`
Path []string `xml:"path"`
}
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 {
Id int64 `xml:"id,omitempty"`
Parameter WebpageParameter `xml:"parameter"`
CriteriaCoverage float64 `xml:"criteriaCoverage"`
CriteriaSamples []string `xml:"criteriaSamples"`
}
type Criterion interface{}
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{}
err := dec.DecodeElement(&c, &start)
return c, err
case "AgeRange":
c := AgeRangeCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
case "Carrier":
c := CarrierCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
case "ContentLabel":
c := ContentLabelCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
case "Gender":
c := GenderCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
case "Keyword":
c := KeywordCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
case "Language":
c := LanguageCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
case "Location":
c := Location{}
err := dec.DecodeElement(&c, &start)
return c, err
case "MobileAppCategory":
c := MobileAppCategoryCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
case "MobileApplication":
c := MobileApplicationCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
case "MobileDevice":
c := MobileDeviceCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
case "OperatingSystemVersion":
c := OperatingSystemVersionCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
case "Placement":
c := PlacementCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
case "Platform":
c := PlatformCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
case "Product":
c := ProductCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
case "ProductPartition":
c := ProductPartition{}
err := dec.DecodeElement(&c, &start)
return c, err
case "ProductScope":
c := ProductScope{}
err := dec.DecodeElement(&c, &start)
return c, err
case "Proximity":
c := ProximityCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
case "CriterionUserInterest":
c := UserInterestCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
case "CriterionUserList":
c := UserListCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
case "Vertical":
c := VerticalCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
case "Webpage":
c := WebpageCriterion{}
err := dec.DecodeElement(&c, &start)
return c, err
default:
return nil, fmt.Errorf("unknown criterion type %#v", criterionType)
}
}
func criterionMarshalXML(c Criterion, e *xml.Encoder) error {
criterionType := ""
switch t := c.(type) {
case AdScheduleCriterion:
criterionType = "AdSchedule"
case AgeRangeCriterion:
criterionType = "AgeRange"
case CarrierCriterion:
criterionType = "Carrier"
case ContentLabelCriterion:
criterionType = "ContentLabel"
case GenderCriterion:
criterionType = "Gender"
case KeywordCriterion:
criterionType = "Keyword"
case LanguageCriterion:
criterionType = "Language"
case Location:
criterionType = "Location"
case MobileAppCategoryCriterion:
criterionType = "MobileAppCategory"
case MobileApplicationCriterion:
criterionType = "MobileApplication"
case MobileDeviceCriterion:
criterionType = "MobileDevice"
case OperatingSystemVersionCriterion:
criterionType = "OperatingSystemVersion"
case PlacementCriterion:
criterionType = "Placement"
case PlatformCriterion:
criterionType = "Platform"
case ProductCriterion:
criterionType = "Product"
case ProximityCriterion:
criterionType = "Proximity"
case UserInterestCriterion:
criterionType = "CriterionUserInterest"
case UserListCriterion:
criterionType = "CriterionUserList"
case VerticalCriterion:
criterionType = "Vertical"
case WebpageCriterion:
criterionType = "Webpage"
default:
return fmt.Errorf("unknown criterion type %#v\n", t)
}
e.EncodeElement(&c, xml.StartElement{
xml.Name{baseUrl, "criterion"},
[]xml.Attr{
xml.Attr{xml.Name{"http://www.w3.org/2001/XMLSchema-instance", "type"}, criterionType},
},
})
return nil
}