-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathutli.go
214 lines (186 loc) · 6.5 KB
/
utli.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
package main
import (
"errors"
"fmt"
"io/ioutil"
"log"
"net/http"
"strconv"
"github.com/Jeffail/gabs"
)
type follower struct {
uid string
followedAt string
}
// User profile info
type User struct {
ID string `json:"id"`
Login string `json:"login"`
Displayname string `json:"displayname"`
ProfileImageURL string `json:"profileImageURL"`
FollowedAt string `json:"followedAt"`
UnfollowedAt string `json:"unfollowedAt"`
}
// Unfollower user profile info
type Unfollower struct {
ID string `json:"id"`
Login string `json:"login"`
Displayname string `json:"displayname"`
ProfileImageURL string `json:"profileImageURL"`
UnfollowedAt string `json:"unfollowedAt"`
}
type config struct {
clientID string
oauth string
username string
userID string
serverPort string
updateInterval int
}
type apiResult struct {
statusCode int
response map[string]string
limit int
limitRemaining int
limtResetTime int64
}
func getUserIDFromTwitch(username string, clientID string, oauth string) (apiResult, error) {
req, _ := http.NewRequest("GET", fmt.Sprintf("https://api.twitch.tv/helix/users?login=%s", username), nil)
req.Header.Add("Client-ID", fmt.Sprintf("%s", clientID))
if len(oauth) > 0 {
req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", oauth))
}
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
log.Fatal(err)
}
defer resp.Body.Close()
header := resp.Header
limit, _ := strconv.Atoi(header["Ratelimit-Limit"][0])
limitRemain, _ := strconv.Atoi(header["Ratelimit-Remaining"][0])
limitReset, _ := strconv.ParseInt(header["Ratelimit-Reset"][0], 10, 64)
if resp.StatusCode == 200 {
body, _ := ioutil.ReadAll(resp.Body)
parsed, err := gabs.ParseJSON(body)
if err != nil {
log.Fatal(err)
}
exists := parsed.ExistsP("data.id")
if exists {
userdata, _ := parsed.Path("data").Children()
firstuserdata, _ := userdata[0].ChildrenMap()
return apiResult{resp.StatusCode,
map[string]string{"id": firstuserdata["id"].Data().(string)},
limit, limitRemain, limitReset}, nil
}
}
return apiResult{resp.StatusCode, nil, limit, limitRemain, limitReset}, errors.New("getUserIDFromTwitch: cannot get UserID from Twitch API, check your ClientID or username")
}
func getUserNameFromTwitch(userID string, clientID string, oauth string) (apiResult, error) {
req, _ := http.NewRequest("GET", fmt.Sprintf("https://api.twitch.tv/helix/users?id=%s", userID), nil)
req.Header.Add("Client-ID", fmt.Sprintf("%s", clientID))
if len(oauth) > 0 {
req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", oauth))
}
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
log.Fatal(err)
}
defer resp.Body.Close()
header := resp.Header
limit, _ := strconv.Atoi(header["Ratelimit-Limit"][0])
limitRemain, _ := strconv.Atoi(header["Ratelimit-Remaining"][0])
limitReset, _ := strconv.ParseInt(header["Ratelimit-Reset"][0], 10, 64)
if resp.StatusCode == 200 {
res, _ := ioutil.ReadAll(resp.Body)
parsed, err := gabs.ParseJSON(res)
if err != nil {
log.Fatal(err)
}
exists := parsed.ExistsP("data.login")
if exists {
userdata, _ := parsed.Path("data").Children()
firstuserdata, _ := userdata[0].ChildrenMap()
return apiResult{resp.StatusCode,
map[string]string{"login": firstuserdata["login"].Data().(string), "displayname": firstuserdata["display_name"].Data().(string)},
limit, limitRemain, limitReset}, nil
}
}
return apiResult{resp.StatusCode, nil, limit, limitRemain, limitReset}, errors.New("getUserName: cannot get username from Twitch API, check your ClientID or userID")
}
func getUserFromTwitch(userID string, clientID string, oauth string) (apiResult, error) {
req, _ := http.NewRequest("GET", fmt.Sprintf("https://api.twitch.tv/helix/users?id=%s", userID), nil)
req.Header.Add("Client-ID", fmt.Sprintf("%s", clientID))
if len(oauth) > 0 {
req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", oauth))
}
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
log.Fatal(err)
}
defer resp.Body.Close()
header := resp.Header
limit, _ := strconv.Atoi(header["Ratelimit-Limit"][0])
limitRemain, _ := strconv.Atoi(header["Ratelimit-Remaining"][0])
limitReset, _ := strconv.ParseInt(header["Ratelimit-Reset"][0], 10, 64)
if resp.StatusCode == 200 {
res, _ := ioutil.ReadAll(resp.Body)
parsed, err := gabs.ParseJSON(res)
if err != nil {
log.Fatal(err)
}
exists := parsed.ExistsP("data.login")
if exists {
userdata, _ := parsed.Path("data").Children()
return apiResult{resp.StatusCode,
map[string]string{"user": userdata[0].String()},
limit, limitRemain, limitReset}, nil
}
}
return apiResult{resp.StatusCode, nil, limit, limitRemain, limitReset}, errors.New("getUserName: cannot get username from Twitch API, check your ClientID or userID")
}
func getFollowersFromTwitch(userID string, pagination string, clientID string, oauth string) (apiResult, []follower, error) {
client := &http.Client{}
req, _ := http.NewRequest("GET", fmt.Sprintf("https://api.twitch.tv/helix/users/follows?to_id=%s&first=100&after=%s", userID, pagination), nil)
req.Header.Add("Client-ID", fmt.Sprintf("%s", clientID))
if len(oauth) > 0 {
req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", oauth))
}
resp, err := client.Do(req)
if err != nil {
log.Fatal(err)
}
defer resp.Body.Close()
header := resp.Header
limit, _ := strconv.Atoi(header["Ratelimit-Limit"][0])
limitRemain, _ := strconv.Atoi(header["Ratelimit-Remaining"][0])
limitReset, _ := strconv.ParseInt(header["Ratelimit-Reset"][0], 10, 64)
if resp.StatusCode == 200 {
res, _ := ioutil.ReadAll(resp.Body)
parsed, err := gabs.ParseJSON(res)
if err != nil {
log.Fatal(err)
}
var output []follower
followers, _ := parsed.Path("data").Children()
nextPagination := ""
if parsed.Path("pagination.cursor").Data() != nil {
nextPagination = parsed.Path("pagination.cursor").Data().(string)
}
if len(followers) > 0 {
for _, child := range followers {
childdata, _ := child.ChildrenMap()
uid, _ := childdata["from_id"].Data().(string)
followAt := childdata["followed_at"].Data().(string)
output = append(output, follower{uid, followAt})
}
}
return apiResult{resp.StatusCode,
map[string]string{"next": nextPagination},
limit, limitRemain, limitReset}, output, nil
}
return apiResult{resp.StatusCode, nil, limit, limitRemain, limitReset}, nil, errors.New("getFollowers: cannot get followers from Twitch API")
}