-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathentity.go
351 lines (330 loc) · 9.11 KB
/
entity.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
package entity
import (
"bytes"
"encoding/json"
"github.com/goark/errs"
)
type Image struct {
URL string
Height int
Width int
}
type GenInfo struct {
DisplayValue string
Label string `json:",omitempty"`
Locale string `json:",omitempty"`
}
type GenInfoInt struct {
DisplayValue int
Label string `json:",omitempty"`
Locale string `json:",omitempty"`
}
type GenInfoFloat struct {
DisplayValue float64
Label string `json:",omitempty"`
Locale string `json:",omitempty"`
Unit string `json:",omitempty"`
}
type GenInfoTime struct {
DisplayValue Date
Label string `json:",omitempty"`
Locale string `json:",omitempty"`
}
type IdInfo struct {
DisplayValues []string
Label string `json:",omitempty"`
Locale string `json:",omitempty"`
}
type Ancestor struct {
Id string
DisplayName string
ContextFreeName string
Ancestor *Ancestor `json:",omitempty"`
}
type ConditionInfo struct {
DisplayValue string `json:",omitempty"`
Label string `json:",omitempty"`
Locale string `json:",omitempty"`
Value string `json:",omitempty"`
SubCondition *ConditionInfo `json:",omitempty"`
}
type GenPriceInfo struct {
Amount float64 `json:",omitempty"`
Currency string `json:",omitempty"`
DisplayAmount string `json:",omitempty"`
PricePerUnit float64 `json:",omitempty"`
}
type VariationAttribute struct {
Name string `json:",omitempty"`
Value string `json:",omitempty"`
}
type Item struct {
ASIN string
ParentASIN string
DetailPageURL string
CustomerReviews *struct {
Count *int `json:",omitempty"`
StarRating *struct {
Value *float64 `json:",omitempty"`
} `json:",omitempty"`
} `json:",omitempty"`
BrowseNodeInfo *struct {
BrowseNodes []struct {
Id string
DisplayName string
ContextFreeName string
IsRoot bool
SalesRank *int `json:",omitempty"`
Ancestor *Ancestor `json:",omitempty"`
WebsiteSalesRank *struct {
DisplayName string
ContextFreeName string
SalesRank int
} `json:",omitempty"`
} `json:",omitempty"`
} `json:",omitempty"`
Images *struct {
Primary *struct {
Large *Image `json:",omitempty"`
Medium *Image `json:",omitempty"`
Small *Image `json:",omitempty"`
} `json:",omitempty"`
Variants []*struct {
Large *Image `json:",omitempty"`
Medium *Image `json:",omitempty"`
Small *Image `json:",omitempty"`
} `json:",omitempty"`
} `json:",omitempty"`
ItemInfo *struct {
ByLineInfo *struct {
Brand *GenInfo `json:",omitempty"`
Manufacturer *GenInfo `json:",omitempty"`
Contributors []struct {
Name string
Locale string
Role string
}
} `json:",omitempty"`
Classifications *struct {
Binding GenInfo
ProductGroup GenInfo
} `json:",omitempty"`
ContentInfo *struct {
Edition *GenInfo `json:",omitempty"`
Languages struct {
DisplayValues []struct {
DisplayValue string
Type string
}
Label string
Locale string
}
PagesCount struct {
DisplayValue int
Label string
Locale string
}
PublicationDate GenInfoTime
} `json:",omitempty"`
ContentRating *struct {
AudienceRating GenInfo
} `json:",omitempty"`
ExternalIds *struct {
EANs *IdInfo `json:",omitempty"`
ISBNs *IdInfo `json:",omitempty"`
UPCs *IdInfo `json:",omitempty"`
} `json:",omitempty"`
Features *IdInfo `json:",omitempty"`
ManufactureInfo *struct {
ItemPartNumber *GenInfo `json:",omitempty"`
Model *GenInfo `json:",omitempty"`
Warranty *GenInfo `json:",omitempty"`
} `json:",omitempty"`
ProductInfo *struct {
Color *GenInfo `json:",omitempty"`
IsAdultProduct struct {
DisplayValue bool
Label string
Locale string
}
ItemDimensions *struct {
Height *GenInfoFloat `json:",omitempty"`
Length *GenInfoFloat `json:",omitempty"`
Weight *GenInfoFloat `json:",omitempty"`
Width *GenInfoFloat `json:",omitempty"`
} `json:",omitempty"`
ReleaseDate *GenInfoTime `json:",omitempty"`
Size *GenInfo `json:",omitempty"`
UnitCount *GenInfoInt `json:",omitempty"`
} `json:",omitempty"`
TechnicalInfo *struct {
Formats IdInfo
} `json:",omitempty"`
Title *GenInfo `json:",omitempty"`
TradeInInfo *struct {
IsEligibleForTradeIn bool
Price struct {
DisplayAmount string
Amount float64
Currency string
}
} `json:",omitempty"`
VariationAttributes []VariationAttribute `json:",omitempty"`
}
Offers *struct {
Listings *[]struct {
Availability *struct {
MaxOrderQuantity int
Message string
MinOrderQuantity int
Type string
} `json:",omitempty"`
Condition *ConditionInfo `json:",omitempty"`
DeliveryInfo *struct {
IsAmazonFulfilled bool `json:",omitempty"`
IsFreeShippingEligible bool `json:",omitempty"`
IsPrimeEligible bool `json:",omitempty"`
} `json:",omitempty"`
ID string `json:"Id"`
IsBuyboxWinner bool
LoyaltyPoints *struct {
Points int
} `json:",omitempty"`
MerchantInfo *struct {
DefaultShippingCountry string
FeedbackCount int
FeedbackRating float64
ID string `json:"Id"`
Name string
} `json:",omitempty"`
Price *struct {
*GenPriceInfo `json:",omitempty"`
Savings *struct {
Amount float64
Currency string
DisplayAmount string
Percentage int
PricePerUnit float64
} `json:",omitempty"`
} `json:",omitempty"`
ProgramEligibility *struct {
IsPrimeExclusive bool
IsPrimePantry bool
} `json:",omitempty"`
Promotions *[]struct {
Amount float64
Currency string
DiscountPercent json.Number
DisplayAmount string
PricePerUnit float64
Type string
} `json:",omitempty"`
SavingBasis *GenPriceInfo `json:",omitempty"`
ViolateMAP bool
} `json:",omitempty"`
Summaries *[]struct {
Condition *ConditionInfo `json:",omitempty"`
HighestPrice *GenPriceInfo `json:",omitempty"`
LowestPrice *GenPriceInfo `json:",omitempty"`
OfferCount int
} `json:",omitempty"`
} `json:",omitempty"`
}
type Refinement struct {
Id string
DisplayName string
Bins []struct {
Id string
DisplayName string
} `json:",omitempty"`
}
type Price struct {
DisplayAmount string
Amount float64
Currency string
}
type VariationDimension struct {
DisplayName string
Name string
Values []string
}
type Response struct {
Errors []struct {
Code string
Message string
} `json:",omitempty"`
ItemsResult *struct {
Items []Item `json:",omitempty"`
} `json:",omitempty"`
SearchResult *struct {
Items []Item `json:",omitempty"`
SearchRefinements *struct {
SearchIndex *Refinement `json:",omitempty"`
BrowseNode *Refinement `json:",omitempty"`
OtherRefinements []Refinement `json:",omitempty"`
} `json:",omitempty"`
SearchURL string
TotalResultCount int
} `json:",omitempty"`
VariationsResult *struct {
Items []Item `json:",omitempty"`
VariationSummary *struct {
PageCount int
VariationCount int
Price *struct {
HighestPrice *Price `json:",omitempty"`
LowestPrice *Price `json:",omitempty"`
} `json:",omitempty"`
VariationDimensions []VariationDimension `json:",omitempty"`
} `json:",omitempty"`
} `json:",omitempty"`
BrowseNodesResult *struct {
BrowseNodes []*struct {
Ancestor *Ancestor `json:",omitempty"`
Children []*struct {
Id string
DisplayName string
ContextFreeName string
} `json:",omitempty"`
Id string
DisplayName string
ContextFreeName string
IsRoot bool
} `json:",omitempty"`
} `json:",omitempty"`
}
// DecodeResponse returns array of Response instance from byte buffer
func DecodeResponse(b []byte) (*Response, error) {
rsp := Response{}
if err := json.NewDecoder(bytes.NewReader(b)).Decode(&rsp); err != nil {
return &rsp, errs.Wrap(err, errs.WithContext("JSON", string(b)))
}
return &rsp, nil
}
// JSON returns JSON data from Response instance
func (r *Response) JSON() ([]byte, error) {
b, err := json.Marshal(r)
return b, errs.Wrap(err)
}
// Stringer
func (r *Response) String() string {
b, err := r.JSON()
if err != nil {
return ""
}
return string(b)
}
/* Copyright 2019-2022 Spiegel and contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/