mirror of
https://github.com/teamhanko/hanko.git
synced 2025-10-27 22:27:23 +08:00
Rename identities table columns for more clarity. Rename parameters,
arguments etc. to accommodate these changes.
Change that the SAML provider domain is persisted in the identities
table as the provider ID. Use the SAML Entity ID/Issuer ID of the
IdP instead.
Introduce saml identity entity (including migrations and a persister)
as a specialization of an identity to allow for determining the
correct provider name to return to the client/frontend and for assisting
in determining whether an identity is a SAML identity (i.e. SAML
identities should have a corresponding SAML Identity instance while
OAuth/OIDC entities do not).
99 lines
2.4 KiB
Go
99 lines
2.4 KiB
Go
package thirdparty
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"github.com/teamhanko/hanko/backend/config"
|
|
"golang.org/x/oauth2"
|
|
)
|
|
|
|
const (
|
|
GoogleAuthBase = "https://accounts.google.com"
|
|
GoogleAPIBase = "https://www.googleapis.com"
|
|
GoogleOauthAuthEndpoint = GoogleAuthBase + "/o/oauth2/auth"
|
|
GoogleOauthTokenEndpoint = GoogleAuthBase + "/o/oauth2/token"
|
|
GoogleUserInfoEndpoint = GoogleAPIBase + "/oauth2/v3/userinfo"
|
|
)
|
|
|
|
var DefaultGoogleScopes = []string{
|
|
"email",
|
|
}
|
|
|
|
type googleProvider struct {
|
|
config config.ThirdPartyProvider
|
|
oauthConfig *oauth2.Config
|
|
}
|
|
|
|
type GoogleUser struct {
|
|
ID string `json:"sub"`
|
|
Name string `json:"name"`
|
|
AvatarURL string `json:"picture"`
|
|
Email string `json:"email"`
|
|
EmailVerified bool `json:"email_verified"`
|
|
}
|
|
|
|
// NewGoogleProvider creates a Google third party provider.
|
|
func NewGoogleProvider(config config.ThirdPartyProvider, redirectURL string) (OAuthProvider, error) {
|
|
if !config.Enabled {
|
|
return nil, errors.New("google provider is disabled")
|
|
}
|
|
|
|
return &googleProvider{
|
|
config: config,
|
|
oauthConfig: &oauth2.Config{
|
|
ClientID: config.ClientID,
|
|
ClientSecret: config.Secret,
|
|
Endpoint: oauth2.Endpoint{
|
|
AuthURL: GoogleOauthAuthEndpoint,
|
|
TokenURL: GoogleOauthTokenEndpoint,
|
|
},
|
|
Scopes: DefaultGoogleScopes,
|
|
RedirectURL: redirectURL,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
func (g googleProvider) AuthCodeURL(state string, opts ...oauth2.AuthCodeOption) string {
|
|
return g.oauthConfig.AuthCodeURL(state, opts...)
|
|
}
|
|
|
|
func (g googleProvider) GetOAuthToken(code string) (*oauth2.Token, error) {
|
|
return g.oauthConfig.Exchange(context.Background(), code)
|
|
}
|
|
|
|
func (g googleProvider) GetUserData(token *oauth2.Token) (*UserData, error) {
|
|
var user GoogleUser
|
|
if err := makeRequest(token, g.oauthConfig, GoogleUserInfoEndpoint, &user); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
data := &UserData{}
|
|
|
|
if user.Email != "" {
|
|
data.Emails = append(data.Emails, Email{
|
|
Email: user.Email,
|
|
Verified: user.EmailVerified,
|
|
Primary: true,
|
|
})
|
|
}
|
|
|
|
if len(data.Emails) <= 0 {
|
|
return nil, errors.New("unable to find email with Google provider")
|
|
}
|
|
|
|
data.Metadata = &Claims{
|
|
Issuer: GoogleAuthBase,
|
|
Subject: user.ID,
|
|
Name: user.Name,
|
|
Picture: user.AvatarURL,
|
|
Email: user.Email,
|
|
EmailVerified: user.EmailVerified,
|
|
}
|
|
|
|
return data, nil
|
|
}
|
|
|
|
func (g googleProvider) ID() string {
|
|
return g.config.ID
|
|
}
|