2022-05-12 11:17:24 +02:00
|
|
|
package internal
|
2022-03-20 08:29:18 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/base64"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2022-08-23 15:46:12 +02:00
|
|
|
"io"
|
2022-03-20 08:29:18 +01:00
|
|
|
"net/http"
|
2022-08-23 15:46:12 +02:00
|
|
|
"net/url"
|
|
|
|
"reflect"
|
2022-03-20 08:29:18 +01:00
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2022-05-12 11:17:24 +02:00
|
|
|
// OAuthClient is a OAuth client interface for various idp providers
|
|
|
|
type OAuthClient interface {
|
|
|
|
RequestDeviceCode(ctx context.Context) (DeviceAuthInfo, error)
|
|
|
|
WaitToken(ctx context.Context, info DeviceAuthInfo) (TokenInfo, error)
|
2022-05-28 18:37:08 +02:00
|
|
|
GetClientID(ctx context.Context) string
|
2022-05-12 11:17:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// HTTPClient http client interface for API calls
|
|
|
|
type HTTPClient interface {
|
|
|
|
Do(req *http.Request) (*http.Response, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeviceAuthInfo holds information for the OAuth device login flow
|
|
|
|
type DeviceAuthInfo struct {
|
|
|
|
DeviceCode string `json:"device_code"`
|
|
|
|
UserCode string `json:"user_code"`
|
|
|
|
VerificationURI string `json:"verification_uri"`
|
|
|
|
VerificationURIComplete string `json:"verification_uri_complete"`
|
|
|
|
ExpiresIn int `json:"expires_in"`
|
|
|
|
Interval int `json:"interval"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// TokenInfo holds information of issued access token
|
|
|
|
type TokenInfo struct {
|
|
|
|
AccessToken string `json:"access_token"`
|
|
|
|
RefreshToken string `json:"refresh_token"`
|
|
|
|
IDToken string `json:"id_token"`
|
|
|
|
TokenType string `json:"token_type"`
|
|
|
|
ExpiresIn int `json:"expires_in"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// HostedGrantType grant type for device flow on Hosted
|
2022-03-22 13:12:11 +01:00
|
|
|
const (
|
2022-05-12 11:17:24 +02:00
|
|
|
HostedGrantType = "urn:ietf:params:oauth:grant-type:device_code"
|
|
|
|
HostedRefreshGrant = "refresh_token"
|
2022-03-22 13:12:11 +01:00
|
|
|
)
|
2022-03-20 08:29:18 +01:00
|
|
|
|
2022-05-12 11:17:24 +02:00
|
|
|
// Hosted client
|
|
|
|
type Hosted struct {
|
|
|
|
// Hosted API Audience for validation
|
2022-03-20 08:29:18 +01:00
|
|
|
Audience string
|
2022-05-12 11:17:24 +02:00
|
|
|
// Hosted Native application client id
|
2022-03-20 08:29:18 +01:00
|
|
|
ClientID string
|
2023-01-08 22:26:14 +01:00
|
|
|
// Hosted Native application request scope
|
|
|
|
Scope string
|
2022-08-23 15:46:12 +02:00
|
|
|
// TokenEndpoint to request access token
|
|
|
|
TokenEndpoint string
|
|
|
|
// DeviceAuthEndpoint to request device authorization code
|
|
|
|
DeviceAuthEndpoint string
|
2022-03-20 08:29:18 +01:00
|
|
|
|
|
|
|
HTTPClient HTTPClient
|
|
|
|
}
|
|
|
|
|
|
|
|
// RequestDeviceCodePayload used for request device code payload for auth0
|
|
|
|
type RequestDeviceCodePayload struct {
|
|
|
|
Audience string `json:"audience"`
|
|
|
|
ClientID string `json:"client_id"`
|
2023-01-08 22:26:14 +01:00
|
|
|
Scope string `json:"scope"`
|
2022-03-20 08:29:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// TokenRequestPayload used for requesting the auth0 token
|
|
|
|
type TokenRequestPayload struct {
|
2022-03-22 13:12:11 +01:00
|
|
|
GrantType string `json:"grant_type"`
|
|
|
|
DeviceCode string `json:"device_code,omitempty"`
|
|
|
|
ClientID string `json:"client_id"`
|
|
|
|
RefreshToken string `json:"refresh_token,omitempty"`
|
2022-03-20 08:29:18 +01:00
|
|
|
}
|
|
|
|
|
2022-05-12 11:17:24 +02:00
|
|
|
// TokenRequestResponse used for parsing Hosted token's response
|
2022-03-20 08:29:18 +01:00
|
|
|
type TokenRequestResponse struct {
|
|
|
|
Error string `json:"error"`
|
|
|
|
ErrorDescription string `json:"error_description"`
|
|
|
|
TokenInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
// Claims used when validating the access token
|
|
|
|
type Claims struct {
|
2022-08-23 15:46:12 +02:00
|
|
|
Audience interface{} `json:"aud"`
|
2022-03-20 08:29:18 +01:00
|
|
|
}
|
|
|
|
|
2022-05-12 11:17:24 +02:00
|
|
|
// NewHostedDeviceFlow returns an Hosted OAuth client
|
2022-08-23 15:46:12 +02:00
|
|
|
func NewHostedDeviceFlow(audience string, clientID string, tokenEndpoint string, deviceAuthEndpoint string) *Hosted {
|
2022-03-20 08:29:18 +01:00
|
|
|
httpTransport := http.DefaultTransport.(*http.Transport).Clone()
|
|
|
|
httpTransport.MaxIdleConns = 5
|
|
|
|
|
|
|
|
httpClient := &http.Client{
|
|
|
|
Timeout: 10 * time.Second,
|
|
|
|
Transport: httpTransport,
|
|
|
|
}
|
|
|
|
|
2022-05-12 11:17:24 +02:00
|
|
|
return &Hosted{
|
2022-08-23 15:46:12 +02:00
|
|
|
Audience: audience,
|
|
|
|
ClientID: clientID,
|
2023-01-08 22:26:14 +01:00
|
|
|
Scope: "openid",
|
2022-08-23 15:46:12 +02:00
|
|
|
TokenEndpoint: tokenEndpoint,
|
|
|
|
HTTPClient: httpClient,
|
|
|
|
DeviceAuthEndpoint: deviceAuthEndpoint,
|
2022-03-20 08:29:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-28 18:37:08 +02:00
|
|
|
// GetClientID returns the provider client id
|
|
|
|
func (h *Hosted) GetClientID(ctx context.Context) string {
|
|
|
|
return h.ClientID
|
|
|
|
}
|
|
|
|
|
2022-05-12 11:17:24 +02:00
|
|
|
// RequestDeviceCode requests a device code login flow information from Hosted
|
|
|
|
func (h *Hosted) RequestDeviceCode(ctx context.Context) (DeviceAuthInfo, error) {
|
2022-08-23 15:46:12 +02:00
|
|
|
form := url.Values{}
|
|
|
|
form.Add("client_id", h.ClientID)
|
|
|
|
form.Add("audience", h.Audience)
|
2023-01-08 22:26:14 +01:00
|
|
|
form.Add("scope", h.Scope)
|
2022-08-23 15:46:12 +02:00
|
|
|
req, err := http.NewRequest("POST", h.DeviceAuthEndpoint,
|
|
|
|
strings.NewReader(form.Encode()))
|
2022-03-20 08:29:18 +01:00
|
|
|
if err != nil {
|
|
|
|
return DeviceAuthInfo{}, fmt.Errorf("creating request failed with error: %v", err)
|
|
|
|
}
|
2022-08-23 15:46:12 +02:00
|
|
|
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
|
2022-03-20 08:29:18 +01:00
|
|
|
|
2022-05-12 11:17:24 +02:00
|
|
|
res, err := h.HTTPClient.Do(req)
|
2022-03-20 08:29:18 +01:00
|
|
|
if err != nil {
|
|
|
|
return DeviceAuthInfo{}, fmt.Errorf("doing request failed with error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
defer res.Body.Close()
|
2022-08-23 15:46:12 +02:00
|
|
|
body, err := io.ReadAll(res.Body)
|
2022-03-20 08:29:18 +01:00
|
|
|
if err != nil {
|
|
|
|
return DeviceAuthInfo{}, fmt.Errorf("reading body failed with error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if res.StatusCode != 200 {
|
|
|
|
return DeviceAuthInfo{}, fmt.Errorf("request device code returned status %d error: %s", res.StatusCode, string(body))
|
|
|
|
}
|
|
|
|
|
|
|
|
deviceCode := DeviceAuthInfo{}
|
|
|
|
err = json.Unmarshal(body, &deviceCode)
|
|
|
|
if err != nil {
|
|
|
|
return DeviceAuthInfo{}, fmt.Errorf("unmarshaling response failed with error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return deviceCode, err
|
|
|
|
}
|
|
|
|
|
2022-08-23 15:46:12 +02:00
|
|
|
func (h *Hosted) requestToken(info DeviceAuthInfo) (TokenRequestResponse, error) {
|
|
|
|
form := url.Values{}
|
|
|
|
form.Add("client_id", h.ClientID)
|
|
|
|
form.Add("grant_type", HostedGrantType)
|
|
|
|
form.Add("device_code", info.DeviceCode)
|
|
|
|
req, err := http.NewRequest("POST", h.TokenEndpoint, strings.NewReader(form.Encode()))
|
|
|
|
if err != nil {
|
|
|
|
return TokenRequestResponse{}, fmt.Errorf("failed to create request access token: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
|
|
|
|
|
|
|
|
res, err := h.HTTPClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return TokenRequestResponse{}, fmt.Errorf("failed to request access token with error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
err := res.Body.Close()
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
body, err := io.ReadAll(res.Body)
|
|
|
|
if err != nil {
|
|
|
|
return TokenRequestResponse{}, fmt.Errorf("failed reading access token response body with error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if res.StatusCode > 499 {
|
|
|
|
return TokenRequestResponse{}, fmt.Errorf("access token response returned code: %s", string(body))
|
|
|
|
}
|
|
|
|
|
|
|
|
tokenResponse := TokenRequestResponse{}
|
|
|
|
err = json.Unmarshal(body, &tokenResponse)
|
|
|
|
if err != nil {
|
|
|
|
return TokenRequestResponse{}, fmt.Errorf("parsing token response failed with error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return tokenResponse, nil
|
|
|
|
}
|
|
|
|
|
2022-03-20 08:29:18 +01:00
|
|
|
// WaitToken waits user's login and authorize the app. Once the user's authorize
|
2022-05-12 11:17:24 +02:00
|
|
|
// it retrieves the access token from Hosted's endpoint and validates it before returning
|
|
|
|
func (h *Hosted) WaitToken(ctx context.Context, info DeviceAuthInfo) (TokenInfo, error) {
|
2022-05-28 18:37:08 +02:00
|
|
|
interval := time.Duration(info.Interval) * time.Second
|
|
|
|
ticker := time.NewTicker(interval)
|
2022-03-20 08:29:18 +01:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return TokenInfo{}, ctx.Err()
|
|
|
|
case <-ticker.C:
|
|
|
|
|
2022-08-23 15:46:12 +02:00
|
|
|
tokenResponse, err := h.requestToken(info)
|
2022-03-20 08:29:18 +01:00
|
|
|
if err != nil {
|
|
|
|
return TokenInfo{}, fmt.Errorf("parsing token response failed with error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if tokenResponse.Error != "" {
|
|
|
|
if tokenResponse.Error == "authorization_pending" {
|
|
|
|
continue
|
2022-05-28 18:37:08 +02:00
|
|
|
} else if tokenResponse.Error == "slow_down" {
|
|
|
|
interval = interval + (3 * time.Second)
|
|
|
|
ticker.Reset(interval)
|
|
|
|
continue
|
2022-03-20 08:29:18 +01:00
|
|
|
}
|
2022-05-28 18:37:08 +02:00
|
|
|
|
2022-03-20 08:29:18 +01:00
|
|
|
return TokenInfo{}, fmt.Errorf(tokenResponse.ErrorDescription)
|
|
|
|
}
|
|
|
|
|
2022-05-12 11:17:24 +02:00
|
|
|
err = isValidAccessToken(tokenResponse.AccessToken, h.Audience)
|
2022-03-20 08:29:18 +01:00
|
|
|
if err != nil {
|
|
|
|
return TokenInfo{}, fmt.Errorf("validate access token failed with error: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
tokenInfo := TokenInfo{
|
|
|
|
AccessToken: tokenResponse.AccessToken,
|
|
|
|
TokenType: tokenResponse.TokenType,
|
|
|
|
RefreshToken: tokenResponse.RefreshToken,
|
|
|
|
IDToken: tokenResponse.IDToken,
|
|
|
|
ExpiresIn: tokenResponse.ExpiresIn,
|
|
|
|
}
|
|
|
|
return tokenInfo, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// isValidAccessToken is a simple validation of the access token
|
|
|
|
func isValidAccessToken(token string, audience string) error {
|
|
|
|
if token == "" {
|
|
|
|
return fmt.Errorf("token received is empty")
|
|
|
|
}
|
|
|
|
|
|
|
|
encodedClaims := strings.Split(token, ".")[1]
|
|
|
|
claimsString, err := base64.RawURLEncoding.DecodeString(encodedClaims)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
claims := Claims{}
|
|
|
|
err = json.Unmarshal(claimsString, &claims)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-08-23 15:46:12 +02:00
|
|
|
if claims.Audience == nil {
|
|
|
|
return fmt.Errorf("required token field audience is absent")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Audience claim of JWT can be a string or an array of strings
|
|
|
|
typ := reflect.TypeOf(claims.Audience)
|
|
|
|
switch typ.Kind() {
|
|
|
|
case reflect.String:
|
|
|
|
if claims.Audience == audience {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
case reflect.Slice:
|
|
|
|
for _, aud := range claims.Audience.([]interface{}) {
|
|
|
|
if audience == aud {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2022-03-20 08:29:18 +01:00
|
|
|
}
|
|
|
|
|
2022-08-23 15:46:12 +02:00
|
|
|
return fmt.Errorf("invalid JWT token audience field")
|
2022-03-20 08:29:18 +01:00
|
|
|
}
|