2015-05-21 05:23:48 +02:00
|
|
|
package providers
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2020-05-05 17:53:33 +02:00
|
|
|
"context"
|
2015-05-21 05:23:48 +02:00
|
|
|
"errors"
|
2015-06-06 20:15:43 +02:00
|
|
|
"fmt"
|
2015-05-21 05:23:48 +02:00
|
|
|
"net/url"
|
2019-05-07 16:32:46 +02:00
|
|
|
"time"
|
2015-06-23 13:23:39 +02:00
|
|
|
|
2020-04-28 08:46:46 +02:00
|
|
|
"github.com/coreos/go-oidc"
|
|
|
|
|
2020-09-29 18:44:42 +02:00
|
|
|
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/apis/sessions"
|
|
|
|
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/requests"
|
2015-05-21 05:23:48 +02:00
|
|
|
)
|
|
|
|
|
2020-05-05 17:53:33 +02:00
|
|
|
var _ Provider = (*ProviderData)(nil)
|
|
|
|
|
2018-12-20 12:37:59 +02:00
|
|
|
// Redeem provides a default implementation of the OAuth2 token redemption process
|
2020-05-05 17:53:33 +02:00
|
|
|
func (p *ProviderData) Redeem(ctx context.Context, redirectURL, code string) (s *sessions.SessionState, err error) {
|
2015-05-21 05:23:48 +02:00
|
|
|
if code == "" {
|
|
|
|
err = errors.New("missing code")
|
|
|
|
return
|
|
|
|
}
|
2020-02-15 15:44:39 +02:00
|
|
|
clientSecret, err := p.GetClientSecret()
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2015-05-21 05:23:48 +02:00
|
|
|
|
|
|
|
params := url.Values{}
|
2015-11-09 01:47:44 +02:00
|
|
|
params.Add("redirect_uri", redirectURL)
|
2015-05-21 05:23:48 +02:00
|
|
|
params.Add("client_id", p.ClientID)
|
2020-02-15 15:44:39 +02:00
|
|
|
params.Add("client_secret", clientSecret)
|
2015-05-21 05:23:48 +02:00
|
|
|
params.Add("code", code)
|
|
|
|
params.Add("grant_type", "authorization_code")
|
2015-11-09 10:28:34 +02:00
|
|
|
if p.ProtectedResource != nil && p.ProtectedResource.String() != "" {
|
|
|
|
params.Add("resource", p.ProtectedResource.String())
|
|
|
|
}
|
|
|
|
|
2020-07-06 18:42:26 +02:00
|
|
|
result := requests.New(p.RedeemURL.String()).
|
2020-07-03 20:27:25 +02:00
|
|
|
WithContext(ctx).
|
|
|
|
WithMethod("POST").
|
|
|
|
WithBody(bytes.NewBufferString(params.Encode())).
|
|
|
|
SetHeader("Content-Type", "application/x-www-form-urlencoded").
|
|
|
|
Do()
|
2020-07-06 18:42:26 +02:00
|
|
|
if result.Error() != nil {
|
|
|
|
return nil, result.Error()
|
2015-06-06 20:15:43 +02:00
|
|
|
}
|
|
|
|
|
2015-05-21 05:23:48 +02:00
|
|
|
// blindly try json and x-www-form-urlencoded
|
|
|
|
var jsonResponse struct {
|
|
|
|
AccessToken string `json:"access_token"`
|
|
|
|
}
|
2020-07-06 18:42:26 +02:00
|
|
|
err = result.UnmarshalInto(&jsonResponse)
|
2015-05-21 05:23:48 +02:00
|
|
|
if err == nil {
|
2019-05-05 14:33:13 +02:00
|
|
|
s = &sessions.SessionState{
|
2015-06-23 13:23:39 +02:00
|
|
|
AccessToken: jsonResponse.AccessToken,
|
|
|
|
}
|
|
|
|
return
|
2015-05-21 05:23:48 +02:00
|
|
|
}
|
|
|
|
|
2015-06-23 13:23:39 +02:00
|
|
|
var v url.Values
|
2020-07-06 18:42:26 +02:00
|
|
|
v, err = url.ParseQuery(string(result.Body()))
|
2015-06-23 13:23:39 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if a := v.Get("access_token"); a != "" {
|
2020-05-30 09:53:38 +02:00
|
|
|
created := time.Now()
|
|
|
|
s = &sessions.SessionState{AccessToken: a, CreatedAt: &created}
|
2015-06-23 13:23:39 +02:00
|
|
|
} else {
|
2020-07-06 18:42:26 +02:00
|
|
|
err = fmt.Errorf("no access token found %s", result.Body())
|
2015-06-23 13:23:39 +02:00
|
|
|
}
|
|
|
|
return
|
2015-05-21 05:23:48 +02:00
|
|
|
}
|
2015-06-06 20:15:43 +02:00
|
|
|
|
2020-09-14 13:22:53 +02:00
|
|
|
// GetLoginURL with typical oauth parameters
|
|
|
|
func (p *ProviderData) GetLoginURL(redirectURI, state string) string {
|
2020-09-15 10:20:10 +02:00
|
|
|
extraParams := url.Values{}
|
|
|
|
a := makeLoginURL(p, redirectURI, state, extraParams)
|
2015-06-23 19:23:47 +02:00
|
|
|
return a.String()
|
2015-06-06 20:15:43 +02:00
|
|
|
}
|
2015-06-23 13:23:39 +02:00
|
|
|
|
2018-12-20 12:37:59 +02:00
|
|
|
// GetEmailAddress returns the Account email address
|
2020-05-05 17:53:33 +02:00
|
|
|
func (p *ProviderData) GetEmailAddress(ctx context.Context, s *sessions.SessionState) (string, error) {
|
2015-06-23 13:23:39 +02:00
|
|
|
return "", errors.New("not implemented")
|
|
|
|
}
|
|
|
|
|
2017-09-26 23:31:27 +02:00
|
|
|
// GetUserName returns the Account username
|
2020-05-05 17:53:33 +02:00
|
|
|
func (p *ProviderData) GetUserName(ctx context.Context, s *sessions.SessionState) (string, error) {
|
2020-03-01 17:02:51 +02:00
|
|
|
return "", errors.New("not implemented")
|
|
|
|
}
|
|
|
|
|
2015-08-20 12:07:02 +02:00
|
|
|
// ValidateGroup validates that the provided email exists in the configured provider
|
|
|
|
// email group(s).
|
|
|
|
func (p *ProviderData) ValidateGroup(email string) bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2018-12-20 12:37:59 +02:00
|
|
|
// ValidateSessionState validates the AccessToken
|
2020-05-05 17:53:33 +02:00
|
|
|
func (p *ProviderData) ValidateSessionState(ctx context.Context, s *sessions.SessionState) bool {
|
|
|
|
return validateToken(ctx, p, s.AccessToken, nil)
|
2015-06-23 13:23:39 +02:00
|
|
|
}
|
|
|
|
|
2018-11-29 16:26:41 +02:00
|
|
|
// RefreshSessionIfNeeded should refresh the user's session if required and
|
|
|
|
// do nothing if a refresh is not required
|
2020-05-05 17:53:33 +02:00
|
|
|
func (p *ProviderData) RefreshSessionIfNeeded(ctx context.Context, s *sessions.SessionState) (bool, error) {
|
2015-06-23 13:23:39 +02:00
|
|
|
return false, nil
|
|
|
|
}
|
2020-04-28 08:46:46 +02:00
|
|
|
|
2020-07-18 01:42:51 +02:00
|
|
|
// CreateSessionStateFromBearerToken should be implemented to allow providers
|
|
|
|
// to convert ID tokens into sessions
|
2020-05-05 17:53:33 +02:00
|
|
|
func (p *ProviderData) CreateSessionStateFromBearerToken(ctx context.Context, rawIDToken string, idToken *oidc.IDToken) (*sessions.SessionState, error) {
|
2020-07-18 01:42:51 +02:00
|
|
|
return nil, errors.New("not implemented")
|
2020-04-28 08:46:46 +02:00
|
|
|
}
|