-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapi.go
61 lines (55 loc) · 1.82 KB
/
api.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
package twitchvhr
import (
"bufio"
"io"
"net/http"
"strconv"
"strings"
"github.com/TwitchRecover/TwitchGQL"
)
type Token struct {
Signature string
Token string
}
type FeedsOption struct {
AllowSource bool
Player string
AllowSpectre bool
AllowAudioOnly bool
IncludeFramerate bool
}
func FetchFeeds(vodID string, client http.Client, options FeedsOption) []string {
feedUrls := make([]string, 0)
token := RetrieveToken(vodID, client)
feedOptions := "&allow_source=" + strconv.FormatBool(options.AllowSource) + "&player=" + options.Player + "&allow_spectre=" + strconv.FormatBool(options.AllowSpectre) + "&allow_audio_only=" + strconv.FormatBool(options.AllowAudioOnly) + "&playlist_include_framerate:" + strconv.FormatBool(options.IncludeFramerate)
feedRes, _ := client.Get("https://usher.ttvnw.net/vod/" + vodID + ".m3u8?sig=" + token.Signature + "&token=" + token.Token + feedOptions)
if feedRes.StatusCode != 200 {
return feedUrls
}
defer feedRes.Body.Close()
feeds, _ := io.ReadAll(feedRes.Body)
scanner := bufio.NewScanner(strings.NewReader(string(feeds)))
for scanner.Scan() {
feed := scanner.Text()
if !strings.HasPrefix(feed, "#") {
feedUrls = append(feedUrls, feed)
}
}
return feedUrls
}
func RetrieveToken(vodID string, httpClient http.Client) Token {
id, _ := strconv.Atoi(vodID)
client := twitchgql.Client{
Client: httpClient,
}
video := &twitchgql.Video{}
video.Request = twitchgql.VideoRequest{
Params: twitchgql.VideoRequestParams{Id: id},
PlaybackAccessToken: &twitchgql.PlaybackAccessToken{Request: twitchgql.PlaybackAccessTokenRequest{Signature: true, Value: true}},
}
twitchgql.Query(client, video)
return Token{
Signature: video.Response.PlaybackAccessToken.Response.Signature,
Token: video.Response.PlaybackAccessToken.Response.Value,
}
}