2021-08-19 13:33:56 +00:00
|
|
|
package twitch
|
2020-12-24 12:18:30 +00:00
|
|
|
|
|
|
|
import (
|
2021-09-10 17:09:10 +00:00
|
|
|
"bytes"
|
2020-12-24 12:18:30 +00:00
|
|
|
"context"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
2021-09-10 17:09:10 +00:00
|
|
|
"net/url"
|
2021-09-22 13:36:45 +00:00
|
|
|
"strconv"
|
2021-01-20 23:35:42 +00:00
|
|
|
"time"
|
2020-12-24 12:18:30 +00:00
|
|
|
|
2021-06-02 11:21:13 +00:00
|
|
|
"github.com/Luzifer/go_helpers/v2/backoff"
|
2020-12-24 12:18:30 +00:00
|
|
|
"github.com/pkg/errors"
|
2021-03-27 17:55:38 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
2020-12-24 12:18:30 +00:00
|
|
|
)
|
|
|
|
|
2021-06-02 11:21:13 +00:00
|
|
|
const (
|
|
|
|
timeDay = 24 * time.Hour
|
|
|
|
|
2021-09-02 21:28:15 +00:00
|
|
|
twitchMinCacheTime = time.Second * 30
|
|
|
|
|
2021-06-02 11:21:13 +00:00
|
|
|
twitchRequestRetries = 5
|
|
|
|
twitchRequestTimeout = 2 * time.Second
|
|
|
|
)
|
2021-04-03 12:11:47 +00:00
|
|
|
|
2021-09-10 17:09:10 +00:00
|
|
|
type (
|
|
|
|
Category struct {
|
|
|
|
BoxArtURL string `json:"box_art_url"`
|
|
|
|
ID string `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
}
|
2020-12-24 12:18:30 +00:00
|
|
|
|
2021-09-10 17:09:10 +00:00
|
|
|
Client struct {
|
|
|
|
clientID string
|
|
|
|
token string
|
|
|
|
|
|
|
|
apiCache *APICache
|
|
|
|
}
|
2021-09-22 13:36:45 +00:00
|
|
|
|
|
|
|
User struct {
|
|
|
|
DisplayName string `json:"display_name"`
|
|
|
|
ID string `json:"id"`
|
|
|
|
Login string `json:"login"`
|
|
|
|
ProfileImageURL string `json:"profile_image_url"`
|
|
|
|
}
|
2021-09-10 17:09:10 +00:00
|
|
|
)
|
2021-03-27 17:55:38 +00:00
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
func New(clientID, token string) *Client {
|
|
|
|
return &Client{
|
|
|
|
clientID: clientID,
|
|
|
|
token: token,
|
|
|
|
|
2021-04-01 10:28:51 +00:00
|
|
|
apiCache: newTwitchAPICache(),
|
2021-03-27 17:55:38 +00:00
|
|
|
}
|
|
|
|
}
|
2020-12-24 12:18:30 +00:00
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
func (c Client) APICache() *APICache { return c.apiCache }
|
|
|
|
|
|
|
|
func (c Client) GetAuthorizedUsername() (string, error) {
|
2020-12-24 12:18:30 +00:00
|
|
|
var payload struct {
|
2021-09-22 13:36:45 +00:00
|
|
|
Data []User `json:"data"`
|
2020-12-24 12:18:30 +00:00
|
|
|
}
|
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
if err := c.request(
|
2021-06-02 11:21:13 +00:00
|
|
|
context.Background(),
|
|
|
|
http.MethodGet,
|
|
|
|
"https://api.twitch.tv/helix/users",
|
|
|
|
nil,
|
|
|
|
&payload,
|
|
|
|
); err != nil {
|
2020-12-24 12:18:30 +00:00
|
|
|
return "", errors.Wrap(err, "request channel info")
|
|
|
|
}
|
|
|
|
|
|
|
|
if l := len(payload.Data); l != 1 {
|
|
|
|
return "", errors.Errorf("unexpected number of users returned: %d", l)
|
|
|
|
}
|
|
|
|
|
|
|
|
return payload.Data[0].Login, nil
|
|
|
|
}
|
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
func (c Client) GetDisplayNameForUser(username string) (string, error) {
|
2021-05-24 19:42:55 +00:00
|
|
|
cacheKey := []string{"displayNameForUsername", username}
|
2021-08-19 13:33:56 +00:00
|
|
|
if d := c.apiCache.Get(cacheKey); d != nil {
|
2021-05-24 19:42:55 +00:00
|
|
|
return d.(string), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var payload struct {
|
2021-09-22 13:36:45 +00:00
|
|
|
Data []User `json:"data"`
|
2021-05-24 19:42:55 +00:00
|
|
|
}
|
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
if err := c.request(
|
2021-06-02 11:21:13 +00:00
|
|
|
context.Background(),
|
2021-05-24 19:42:55 +00:00
|
|
|
http.MethodGet,
|
|
|
|
fmt.Sprintf("https://api.twitch.tv/helix/users?login=%s", username),
|
|
|
|
nil,
|
|
|
|
&payload,
|
|
|
|
); err != nil {
|
|
|
|
return "", errors.Wrap(err, "request channel info")
|
|
|
|
}
|
|
|
|
|
|
|
|
if l := len(payload.Data); l != 1 {
|
|
|
|
return "", errors.Errorf("unexpected number of users returned: %d", l)
|
|
|
|
}
|
|
|
|
|
|
|
|
// The DisplayName for an username will not change (often), cache for a decent time
|
2021-08-19 13:33:56 +00:00
|
|
|
c.apiCache.Set(cacheKey, time.Hour, payload.Data[0].DisplayName)
|
2021-05-24 19:42:55 +00:00
|
|
|
|
|
|
|
return payload.Data[0].DisplayName, nil
|
|
|
|
}
|
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
func (c Client) GetFollowDate(from, to string) (time.Time, error) {
|
2021-03-27 17:55:38 +00:00
|
|
|
cacheKey := []string{"followDate", from, to}
|
2021-08-19 13:33:56 +00:00
|
|
|
if d := c.apiCache.Get(cacheKey); d != nil {
|
2021-03-27 17:55:38 +00:00
|
|
|
return d.(time.Time), nil
|
|
|
|
}
|
|
|
|
|
2021-09-10 17:08:49 +00:00
|
|
|
fromID, err := c.GetIDForUsername(from)
|
2021-01-20 23:35:42 +00:00
|
|
|
if err != nil {
|
|
|
|
return time.Time{}, errors.Wrap(err, "getting id for 'from' user")
|
|
|
|
}
|
2021-09-10 17:08:49 +00:00
|
|
|
toID, err := c.GetIDForUsername(to)
|
2021-01-20 23:35:42 +00:00
|
|
|
if err != nil {
|
|
|
|
return time.Time{}, errors.Wrap(err, "getting id for 'to' user")
|
|
|
|
}
|
|
|
|
|
|
|
|
var payload struct {
|
|
|
|
Data []struct {
|
|
|
|
FollowedAt time.Time `json:"followed_at"`
|
|
|
|
} `json:"data"`
|
|
|
|
}
|
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
if err := c.request(
|
2021-06-02 11:21:13 +00:00
|
|
|
context.Background(),
|
2021-01-20 23:35:42 +00:00
|
|
|
http.MethodGet,
|
|
|
|
fmt.Sprintf("https://api.twitch.tv/helix/users/follows?to_id=%s&from_id=%s", toID, fromID),
|
|
|
|
nil,
|
|
|
|
&payload,
|
|
|
|
); err != nil {
|
|
|
|
return time.Time{}, errors.Wrap(err, "request follow info")
|
|
|
|
}
|
|
|
|
|
|
|
|
if l := len(payload.Data); l != 1 {
|
|
|
|
return time.Time{}, errors.Errorf("unexpected number of records returned: %d", l)
|
|
|
|
}
|
|
|
|
|
2021-03-27 17:55:38 +00:00
|
|
|
// Follow date will not change that often, cache for a long time
|
2021-08-19 13:33:56 +00:00
|
|
|
c.apiCache.Set(cacheKey, timeDay, payload.Data[0].FollowedAt)
|
2021-03-27 17:55:38 +00:00
|
|
|
|
2021-01-20 23:35:42 +00:00
|
|
|
return payload.Data[0].FollowedAt, nil
|
|
|
|
}
|
|
|
|
|
2021-09-22 13:36:45 +00:00
|
|
|
func (c Client) GetUserInformation(user string) (*User, error) {
|
|
|
|
var (
|
|
|
|
out User
|
|
|
|
param = "login"
|
|
|
|
payload struct {
|
|
|
|
Data []User `json:"data"`
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
cacheKey := []string{"userInformation", user}
|
|
|
|
if d := c.apiCache.Get(cacheKey); d != nil {
|
|
|
|
out = d.(User)
|
|
|
|
return &out, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := strconv.ParseInt(user, 10, 64); err == nil {
|
|
|
|
param = "id"
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := c.request(
|
|
|
|
context.Background(),
|
|
|
|
http.MethodGet,
|
|
|
|
fmt.Sprintf("https://api.twitch.tv/helix/users?%s=%s", param, user),
|
|
|
|
nil,
|
|
|
|
&payload,
|
|
|
|
); err != nil {
|
|
|
|
return nil, errors.Wrap(err, "request user info")
|
|
|
|
}
|
|
|
|
|
|
|
|
if l := len(payload.Data); l != 1 {
|
|
|
|
return nil, errors.Errorf("unexpected number of records returned: %d", l)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Follow date will not change that often, cache for a long time
|
|
|
|
c.apiCache.Set(cacheKey, timeDay, payload.Data[0])
|
|
|
|
out = payload.Data[0]
|
|
|
|
|
|
|
|
return &out, nil
|
|
|
|
}
|
|
|
|
|
2021-09-10 17:09:10 +00:00
|
|
|
func (c Client) SearchCategories(ctx context.Context, name string) ([]Category, error) {
|
|
|
|
var out []Category
|
|
|
|
|
|
|
|
params := make(url.Values)
|
|
|
|
params.Set("query", name)
|
|
|
|
params.Set("first", "100")
|
|
|
|
|
|
|
|
var resp struct {
|
|
|
|
Data []Category `json:"data"`
|
|
|
|
Pagination struct {
|
|
|
|
Cursor string `json:"cursor"`
|
|
|
|
} `json:"pagination"`
|
|
|
|
}
|
|
|
|
|
|
|
|
for {
|
|
|
|
if err := c.request(ctx, http.MethodGet, fmt.Sprintf("https://api.twitch.tv/helix/search/categories?%s", params.Encode()), nil, &resp); err != nil {
|
|
|
|
return nil, errors.Wrap(err, "executing request")
|
|
|
|
}
|
|
|
|
|
|
|
|
out = append(out, resp.Data...)
|
|
|
|
|
|
|
|
if resp.Pagination.Cursor == "" {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
params.Set("after", resp.Pagination.Cursor)
|
|
|
|
resp.Pagination.Cursor = "" // Clear from struct as struct is reused
|
|
|
|
}
|
|
|
|
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
func (c Client) HasLiveStream(username string) (bool, error) {
|
2021-03-27 17:55:38 +00:00
|
|
|
cacheKey := []string{"hasLiveStream", username}
|
2021-08-19 13:33:56 +00:00
|
|
|
if d := c.apiCache.Get(cacheKey); d != nil {
|
2021-03-27 17:55:38 +00:00
|
|
|
return d.(bool), nil
|
|
|
|
}
|
|
|
|
|
2021-03-21 13:04:04 +00:00
|
|
|
var payload struct {
|
|
|
|
Data []struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
UserLogin string `json:"user_login"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
} `json:"data"`
|
|
|
|
}
|
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
if err := c.request(
|
2021-06-02 11:21:13 +00:00
|
|
|
context.Background(),
|
2021-03-21 13:04:04 +00:00
|
|
|
http.MethodGet,
|
|
|
|
fmt.Sprintf("https://api.twitch.tv/helix/streams?user_login=%s", username),
|
|
|
|
nil,
|
|
|
|
&payload,
|
|
|
|
); err != nil {
|
|
|
|
return false, errors.Wrap(err, "request stream info")
|
|
|
|
}
|
|
|
|
|
2021-03-27 17:55:38 +00:00
|
|
|
// Live status might change recently, cache for one minute
|
2021-09-02 21:28:15 +00:00
|
|
|
c.apiCache.Set(cacheKey, twitchMinCacheTime, len(payload.Data) == 1 && payload.Data[0].Type == "live")
|
2021-03-27 17:55:38 +00:00
|
|
|
|
2021-03-21 13:04:04 +00:00
|
|
|
return len(payload.Data) == 1 && payload.Data[0].Type == "live", nil
|
|
|
|
}
|
|
|
|
|
2021-09-10 17:08:49 +00:00
|
|
|
func (c Client) GetIDForUsername(username string) (string, error) {
|
2021-03-27 17:55:38 +00:00
|
|
|
cacheKey := []string{"idForUsername", username}
|
2021-08-19 13:33:56 +00:00
|
|
|
if d := c.apiCache.Get(cacheKey); d != nil {
|
2021-03-27 17:55:38 +00:00
|
|
|
return d.(string), nil
|
|
|
|
}
|
|
|
|
|
2020-12-24 12:18:30 +00:00
|
|
|
var payload struct {
|
2021-09-22 13:36:45 +00:00
|
|
|
Data []User `json:"data"`
|
2020-12-24 12:18:30 +00:00
|
|
|
}
|
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
if err := c.request(
|
2021-06-02 11:21:13 +00:00
|
|
|
context.Background(),
|
2020-12-24 12:18:30 +00:00
|
|
|
http.MethodGet,
|
|
|
|
fmt.Sprintf("https://api.twitch.tv/helix/users?login=%s", username),
|
|
|
|
nil,
|
|
|
|
&payload,
|
|
|
|
); err != nil {
|
|
|
|
return "", errors.Wrap(err, "request channel info")
|
|
|
|
}
|
|
|
|
|
|
|
|
if l := len(payload.Data); l != 1 {
|
|
|
|
return "", errors.Errorf("unexpected number of users returned: %d", l)
|
|
|
|
}
|
|
|
|
|
2021-03-27 17:55:38 +00:00
|
|
|
// The ID for an username will not change (often), cache for a long time
|
2021-08-19 13:33:56 +00:00
|
|
|
c.apiCache.Set(cacheKey, timeDay, payload.Data[0].ID)
|
2021-03-27 17:55:38 +00:00
|
|
|
|
2020-12-24 12:18:30 +00:00
|
|
|
return payload.Data[0].ID, nil
|
|
|
|
}
|
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
func (c Client) GetRecentStreamInfo(username string) (string, string, error) {
|
2021-03-27 17:55:38 +00:00
|
|
|
cacheKey := []string{"recentStreamInfo", username}
|
2021-08-19 13:33:56 +00:00
|
|
|
if d := c.apiCache.Get(cacheKey); d != nil {
|
2021-03-27 17:55:38 +00:00
|
|
|
return d.([2]string)[0], d.([2]string)[1], nil
|
|
|
|
}
|
|
|
|
|
2021-09-10 17:08:49 +00:00
|
|
|
id, err := c.GetIDForUsername(username)
|
2020-12-24 12:18:30 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", "", errors.Wrap(err, "getting ID for username")
|
|
|
|
}
|
|
|
|
|
|
|
|
var payload struct {
|
|
|
|
Data []struct {
|
|
|
|
BroadcasterID string `json:"broadcaster_id"`
|
|
|
|
GameID string `json:"game_id"`
|
|
|
|
GameName string `json:"game_name"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
} `json:"data"`
|
|
|
|
}
|
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
if err := c.request(
|
2021-06-02 11:21:13 +00:00
|
|
|
context.Background(),
|
2020-12-24 12:18:30 +00:00
|
|
|
http.MethodGet,
|
|
|
|
fmt.Sprintf("https://api.twitch.tv/helix/channels?broadcaster_id=%s", id),
|
|
|
|
nil,
|
|
|
|
&payload,
|
|
|
|
); err != nil {
|
|
|
|
return "", "", errors.Wrap(err, "request channel info")
|
|
|
|
}
|
|
|
|
|
|
|
|
if l := len(payload.Data); l != 1 {
|
|
|
|
return "", "", errors.Errorf("unexpected number of users returned: %d", l)
|
|
|
|
}
|
|
|
|
|
2021-03-27 17:55:38 +00:00
|
|
|
// Stream-info can be changed at any moment, cache for a short period of time
|
2021-09-02 21:28:15 +00:00
|
|
|
c.apiCache.Set(cacheKey, twitchMinCacheTime, [2]string{payload.Data[0].GameName, payload.Data[0].Title})
|
2021-03-27 17:55:38 +00:00
|
|
|
|
2020-12-24 12:18:30 +00:00
|
|
|
return payload.Data[0].GameName, payload.Data[0].Title, nil
|
|
|
|
}
|
|
|
|
|
2021-09-10 17:20:31 +00:00
|
|
|
func (c Client) ModifyChannelInformation(ctx context.Context, broadcasterName string, game, title *string) error {
|
2021-09-10 17:09:10 +00:00
|
|
|
if game == nil && title == nil {
|
|
|
|
return errors.New("netiher game nor title provided")
|
|
|
|
}
|
|
|
|
|
2021-09-10 17:20:31 +00:00
|
|
|
broadcaster, err := c.GetIDForUsername(broadcasterName)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "getting ID for broadcaster name")
|
|
|
|
}
|
|
|
|
|
2021-09-10 17:09:10 +00:00
|
|
|
data := struct {
|
|
|
|
GameID *string `json:"game_id,omitempty"`
|
|
|
|
Title *string `json:"title,omitempty"`
|
|
|
|
}{
|
|
|
|
Title: title,
|
|
|
|
}
|
|
|
|
|
|
|
|
if game != nil {
|
|
|
|
categories, err := c.SearchCategories(ctx, *game)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "searching for game")
|
|
|
|
}
|
|
|
|
|
|
|
|
switch len(categories) {
|
|
|
|
case 0:
|
|
|
|
return errors.New("no matching game found")
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
data.GameID = &categories[0].ID
|
|
|
|
|
|
|
|
default:
|
|
|
|
// Multiple matches: Search for exact one
|
|
|
|
for _, c := range categories {
|
|
|
|
if c.Name == *game {
|
2021-09-12 23:57:03 +00:00
|
|
|
gid := c.ID
|
|
|
|
data.GameID = &gid
|
2021-09-10 17:09:10 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if data.GameID == nil {
|
|
|
|
// No exact match found: This is an error
|
|
|
|
return errors.New("no exact game match found")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body := new(bytes.Buffer)
|
|
|
|
if err := json.NewEncoder(body).Encode(data); err != nil {
|
|
|
|
return errors.Wrap(err, "encoding payload")
|
|
|
|
}
|
|
|
|
|
|
|
|
return errors.Wrap(
|
2021-09-10 17:46:03 +00:00
|
|
|
c.request(ctx, http.MethodPatch, fmt.Sprintf("https://api.twitch.tv/helix/channels?broadcaster_id=%s", broadcaster), body, nil),
|
2021-09-10 17:09:10 +00:00
|
|
|
"executing request",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-08-19 13:33:56 +00:00
|
|
|
func (c Client) request(ctx context.Context, method, url string, body io.Reader, out interface{}) error {
|
2021-03-27 17:55:38 +00:00
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"method": method,
|
|
|
|
"url": url,
|
|
|
|
}).Trace("Execute Twitch API request")
|
|
|
|
|
2021-06-02 11:21:13 +00:00
|
|
|
return backoff.NewBackoff().WithMaxIterations(twitchRequestRetries).Retry(func() error {
|
|
|
|
reqCtx, cancel := context.WithTimeout(ctx, twitchRequestTimeout)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
req, err := http.NewRequestWithContext(reqCtx, method, url, body)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "assemble request")
|
|
|
|
}
|
|
|
|
req.Header.Set("Content-Type", "application/json")
|
2021-08-19 13:33:56 +00:00
|
|
|
req.Header.Set("Client-Id", c.clientID)
|
|
|
|
req.Header.Set("Authorization", "Bearer "+c.token)
|
2021-06-02 11:21:13 +00:00
|
|
|
|
|
|
|
resp, err := http.DefaultClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "execute request")
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
2021-09-10 17:09:10 +00:00
|
|
|
if out == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-06-02 11:21:13 +00:00
|
|
|
return errors.Wrap(
|
|
|
|
json.NewDecoder(resp.Body).Decode(out),
|
|
|
|
"parse user info",
|
|
|
|
)
|
|
|
|
})
|
2020-12-24 12:18:30 +00:00
|
|
|
}
|