mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2024-11-28 09:08:44 +02:00
7fe6384f38
* initial commit: add groups to azure Signed-off-by: andrewphamade@gmail.com <andrewphamade@gmail.com> * fix deprecations and linting errors Signed-off-by: Andrew Hamade <andrewphamade@gmail.com> * remove groups testing from azure provider Signed-off-by: Andrew Hamade <andrewphamade@gmail.com> * fix test error Signed-off-by: Andrew Hamade <andrewphamade@gmail.com> * verify-generate Signed-off-by: Andrew Hamade <andrewphamade@gmail.com> Signed-off-by: andrewphamade@gmail.com <andrewphamade@gmail.com> Signed-off-by: Andrew Hamade <andrewphamade@gmail.com>
91 lines
2.4 KiB
Go
91 lines
2.4 KiB
Go
package providers
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"net/url"
|
|
|
|
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/apis/sessions"
|
|
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/requests"
|
|
)
|
|
|
|
// DigitalOceanProvider represents a DigitalOcean based Identity Provider
|
|
type DigitalOceanProvider struct {
|
|
*ProviderData
|
|
}
|
|
|
|
var _ Provider = (*DigitalOceanProvider)(nil)
|
|
|
|
const (
|
|
digitalOceanProviderName = "DigitalOcean"
|
|
digitalOceanDefaultScope = "read"
|
|
)
|
|
|
|
var (
|
|
// Default Login URL for DigitalOcean.
|
|
// Pre-parsed URL of https://cloud.digitalocean.com/v1/oauth/authorize.
|
|
digitalOceanDefaultLoginURL = &url.URL{
|
|
Scheme: "https",
|
|
Host: "cloud.digitalocean.com",
|
|
Path: "/v1/oauth/authorize",
|
|
}
|
|
|
|
// Default Redeem URL for DigitalOcean.
|
|
// Pre-parsed URL of https://cloud.digitalocean.com/v1/oauth/token.
|
|
digitalOceanDefaultRedeemURL = &url.URL{
|
|
Scheme: "https",
|
|
Host: "cloud.digitalocean.com",
|
|
Path: "/v1/oauth/token",
|
|
}
|
|
|
|
// Default Profile URL for DigitalOcean.
|
|
// Pre-parsed URL of https://cloud.digitalocean.com/v2/account.
|
|
digitalOceanDefaultProfileURL = &url.URL{
|
|
Scheme: "https",
|
|
Host: "api.digitalocean.com",
|
|
Path: "/v2/account",
|
|
}
|
|
)
|
|
|
|
// NewDigitalOceanProvider initiates a new DigitalOceanProvider
|
|
func NewDigitalOceanProvider(p *ProviderData) *DigitalOceanProvider {
|
|
p.setProviderDefaults(providerDefaults{
|
|
name: digitalOceanProviderName,
|
|
loginURL: digitalOceanDefaultLoginURL,
|
|
redeemURL: digitalOceanDefaultRedeemURL,
|
|
profileURL: digitalOceanDefaultProfileURL,
|
|
validateURL: digitalOceanDefaultProfileURL,
|
|
scope: digitalOceanDefaultScope,
|
|
})
|
|
p.getAuthorizationHeaderFunc = makeOIDCHeader
|
|
|
|
return &DigitalOceanProvider{ProviderData: p}
|
|
}
|
|
|
|
// GetEmailAddress returns the Account email address
|
|
func (p *DigitalOceanProvider) GetEmailAddress(ctx context.Context, s *sessions.SessionState) (string, error) {
|
|
if s.AccessToken == "" {
|
|
return "", errors.New("missing access token")
|
|
}
|
|
|
|
json, err := requests.New(p.ProfileURL.String()).
|
|
WithContext(ctx).
|
|
WithHeaders(makeOIDCHeader(s.AccessToken)).
|
|
Do().
|
|
UnmarshalSimpleJSON()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
email, err := json.GetPath("account", "email").String()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return email, nil
|
|
}
|
|
|
|
// ValidateSession validates the AccessToken
|
|
func (p *DigitalOceanProvider) ValidateSession(ctx context.Context, s *sessions.SessionState) bool {
|
|
return validateToken(ctx, p, s.AccessToken, makeOIDCHeader(s.AccessToken))
|
|
}
|