-
-
Notifications
You must be signed in to change notification settings - Fork 296
/
request_requestgen.go
288 lines (233 loc) · 6.17 KB
/
request_requestgen.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
// Code generated by "requestgen -method GET -type Request -url /v1/metrics/:category/:metric -responseType DataSlice"; DO NOT EDIT.
package glassnodeapi
import (
"context"
"encoding/json"
"fmt"
"net/url"
"reflect"
"regexp"
"strconv"
"time"
)
func (r *Request) SetAsset(Asset string) *Request {
r.Asset = Asset
return r
}
func (r *Request) SetSince(Since time.Time) *Request {
r.Since = &Since
return r
}
func (r *Request) SetUntil(Until time.Time) *Request {
r.Until = &Until
return r
}
func (r *Request) SetInterval(Interval Interval) *Request {
r.Interval = &Interval
return r
}
func (r *Request) SetFormat(Format Format) *Request {
r.Format = &Format
return r
}
func (r *Request) SetCurrency(Currency string) *Request {
r.Currency = &Currency
return r
}
func (r *Request) SetTimestampFormat(TimestampFormat string) *Request {
r.TimestampFormat = &TimestampFormat
return r
}
func (r *Request) SetCategory(Category string) *Request {
r.Category = Category
return r
}
func (r *Request) SetMetric(Metric string) *Request {
r.Metric = Metric
return r
}
// GetQueryParameters builds and checks the query parameters and returns url.Values
func (r *Request) GetQueryParameters() (url.Values, error) {
var params = map[string]interface{}{}
// check Asset field -> json key a
Asset := r.Asset
// TEMPLATE check-required
if len(Asset) == 0 {
return nil, fmt.Errorf("a is required, empty string given")
}
// END TEMPLATE check-required
// assign parameter of Asset
params["a"] = Asset
// check Since field -> json key s
if r.Since != nil {
Since := *r.Since
// assign parameter of Since
// convert time.Time to seconds time stamp
params["s"] = strconv.FormatInt(Since.Unix(), 10)
} else {
}
// check Until field -> json key u
if r.Until != nil {
Until := *r.Until
// assign parameter of Until
// convert time.Time to seconds time stamp
params["u"] = strconv.FormatInt(Until.Unix(), 10)
} else {
}
// check Interval field -> json key i
if r.Interval != nil {
Interval := *r.Interval
// TEMPLATE check-valid-values
switch Interval {
case Interval1h, Interval24h, Interval10m, Interval1w, Interval1m:
params["i"] = Interval
default:
return nil, fmt.Errorf("i value %v is invalid", Interval)
}
// END TEMPLATE check-valid-values
// assign parameter of Interval
params["i"] = Interval
} else {
}
// check Format field -> json key f
if r.Format != nil {
Format := *r.Format
// TEMPLATE check-valid-values
switch Format {
case FormatJSON, FormatCSV:
params["f"] = Format
default:
return nil, fmt.Errorf("f value %v is invalid", Format)
}
// END TEMPLATE check-valid-values
// assign parameter of Format
params["f"] = Format
} else {
Format := "JSON"
// assign parameter of Format
params["f"] = Format
}
// check Currency field -> json key c
if r.Currency != nil {
Currency := *r.Currency
// assign parameter of Currency
params["c"] = Currency
} else {
}
// check TimestampFormat field -> json key timestamp_format
if r.TimestampFormat != nil {
TimestampFormat := *r.TimestampFormat
// assign parameter of TimestampFormat
params["timestamp_format"] = TimestampFormat
} else {
}
query := url.Values{}
for _k, _v := range params {
query.Add(_k, fmt.Sprintf("%v", _v))
}
return query, nil
}
// GetParameters builds and checks the parameters and return the result in a map object
func (r *Request) GetParameters() (map[string]interface{}, error) {
var params = map[string]interface{}{}
return params, nil
}
// GetParametersQuery converts the parameters from GetParameters into the url.Values format
func (r *Request) GetParametersQuery() (url.Values, error) {
query := url.Values{}
params, err := r.GetParameters()
if err != nil {
return query, err
}
for _k, _v := range params {
if r.isVarSlice(_v) {
r.iterateSlice(_v, func(it interface{}) {
query.Add(_k+"[]", fmt.Sprintf("%v", it))
})
} else {
query.Add(_k, fmt.Sprintf("%v", _v))
}
}
return query, nil
}
// GetParametersJSON converts the parameters from GetParameters into the JSON format
func (r *Request) GetParametersJSON() ([]byte, error) {
params, err := r.GetParameters()
if err != nil {
return nil, err
}
return json.Marshal(params)
}
// GetSlugParameters builds and checks the slug parameters and return the result in a map object
func (r *Request) GetSlugParameters() (map[string]interface{}, error) {
var params = map[string]interface{}{}
// check Category field -> json key category
Category := r.Category
// assign parameter of Category
params["category"] = Category
// check Metric field -> json key metric
Metric := r.Metric
// assign parameter of Metric
params["metric"] = Metric
return params, nil
}
func (r *Request) applySlugsToUrl(url string, slugs map[string]string) string {
for _k, _v := range slugs {
needleRE := regexp.MustCompile(":" + _k + "\\b")
url = needleRE.ReplaceAllString(url, _v)
}
return url
}
func (r *Request) iterateSlice(slice interface{}, _f func(it interface{})) {
sliceValue := reflect.ValueOf(slice)
for _i := 0; _i < sliceValue.Len(); _i++ {
it := sliceValue.Index(_i).Interface()
_f(it)
}
}
func (r *Request) isVarSlice(_v interface{}) bool {
rt := reflect.TypeOf(_v)
switch rt.Kind() {
case reflect.Slice:
return true
}
return false
}
func (r *Request) GetSlugsMap() (map[string]string, error) {
slugs := map[string]string{}
params, err := r.GetSlugParameters()
if err != nil {
return slugs, nil
}
for _k, _v := range params {
slugs[_k] = fmt.Sprintf("%v", _v)
}
return slugs, nil
}
func (r *Request) Do(ctx context.Context) (DataSlice, error) {
// no body params
var params interface{}
query, err := r.GetQueryParameters()
if err != nil {
return nil, err
}
apiURL := "/v1/metrics/:category/:metric"
slugs, err := r.GetSlugsMap()
if err != nil {
return nil, err
}
apiURL = r.applySlugsToUrl(apiURL, slugs)
req, err := r.Client.NewAuthenticatedRequest(ctx, "GET", apiURL, query, params)
if err != nil {
return nil, err
}
response, err := r.Client.SendRequest(req)
if err != nil {
return nil, err
}
var apiResponse DataSlice
if err := response.DecodeJSON(&apiResponse); err != nil {
return nil, err
}
return apiResponse, nil
}