-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathhelix.go
475 lines (379 loc) · 11.2 KB
/
helix.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
package helix
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"reflect"
"strconv"
"strings"
"sync"
"time"
)
const (
// DefaultAPIBaseURL is the base URL for composing API requests.
DefaultAPIBaseURL = "https://api.twitch.tv/helix"
// AuthBaseURL is the base URL for composing authentication requests.
AuthBaseURL = "https://id.twitch.tv/oauth2"
)
type HTTPClient interface {
Do(req *http.Request) (*http.Response, error)
}
type Client struct {
mu sync.RWMutex
ctx context.Context
opts *Options
lastResponse *Response
}
type Options struct {
ClientID string
ClientSecret string
AppAccessToken string
UserAccessToken string
UserAgent string
RedirectURI string
HTTPClient HTTPClient
RateLimitFunc RateLimitFunc
APIBaseURL string
ExtensionOpts ExtensionOptions
}
type ExtensionOptions struct {
OwnerUserID string
Secret string
SignedJWTToken string
}
// DateRange is a generic struct used by various responses.
type DateRange struct {
StartedAt Time `json:"started_at"`
EndedAt Time `json:"ended_at"`
}
type RateLimitFunc func(*Response) error
type ResponseCommon struct {
StatusCode int
Header http.Header
Error string `json:"error"`
ErrorStatus int `json:"status"`
ErrorMessage string `json:"message"`
}
func (rc *ResponseCommon) convertHeaderToInt(str string) int {
i, _ := strconv.Atoi(str)
return i
}
// GetRateLimit returns the "RateLimit-Limit" header as an int.
func (rc *ResponseCommon) GetRateLimit() int {
return rc.convertHeaderToInt(rc.Header.Get("RateLimit-Limit"))
}
// GetRateLimitRemaining returns the "RateLimit-Remaining" header as an int.
func (rc *ResponseCommon) GetRateLimitRemaining() int {
return rc.convertHeaderToInt(rc.Header.Get("RateLimit-Remaining"))
}
// GetRateLimitReset returns the "RateLimit-Reset" header as an int.
func (rc *ResponseCommon) GetRateLimitReset() int {
return rc.convertHeaderToInt(rc.Header.Get("RateLimit-Reset"))
}
type Response struct {
ResponseCommon
Data interface{}
}
// HydrateResponseCommon copies the content of the source response's ResponseCommon to the supplied ResponseCommon argument
func (r *Response) HydrateResponseCommon(rc *ResponseCommon) {
rc.StatusCode = r.ResponseCommon.StatusCode
rc.Header = r.ResponseCommon.Header
rc.Error = r.ResponseCommon.Error
rc.ErrorStatus = r.ResponseCommon.ErrorStatus
rc.ErrorMessage = r.ResponseCommon.ErrorMessage
}
type Pagination struct {
Cursor string `json:"cursor"`
}
// NewClient returns a new Twitch Helix API client. It returns an
// if clientID is an empty string. It is concurrency safe.
func NewClient(options *Options) (*Client, error) {
return NewClientWithContext(context.Background(), options)
}
func NewClientWithContext(ctx context.Context, options *Options) (*Client, error) {
if options.ClientID == "" {
return nil, errors.New("A client ID was not provided but is required")
}
if options.HTTPClient == nil {
options.HTTPClient = http.DefaultClient
}
if options.APIBaseURL == "" {
options.APIBaseURL = DefaultAPIBaseURL
}
client := &Client{
ctx: ctx,
opts: options,
}
return client, nil
}
func (c *Client) get(path string, respData, reqData interface{}) (*Response, error) {
return c.sendRequest(http.MethodGet, path, respData, reqData, false)
}
func (c *Client) post(path string, respData, reqData interface{}) (*Response, error) {
return c.sendRequest(http.MethodPost, path, respData, reqData, false)
}
func (c *Client) put(path string, respData, reqData interface{}) (*Response, error) {
return c.sendRequest(http.MethodPut, path, respData, reqData, false)
}
func (c *Client) delete(path string, respData, reqData interface{}) (*Response, error) {
return c.sendRequest(http.MethodDelete, path, respData, reqData, false)
}
func (c *Client) patchAsJSON(path string, respData, reqData interface{}) (*Response, error) {
return c.sendRequest(http.MethodPatch, path, respData, reqData, true)
}
func (c *Client) postAsJSON(path string, respData, reqData interface{}) (*Response, error) {
return c.sendRequest(http.MethodPost, path, respData, reqData, true)
}
func (c *Client) putAsJSON(path string, respData, reqData interface{}) (*Response, error) {
return c.sendRequest(http.MethodPut, path, respData, reqData, true)
}
func (c *Client) sendRequest(method, path string, respData, reqData interface{}, hasJSONBody bool) (*Response, error) {
resp := &Response{}
if respData != nil {
resp.Data = respData
}
req, err := c.newRequest(method, path, reqData, hasJSONBody)
if err != nil {
return nil, err
}
err = c.doRequest(req, resp)
if err != nil {
return nil, err
}
return resp, nil
}
func buildQueryString(req *http.Request, v interface{}) (string, error) {
isNil, err := isZero(v)
if err != nil {
return "", err
}
if isNil {
return "", nil
}
query := req.URL.Query()
vType := reflect.TypeOf(v).Elem()
vValue := reflect.ValueOf(v).Elem()
for i := 0; i < vType.NumField(); i++ {
var defaultValue string
field := vType.Field(i)
tag := field.Tag.Get("query")
// Get the default value from the struct tag
if strings.Contains(tag, ",") {
tagSlice := strings.Split(tag, ",")
tag = tagSlice[0]
defaultValue = tagSlice[1]
}
if field.Type.Kind() == reflect.Slice {
// Attach any slices as query params
fieldVal := vValue.Field(i)
for j := 0; j < fieldVal.Len(); j++ {
query.Add(tag, fmt.Sprintf("%v", fieldVal.Index(j)))
}
} else if isDatetimeTagField(tag) {
// Get and correctly format datetime fields, and attach them query params
dateStr := fmt.Sprintf("%v", vValue.Field(i))
if strings.Contains(dateStr, " m=") {
datetimeSplit := strings.Split(dateStr, " m=")
dateStr = datetimeSplit[0]
}
date, err := time.Parse(requestDateTimeFormat, dateStr)
if err != nil {
return "", err
}
// Determine if the date has been set. If it has we'll add it to the query.
if !date.IsZero() {
query.Add(tag, date.Format(time.RFC3339))
}
} else {
// Add any scalar values as query params
fieldVal := fmt.Sprintf("%v", vValue.Field(i))
// If no value was set by the user, use the default
// value specified in the struct tag.
if fieldVal == "" || fieldVal == "0" {
if defaultValue == "" {
continue
}
fieldVal = defaultValue
}
query.Add(tag, fieldVal)
}
}
return query.Encode(), nil
}
func isZero(v interface{}) (bool, error) {
t := reflect.TypeOf(v)
if !t.Comparable() {
return false, fmt.Errorf("type is not comparable: %v", t)
}
return v == reflect.Zero(t).Interface(), nil
}
func (c *Client) newRequest(method, path string, data interface{}, hasJSONBody bool) (*http.Request, error) {
url := c.getBaseURL(path) + path
if hasJSONBody {
return c.newJSONRequest(method, url, data)
}
return c.newStandardRequest(method, url, data)
}
func (c *Client) newStandardRequest(method, url string, data interface{}) (*http.Request, error) {
req, err := http.NewRequestWithContext(c.ctx, method, url, nil)
if err != nil {
return nil, err
}
if data == nil {
return req, nil
}
query, err := buildQueryString(req, data)
if err != nil {
return nil, err
}
req.URL.RawQuery = query
return req, nil
}
func (c *Client) newJSONRequest(method, url string, data interface{}) (*http.Request, error) {
b, err := json.Marshal(data)
if err != nil {
return nil, err
}
buf := bytes.NewBuffer(b)
req, err := http.NewRequestWithContext(c.ctx, method, url, buf)
if err != nil {
return nil, err
}
query, err := buildQueryString(req, data)
if err != nil {
return nil, err
}
req.URL.RawQuery = query
req.Header.Set("Content-Type", "application/json")
return req, nil
}
func (c *Client) getBaseURL(path string) string {
for _, authPath := range authPaths {
if strings.Contains(path, authPath) {
return AuthBaseURL
}
}
return c.opts.APIBaseURL
}
func (c *Client) doRequest(req *http.Request, resp *Response) error {
c.setRequestHeaders(req)
rateLimitFunc := c.opts.RateLimitFunc
for {
if c.lastResponse != nil && rateLimitFunc != nil {
err := rateLimitFunc(c.lastResponse)
if err != nil {
return err
}
}
response, err := c.opts.HTTPClient.Do(req)
if err != nil {
return fmt.Errorf("Failed to execute API request: %s", err.Error())
}
defer response.Body.Close()
resp.Header = response.Header
setResponseStatusCode(resp, "StatusCode", response.StatusCode)
bodyBytes, err := ioutil.ReadAll(response.Body)
if err != nil {
return err
}
// Only attempt to decode the response if we have a response we can handle
if len(bodyBytes) > 0 && resp.StatusCode < http.StatusInternalServerError {
if resp.Data != nil && resp.StatusCode < http.StatusBadRequest {
// Successful request
err = json.Unmarshal(bodyBytes, &resp.Data)
} else {
// Failed request
err = json.Unmarshal(bodyBytes, &resp)
}
if err != nil {
return fmt.Errorf("Failed to decode API response: %s", err.Error())
}
}
if rateLimitFunc == nil {
break
} else {
c.mu.Lock()
c.lastResponse = resp
c.mu.Unlock()
if rateLimitFunc != nil &&
c.lastResponse.StatusCode == http.StatusTooManyRequests {
// Rate limit exceeded, retry to send request after
// applying rate limiter callback
continue
}
break
}
}
return nil
}
func (c *Client) setRequestHeaders(req *http.Request) {
opts := c.opts
req.Header.Set("Client-ID", opts.ClientID)
if opts.UserAgent != "" {
req.Header.Set("User-Agent", opts.UserAgent)
}
var bearerToken string
if opts.AppAccessToken != "" {
bearerToken = opts.AppAccessToken
}
if opts.UserAccessToken != "" {
bearerToken = opts.UserAccessToken
}
if opts.ExtensionOpts.SignedJWTToken != "" {
bearerToken = opts.ExtensionOpts.SignedJWTToken
}
authType := "Bearer"
// Token validation requires different type of Auth
if req.URL.String() == AuthBaseURL+authPaths["validate"] {
authType = "OAuth"
}
if bearerToken != "" {
req.Header.Set("Authorization", fmt.Sprintf("%s %s", authType, bearerToken))
}
}
func setResponseStatusCode(v interface{}, fieldName string, code int) {
s := reflect.ValueOf(v).Elem()
field := s.FieldByName(fieldName)
field.SetInt(int64(code))
}
// GetAppAccessToken returns the current app access token.
func (c *Client) GetAppAccessToken() string {
return c.opts.AppAccessToken
}
func (c *Client) SetAppAccessToken(accessToken string) {
c.mu.Lock()
defer c.mu.Unlock()
c.opts.AppAccessToken = accessToken
}
// GetUserAccessToken returns the current user access token.
func (c *Client) GetUserAccessToken() string {
return c.opts.UserAccessToken
}
func (c *Client) SetUserAccessToken(accessToken string) {
c.mu.Lock()
defer c.mu.Unlock()
c.opts.UserAccessToken = accessToken
}
// GetAppAccessToken returns the current app access token.
func (c *Client) GetExtensionSignedJWTToken() string {
return c.opts.ExtensionOpts.SignedJWTToken
}
func (c *Client) SetExtensionSignedJWTToken(jwt string) {
c.mu.Lock()
defer c.mu.Unlock()
c.opts.ExtensionOpts.SignedJWTToken = jwt
}
func (c *Client) SetUserAgent(userAgent string) {
c.mu.Lock()
defer c.mu.Unlock()
c.opts.UserAgent = userAgent
}
func (c *Client) SetRedirectURI(uri string) {
c.mu.Lock()
defer c.mu.Unlock()
c.opts.RedirectURI = uri
}