feat: Add context to GetToken endpoint

This commit is contained in:
Evan Fiordeliso 2024-03-08 13:05:54 -05:00
parent 01bc01979e
commit adf49ce4bb
4 changed files with 18 additions and 8 deletions

View File

@ -56,7 +56,7 @@ func (c *CallbackHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
scope := q.Get("scope") scope := q.Get("scope")
_ = scope _ = scope
token, err := c.client.GetToken(code) token, err := c.client.GetToken(r.Context(), code)
if err != nil { if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError) http.Error(w, err.Error(), http.StatusInternalServerError)
return return

View File

@ -1,5 +1,7 @@
package auth package auth
import "context"
type Client struct { type Client struct {
clientId string clientId string
clientSecret string clientSecret string
@ -21,8 +23,8 @@ func NewClient(clientId string, clientSecret string, redirectUri string) *Client
// GetToken exchanges an authorization code for an access token. // GetToken exchanges an authorization code for an access token.
// //
// https://dev.twitch.tv/docs/authentication/getting-tokens-oidc/#oidc-authorization-code-grant-flow // https://dev.twitch.tv/docs/authentication/getting-tokens-oidc/#oidc-authorization-code-grant-flow
func (c *Client) GetToken(code string) (*Token, error) { func (c *Client) GetToken(ctx context.Context, code string) (*Token, error) {
return GetToken(&GetTokenParams{ return GetToken(ctx, &GetTokenParams{
ClientId: c.clientId, ClientId: c.clientId,
ClientSecret: c.clientSecret, ClientSecret: c.clientSecret,
Code: code, Code: code,
@ -34,8 +36,8 @@ func (c *Client) GetToken(code string) (*Token, error) {
// RefreshToken exchanges a refresh token for an access token. // RefreshToken exchanges a refresh token for an access token.
// //
// https://dev.twitch.tv/docs/authentication/refresh-tokens/ // https://dev.twitch.tv/docs/authentication/refresh-tokens/
func (c *Client) RefreshToken(token *Token) (*Token, error) { func (c *Client) RefreshToken(ctx context.Context, token *Token) (*Token, error) {
return GetToken(&GetTokenParams{ return GetToken(ctx, &GetTokenParams{
ClientId: c.clientId, ClientId: c.clientId,
ClientSecret: c.clientSecret, ClientSecret: c.clientSecret,
Code: token.RefreshToken, Code: token.RefreshToken,

View File

@ -1,6 +1,7 @@
package auth package auth
import ( import (
"context"
"encoding/json" "encoding/json"
"fmt" "fmt"
"net/http" "net/http"
@ -47,13 +48,19 @@ type GetTokenParams struct {
RedirectUri string `url:"redirect_uri"` RedirectUri string `url:"redirect_uri"`
} }
func GetToken(params *GetTokenParams) (*Token, error) { func GetToken(ctx context.Context, params *GetTokenParams) (*Token, error) {
v, err := query.Values(params) v, err := query.Values(params)
if err != nil { if err != nil {
return nil, err return nil, err
} }
res, err := http.Post(TokenUrl, "application/x-www-form-urlencoded", strings.NewReader(v.Encode())) req, err := http.NewRequestWithContext(ctx, http.MethodPost, TokenUrl, strings.NewReader(v.Encode()))
if err != nil {
return nil, err
}
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
res, err := http.DefaultClient.Do(req)
if err != nil { if err != nil {
return nil, err return nil, err
} }

View File

@ -1,6 +1,7 @@
package auth package auth
import ( import (
"context"
"sync" "sync"
"golang.org/x/oauth2" "golang.org/x/oauth2"
@ -28,7 +29,7 @@ func (ts *TokenSource) Token() (*oauth2.Token, error) {
return ts.token.Underlying(), nil return ts.token.Underlying(), nil
} }
token, err := ts.client.RefreshToken(ts.token) token, err := ts.client.RefreshToken(context.Background(), ts.token)
if err != nil { if err != nil {
return nil, err return nil, err
} }