-
Notifications
You must be signed in to change notification settings - Fork 88
/
authentication.go
226 lines (187 loc) · 6.17 KB
/
authentication.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
package helix
import (
"net/http"
"strings"
)
var authPaths = map[string]string{
"token": "/token",
"revoke": "/revoke",
"validate": "/validate",
}
type AuthorizationURLParams struct {
ResponseType string // (Required) Options: "code" or "token"
Scopes []string // (Required)
State string // (Optional)
ForceVerify bool // (Optional)
}
func (c *Client) GetAuthorizationURL(params *AuthorizationURLParams) string {
url := AuthBaseURL + "/authorize"
url += "?response_type=" + params.ResponseType
url += "&client_id=" + c.opts.ClientID
url += "&redirect_uri=" + c.opts.RedirectURI
if params.State != "" {
url += "&state=" + params.State
}
if params.ForceVerify {
url += "&force_verify=true"
}
if len(params.Scopes) != 0 {
url += "&scope=" + strings.Join(params.Scopes, "%20")
}
return url
}
type AccessCredentials struct {
AccessToken string `json:"access_token"`
RefreshToken string `json:"refresh_token"`
ExpiresIn int `json:"expires_in"`
Scopes []string `json:"scope"`
}
type AppAccessTokenResponse struct {
ResponseCommon
Data AccessCredentials
}
func (c *Client) RequestAppAccessToken(scopes []string) (*AppAccessTokenResponse, error) {
opts := c.opts
data := &accessTokenRequestData{
ClientID: opts.ClientID,
ClientSecret: opts.ClientSecret,
RedirectURI: opts.RedirectURI,
GrantType: "client_credentials",
Scopes: strings.Join(scopes, " "),
}
resp, err := c.post(authPaths["token"], &AccessCredentials{}, data)
if err != nil {
return nil, err
}
token := &AppAccessTokenResponse{}
resp.HydrateResponseCommon(&token.ResponseCommon)
token.Data.AccessToken = resp.Data.(*AccessCredentials).AccessToken
token.Data.RefreshToken = resp.Data.(*AccessCredentials).RefreshToken
token.Data.ExpiresIn = resp.Data.(*AccessCredentials).ExpiresIn
token.Data.Scopes = resp.Data.(*AccessCredentials).Scopes
return token, nil
}
type UserAccessTokenResponse struct {
ResponseCommon
Data AccessCredentials
}
type accessTokenRequestData struct {
Code string `query:"code"`
ClientID string `query:"client_id"`
ClientSecret string `query:"client_secret"`
RedirectURI string `query:"redirect_uri"`
GrantType string `query:"grant_type"`
Scopes string `query:"scope"`
}
func (c *Client) RequestUserAccessToken(code string) (*UserAccessTokenResponse, error) {
opts := c.opts
data := &accessTokenRequestData{
Code: code,
ClientID: opts.ClientID,
ClientSecret: opts.ClientSecret,
RedirectURI: opts.RedirectURI,
GrantType: "authorization_code",
}
resp, err := c.post(authPaths["token"], &AccessCredentials{}, data)
if err != nil {
return nil, err
}
token := &UserAccessTokenResponse{}
resp.HydrateResponseCommon(&token.ResponseCommon)
token.Data.AccessToken = resp.Data.(*AccessCredentials).AccessToken
token.Data.RefreshToken = resp.Data.(*AccessCredentials).RefreshToken
token.Data.ExpiresIn = resp.Data.(*AccessCredentials).ExpiresIn
token.Data.Scopes = resp.Data.(*AccessCredentials).Scopes
return token, nil
}
type RefreshTokenResponse struct {
ResponseCommon
Data AccessCredentials
}
type refreshTokenRequestData struct {
ClientID string `query:"client_id"`
ClientSecret string `query:"client_secret"`
GrantType string `query:"grant_type"`
RefreshToken string `query:"refresh_token"`
}
// RefreshUserAccessToken submits a request to have the longevity of an
// access token extended. Twitch OAuth2 access tokens have expirations.
// Token-expiration periods vary in length. You should build your applications
// in such a way that they are resilient to token authentication failures.
func (c *Client) RefreshUserAccessToken(refreshToken string) (*RefreshTokenResponse, error) {
opts := c.opts
data := &refreshTokenRequestData{
ClientID: opts.ClientID,
ClientSecret: opts.ClientSecret,
GrantType: "refresh_token",
RefreshToken: refreshToken,
}
resp, err := c.post(authPaths["token"], &AccessCredentials{}, data)
if err != nil {
return nil, err
}
refresh := &RefreshTokenResponse{}
resp.HydrateResponseCommon(&refresh.ResponseCommon)
refresh.Data.AccessToken = resp.Data.(*AccessCredentials).AccessToken
refresh.Data.RefreshToken = resp.Data.(*AccessCredentials).RefreshToken
refresh.Data.ExpiresIn = resp.Data.(*AccessCredentials).ExpiresIn
refresh.Data.Scopes = resp.Data.(*AccessCredentials).Scopes
return refresh, nil
}
type RevokeAccessTokenResponse struct {
ResponseCommon
}
type revokeAccessTokenRequestData struct {
ClientID string `query:"client_id"`
AccessToken string `query:"token"`
}
// RevokeUserAccessToken submits a request to Twitch to have an access token revoked.
//
// Both successful requests and requests with bad tokens return 200 OK with
// no body. Requests with bad tokens return the same response, as there is no
// meaningful action a client can take after sending a bad token.
func (c *Client) RevokeUserAccessToken(accessToken string) (*RevokeAccessTokenResponse, error) {
data := &revokeAccessTokenRequestData{
ClientID: c.opts.ClientID,
AccessToken: accessToken,
}
resp, err := c.post(authPaths["revoke"], nil, data)
if err != nil {
return nil, err
}
revoke := &RevokeAccessTokenResponse{}
resp.HydrateResponseCommon(&revoke.ResponseCommon)
return revoke, nil
}
type ValidateTokenResponse struct {
ResponseCommon
Data validateTokenDetails
}
type validateTokenDetails struct {
ClientID string `json:"client_id"`
Login string `json:"login"`
Scopes []string `json:"scopes"`
UserID string `json:"user_id"`
ExpiresIn int `json:"expires_in"`
}
// ValidateToken - Validate access token
func (c *Client) ValidateToken(accessToken string) (bool, *ValidateTokenResponse, error) {
// Reset to original token after request
currentToken := c.opts.UserAccessToken
c.SetUserAccessToken(accessToken)
defer c.SetUserAccessToken(currentToken)
var data validateTokenDetails
resp, err := c.get(authPaths["validate"], &data, nil)
if err != nil {
return false, nil, err
}
var isValid bool
if resp.StatusCode == http.StatusOK {
isValid = true
}
tokenResp := &ValidateTokenResponse{
Data: data,
}
resp.HydrateResponseCommon(&tokenResp.ResponseCommon)
return isValid, tokenResp, nil
}