package main import ( "context" "encoding/json" "io" "io/ioutil" "net/http" "net/url" "strings" "time" "github.com/Luzifer/go_helpers/v2/backoff" "github.com/pkg/errors" ) const ( twitchAPIRequestLimit = 5 twitchAPIRequestTimeout = 2 * time.Second ) type ( twitchAdapter struct { clientID string token string } twitchStreamSchedule struct { Data struct { Segments []struct { ID string `json:"id"` StartTime *time.Time `json:"start_time"` EndTime *time.Time `json:"end_time"` Title string `json:"title"` CanceledUntil *time.Time `json:"canceled_until"` Category *struct { ID string `json:"id"` Name string `json:"name"` } `json:"category"` IsRecurring bool `json:"is_recurring"` } `json:"segments"` BroadcasterID string `json:"broadcaster_id"` BroadcasterName string `json:"broadcaster_name"` BroadcasterLogin string `json:"broadcaster_login"` Vacation *struct { StartTime *time.Time `json:"start_time"` EndTime *time.Time `json:"end_time"` } `json:"vacation"` } `json:"data"` Pagination struct { Cursor string `json:"cursor"` } `json:"pagination"` } ) func newTwitchAdapter(clientID, token string) *twitchAdapter { return &twitchAdapter{ clientID: clientID, token: token, } } func (t twitchAdapter) GetChannelStreamSchedule(ctx context.Context, broadcasterID string, startTime *time.Time) (*twitchStreamSchedule, error) { out := &twitchStreamSchedule{} params := make(url.Values) params.Set("broadcaster_id", broadcasterID) if startTime != nil { params.Set("start_time", startTime.Format(time.RFC3339)) } return out, backoff.NewBackoff(). WithMaxIterations(twitchAPIRequestLimit). Retry(func() error { return errors.Wrap( t.request(ctx, http.MethodGet, "/helix/schedule", params, nil, out), "fetching schedule", ) }) } func (t twitchAdapter) request(ctx context.Context, method, path string, params url.Values, body io.Reader, output interface{}) error { ctxTimed, cancel := context.WithTimeout(ctx, twitchAPIRequestTimeout) defer cancel() u, _ := url.Parse(strings.Join([]string{ "https://api.twitch.tv", strings.TrimLeft(path, "/"), }, "/")) if params != nil { u.RawQuery = params.Encode() } req, _ := http.NewRequestWithContext(ctxTimed, method, u.String(), body) req.Header.Set("Authorization", strings.Join([]string{"Bearer", t.token}, " ")) req.Header.Set("Client-Id", t.clientID) resp, err := http.DefaultClient.Do(req) if err != nil { return errors.Wrap(err, "fetching response") } defer resp.Body.Close() if resp.StatusCode != http.StatusOK { body, err := ioutil.ReadAll(resp.Body) if err != nil { return errors.Wrapf(err, "unexpected status %d and cannot read body", resp.StatusCode) } return errors.Errorf("unexpected status %d: %s", resp.StatusCode, body) } if output == nil { return nil } return errors.Wrap( json.NewDecoder(resp.Body).Decode(output), "decoding response", ) }