2014-05-17 19:26:57 +04:00
|
|
|
// Copyright 2014 The oauth2 Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
2014-05-13 22:06:46 +04:00
|
|
|
|
2014-05-06 01:54:23 +04:00
|
|
|
// Package oauth2 provides support for making
|
|
|
|
// OAuth2 authorized and authenticated HTTP requests.
|
|
|
|
// It can additionally grant authorization with Bearer JWT.
|
|
|
|
package oauth2
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"io/ioutil"
|
|
|
|
"mime"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type tokenRespBody struct {
|
|
|
|
AccessToken string `json:"access_token"`
|
|
|
|
TokenType string `json:"token_type"`
|
|
|
|
RefreshToken string `json:"refresh_token"`
|
|
|
|
ExpiresIn time.Duration `json:"expires_in"`
|
|
|
|
IdToken string `json:"id_token"`
|
|
|
|
}
|
|
|
|
|
2014-05-10 11:41:39 +04:00
|
|
|
// TokenFetcher refreshes or fetches a new access token from the
|
2014-05-06 01:54:23 +04:00
|
|
|
// provider. It should return an error if it's not capable of
|
|
|
|
// retrieving a token.
|
2014-05-10 11:41:39 +04:00
|
|
|
type TokenFetcher interface {
|
|
|
|
// FetchToken retrieves a new access token for the provider.
|
2014-05-06 01:54:23 +04:00
|
|
|
// If the implementation doesn't know how to retrieve a new token,
|
|
|
|
// it returns an error.
|
2014-05-10 11:41:39 +04:00
|
|
|
FetchToken(existing *Token) (*Token, error)
|
2014-05-06 01:54:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Options represents options to provide OAuth 2.0 client credentials
|
|
|
|
// and access level. A sample configuration:
|
|
|
|
//
|
|
|
|
// opts := &oauth2.Options{
|
|
|
|
// ClientID: "<clientID>",
|
|
|
|
// ClientSecret: "ad4364309eff",
|
|
|
|
// RedirectURL: "https://homepage/oauth2callback",
|
|
|
|
// Scopes: []string{"scope1", "scope2"},
|
|
|
|
// AccessType: "offline", // retrieves a refresh token
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
type Options struct {
|
|
|
|
// ClientID is the OAuth client identifier used when communicating with
|
|
|
|
// the configured OAuth provider.
|
|
|
|
ClientID string `json:"client_id"`
|
|
|
|
|
|
|
|
// ClientSecret is the OAuth client secret used when communicating with
|
|
|
|
// the configured OAuth provider.
|
|
|
|
ClientSecret string `json:"client_secret"`
|
|
|
|
|
|
|
|
// RedirectURL is the URL to which the user will be returned after
|
|
|
|
// granting (or denying) access.
|
|
|
|
RedirectURL string `json:"redirect_url"`
|
|
|
|
|
|
|
|
// Optional, identifies the level of access being requested.
|
|
|
|
Scopes []string `json:"scopes"`
|
|
|
|
|
|
|
|
// Optional, "online" (default) or "offline", no refresh token if "online"
|
|
|
|
AccessType string `json:"omit"`
|
|
|
|
|
|
|
|
// ApprovalPrompt indicates whether the user should be
|
|
|
|
// re-prompted for consent. If set to "auto" (default) the
|
|
|
|
// user will be prompted only if they haven't previously
|
|
|
|
// granted consent and the code can only be exchanged for an
|
|
|
|
// access token.
|
|
|
|
// If set to "force" the user will always be prompted, and the
|
|
|
|
// code can be exchanged for a refresh token.
|
|
|
|
ApprovalPrompt string `json:"omit"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewConfig creates a generic OAuth 2.0 configuration that talks
|
|
|
|
// to an OAuth 2.0 provider specified with authURL and tokenURL.
|
2014-07-21 08:07:57 +04:00
|
|
|
func NewConfig(opts *Options, authURL, tokenURL string) (*Config, error) {
|
2014-07-21 08:08:11 +04:00
|
|
|
aURL, err := url.Parse(authURL)
|
|
|
|
if err != nil {
|
2014-07-21 08:07:57 +04:00
|
|
|
return nil, err
|
2014-07-21 03:56:38 +04:00
|
|
|
}
|
2014-07-21 08:08:11 +04:00
|
|
|
tURL, err := url.Parse(tokenURL)
|
|
|
|
if err != nil {
|
2014-07-21 08:07:57 +04:00
|
|
|
return nil, err
|
2014-05-06 01:54:23 +04:00
|
|
|
}
|
2014-07-21 08:07:57 +04:00
|
|
|
conf := &Config{opts: opts, authURL: aURL, tokenURL: tURL}
|
2014-07-21 03:56:38 +04:00
|
|
|
if err = conf.validate(); err != nil {
|
2014-05-06 01:54:23 +04:00
|
|
|
return nil, err
|
|
|
|
}
|
2014-07-21 08:07:57 +04:00
|
|
|
return conf, nil
|
2014-05-06 01:54:23 +04:00
|
|
|
}
|
|
|
|
|
2014-05-10 15:16:50 +04:00
|
|
|
// Config represents the configuration of an OAuth 2.0 consumer client.
|
|
|
|
type Config struct {
|
2014-05-06 01:54:23 +04:00
|
|
|
opts *Options
|
|
|
|
// AuthURL is the URL the user will be directed to
|
|
|
|
// in order to grant access.
|
2014-07-21 03:56:38 +04:00
|
|
|
authURL *url.URL
|
2014-05-06 01:54:23 +04:00
|
|
|
// TokenURL is the URL used to retrieve OAuth tokens.
|
2014-07-21 03:56:38 +04:00
|
|
|
tokenURL *url.URL
|
2014-05-06 01:54:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// AuthCodeURL returns a URL to OAuth 2.0 provider's consent page
|
|
|
|
// that asks for permissions for the required scopes explicitly.
|
2014-07-21 03:56:38 +04:00
|
|
|
func (c *Config) AuthCodeURL(state string) (authURL string) {
|
2014-07-21 08:08:11 +04:00
|
|
|
u := *c.authURL
|
2014-07-29 23:39:33 +04:00
|
|
|
vals := url.Values{
|
|
|
|
"response_type": {"code"},
|
|
|
|
"client_id": {c.opts.ClientID},
|
|
|
|
"scope": {strings.Join(c.opts.Scopes, " ")},
|
|
|
|
"state": {state},
|
|
|
|
}
|
|
|
|
if c.opts.AccessType != "" {
|
|
|
|
vals.Set("access_type", c.opts.AccessType)
|
|
|
|
}
|
|
|
|
if c.opts.ApprovalPrompt != "" {
|
|
|
|
vals.Set("approval_prompt", c.opts.ApprovalPrompt)
|
|
|
|
}
|
|
|
|
if c.opts.RedirectURL != "" {
|
|
|
|
vals.Set("redirect_uri", c.opts.RedirectURL)
|
|
|
|
}
|
|
|
|
q := vals.Encode()
|
2014-05-06 01:54:23 +04:00
|
|
|
if u.RawQuery == "" {
|
|
|
|
u.RawQuery = q
|
|
|
|
} else {
|
|
|
|
u.RawQuery += "&" + q
|
|
|
|
}
|
2014-07-21 03:56:38 +04:00
|
|
|
return u.String()
|
2014-05-06 01:54:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewTransport creates a new authorizable transport. It doesn't
|
|
|
|
// initialize the new transport with a token, so after creation,
|
|
|
|
// you need to set a valid token (or an expired token with a valid
|
|
|
|
// refresh token) in order to be able to do authorized requests.
|
|
|
|
//
|
|
|
|
// Example:
|
|
|
|
// t, _ := c.NewTransport()
|
|
|
|
// t.SetToken(validToken)
|
|
|
|
//
|
2014-05-15 14:09:36 +04:00
|
|
|
func (c *Config) NewTransport() Transport {
|
2014-07-11 21:57:28 +04:00
|
|
|
return NewAuthorizedTransport(http.DefaultTransport, c, nil)
|
2014-05-06 01:54:23 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewTransportWithCode exchanges the OAuth 2.0 exchange code with
|
|
|
|
// the provider to fetch a new access token (and refresh token). Once
|
|
|
|
// it succesffully retrieves a new token, creates a new transport
|
|
|
|
// authorized with it.
|
2014-05-10 15:16:50 +04:00
|
|
|
func (c *Config) NewTransportWithCode(exchangeCode string) (Transport, error) {
|
2014-08-11 11:27:43 +04:00
|
|
|
token, err := c.Exchange(exchangeCode)
|
2014-05-06 01:54:23 +04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-07-11 21:57:28 +04:00
|
|
|
return NewAuthorizedTransport(http.DefaultTransport, c, token), nil
|
2014-05-06 01:54:23 +04:00
|
|
|
}
|
|
|
|
|
2014-05-10 11:41:39 +04:00
|
|
|
// FetchToken retrieves a new access token and updates the existing token
|
2014-05-06 01:54:23 +04:00
|
|
|
// with the newly fetched credentials. If existing token doesn't
|
|
|
|
// contain a refresh token, it returns an error.
|
2014-05-10 15:16:50 +04:00
|
|
|
func (c *Config) FetchToken(existing *Token) (*Token, error) {
|
2014-05-06 01:54:23 +04:00
|
|
|
if existing == nil || existing.RefreshToken == "" {
|
|
|
|
return nil, errors.New("cannot fetch access token without refresh token.")
|
|
|
|
}
|
|
|
|
err := c.updateToken(existing, url.Values{
|
|
|
|
"grant_type": {"refresh_token"},
|
|
|
|
"refresh_token": {existing.RefreshToken},
|
|
|
|
})
|
|
|
|
return existing, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Checks if all required configuration fields have non-zero values.
|
2014-05-10 15:16:50 +04:00
|
|
|
func (c *Config) validate() error {
|
2014-05-06 01:54:23 +04:00
|
|
|
if c.opts.ClientID == "" {
|
|
|
|
return errors.New("A client ID should be provided.")
|
|
|
|
}
|
|
|
|
if c.opts.ClientSecret == "" {
|
|
|
|
return errors.New("A client secret should be provided.")
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-06-27 04:27:53 +04:00
|
|
|
// Exchange exchanges the exchange code with the OAuth 2.0 provider
|
|
|
|
// to retrieve a new access token.
|
2014-08-11 11:27:43 +04:00
|
|
|
func (c *Config) Exchange(exchangeCode string) (*Token, error) {
|
2014-06-27 04:27:53 +04:00
|
|
|
token := &Token{}
|
2014-07-29 23:39:33 +04:00
|
|
|
vals := url.Values{
|
|
|
|
"grant_type": {"authorization_code"},
|
|
|
|
"code": {exchangeCode},
|
|
|
|
}
|
|
|
|
if len(c.opts.Scopes) != 0 {
|
|
|
|
vals.Set("scope", strings.Join(c.opts.Scopes, " "))
|
|
|
|
}
|
|
|
|
if c.opts.RedirectURL != "" {
|
|
|
|
vals.Set("redirect_uri", c.opts.RedirectURL)
|
|
|
|
}
|
|
|
|
err := c.updateToken(token, vals)
|
2014-06-27 04:27:53 +04:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return token, nil
|
|
|
|
}
|
|
|
|
|
2014-05-10 15:16:50 +04:00
|
|
|
func (c *Config) updateToken(tok *Token, v url.Values) error {
|
2014-05-06 01:54:23 +04:00
|
|
|
v.Set("client_id", c.opts.ClientID)
|
|
|
|
v.Set("client_secret", c.opts.ClientSecret)
|
2014-07-21 03:56:38 +04:00
|
|
|
r, err := http.DefaultClient.PostForm(c.tokenURL.String(), v)
|
2014-05-06 01:54:23 +04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer r.Body.Close()
|
|
|
|
if r.StatusCode != 200 {
|
|
|
|
// TODO(jbd): Add status code or error message
|
|
|
|
return errors.New("Error during updating token.")
|
|
|
|
}
|
|
|
|
|
|
|
|
resp := &tokenRespBody{}
|
|
|
|
content, _, _ := mime.ParseMediaType(r.Header.Get("Content-Type"))
|
|
|
|
switch content {
|
|
|
|
case "application/x-www-form-urlencoded", "text/plain":
|
|
|
|
body, err := ioutil.ReadAll(r.Body)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
vals, err := url.ParseQuery(string(body))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
resp.AccessToken = vals.Get("access_token")
|
|
|
|
resp.TokenType = vals.Get("token_type")
|
|
|
|
resp.RefreshToken = vals.Get("refresh_token")
|
|
|
|
resp.ExpiresIn, _ = time.ParseDuration(vals.Get("expires_in") + "s")
|
|
|
|
resp.IdToken = vals.Get("id_token")
|
|
|
|
default:
|
|
|
|
if err = json.NewDecoder(r.Body).Decode(&resp); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// The JSON parser treats the unitless ExpiresIn like 'ns' instead of 's' as above,
|
|
|
|
// so compensate here.
|
|
|
|
resp.ExpiresIn *= time.Second
|
|
|
|
}
|
|
|
|
tok.AccessToken = resp.AccessToken
|
|
|
|
tok.TokenType = resp.TokenType
|
|
|
|
// Don't overwrite `RefreshToken` with an empty value
|
2014-05-10 11:41:39 +04:00
|
|
|
if resp.RefreshToken != "" {
|
2014-05-06 01:54:23 +04:00
|
|
|
tok.RefreshToken = resp.RefreshToken
|
|
|
|
}
|
|
|
|
if resp.ExpiresIn == 0 {
|
|
|
|
tok.Expiry = time.Time{}
|
|
|
|
} else {
|
|
|
|
tok.Expiry = time.Now().Add(resp.ExpiresIn)
|
|
|
|
}
|
|
|
|
if resp.IdToken != "" {
|
|
|
|
if tok.Extra == nil {
|
|
|
|
tok.Extra = make(map[string]string)
|
|
|
|
}
|
|
|
|
tok.Extra["id_token"] = resp.IdToken
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|