mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2025-10-27 20:25:41 +00:00
155 lines
3.6 KiB
Go
155 lines
3.6 KiB
Go
package providers
|
|
|
|
import (
|
|
"fmt"
|
|
"tinyauth/internal/constants"
|
|
"tinyauth/internal/oauth"
|
|
"tinyauth/internal/types"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
"golang.org/x/oauth2"
|
|
"golang.org/x/oauth2/endpoints"
|
|
)
|
|
|
|
type Providers struct {
|
|
Config types.OAuthConfig
|
|
Github *oauth.OAuth
|
|
Google *oauth.OAuth
|
|
Generic *oauth.OAuth
|
|
}
|
|
|
|
func NewProviders(config types.OAuthConfig) *Providers {
|
|
providers := &Providers{
|
|
Config: config,
|
|
}
|
|
|
|
if config.GithubClientId != "" && config.GithubClientSecret != "" {
|
|
log.Info().Msg("Initializing Github OAuth")
|
|
providers.Github = oauth.NewOAuth(oauth2.Config{
|
|
ClientID: config.GithubClientId,
|
|
ClientSecret: config.GithubClientSecret,
|
|
RedirectURL: fmt.Sprintf("%s/api/oauth/callback/github", config.AppURL),
|
|
Scopes: GithubScopes(),
|
|
Endpoint: endpoints.GitHub,
|
|
}, false)
|
|
}
|
|
|
|
if config.GoogleClientId != "" && config.GoogleClientSecret != "" {
|
|
log.Info().Msg("Initializing Google OAuth")
|
|
providers.Google = oauth.NewOAuth(oauth2.Config{
|
|
ClientID: config.GoogleClientId,
|
|
ClientSecret: config.GoogleClientSecret,
|
|
RedirectURL: fmt.Sprintf("%s/api/oauth/callback/google", config.AppURL),
|
|
Scopes: GoogleScopes(),
|
|
Endpoint: endpoints.Google,
|
|
}, false)
|
|
}
|
|
|
|
if config.GenericClientId != "" && config.GenericClientSecret != "" {
|
|
log.Info().Msg("Initializing Generic OAuth")
|
|
providers.Generic = oauth.NewOAuth(oauth2.Config{
|
|
ClientID: config.GenericClientId,
|
|
ClientSecret: config.GenericClientSecret,
|
|
RedirectURL: fmt.Sprintf("%s/api/oauth/callback/generic", config.AppURL),
|
|
Scopes: config.GenericScopes,
|
|
Endpoint: oauth2.Endpoint{
|
|
AuthURL: config.GenericAuthURL,
|
|
TokenURL: config.GenericTokenURL,
|
|
},
|
|
}, config.GenericSkipSSL)
|
|
}
|
|
|
|
return providers
|
|
}
|
|
|
|
func (providers *Providers) GetProvider(provider string) *oauth.OAuth {
|
|
switch provider {
|
|
case "github":
|
|
return providers.Github
|
|
case "google":
|
|
return providers.Google
|
|
case "generic":
|
|
return providers.Generic
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func (providers *Providers) GetUser(provider string) (constants.Claims, error) {
|
|
var user constants.Claims
|
|
|
|
// Get the user from the provider
|
|
switch provider {
|
|
case "github":
|
|
if providers.Github == nil {
|
|
log.Debug().Msg("Github provider not configured")
|
|
return user, nil
|
|
}
|
|
|
|
client := providers.Github.GetClient()
|
|
|
|
log.Debug().Msg("Got client from github")
|
|
|
|
user, err := GetGithubUser(client)
|
|
if err != nil {
|
|
return user, err
|
|
}
|
|
|
|
log.Debug().Msg("Got user from github")
|
|
|
|
return user, nil
|
|
case "google":
|
|
if providers.Google == nil {
|
|
log.Debug().Msg("Google provider not configured")
|
|
return user, nil
|
|
}
|
|
|
|
client := providers.Google.GetClient()
|
|
|
|
log.Debug().Msg("Got client from google")
|
|
|
|
user, err := GetGoogleUser(client)
|
|
if err != nil {
|
|
return user, err
|
|
}
|
|
|
|
log.Debug().Msg("Got user from google")
|
|
|
|
return user, nil
|
|
case "generic":
|
|
if providers.Generic == nil {
|
|
log.Debug().Msg("Generic provider not configured")
|
|
return user, nil
|
|
}
|
|
|
|
client := providers.Generic.GetClient()
|
|
|
|
log.Debug().Msg("Got client from generic")
|
|
|
|
user, err := GetGenericUser(client, providers.Config.GenericUserURL)
|
|
if err != nil {
|
|
return user, err
|
|
}
|
|
|
|
log.Debug().Msg("Got user from generic")
|
|
|
|
return user, nil
|
|
default:
|
|
return user, nil
|
|
}
|
|
}
|
|
|
|
func (provider *Providers) GetConfiguredProviders() []string {
|
|
providers := []string{}
|
|
if provider.Github != nil {
|
|
providers = append(providers, "github")
|
|
}
|
|
if provider.Google != nil {
|
|
providers = append(providers, "google")
|
|
}
|
|
if provider.Generic != nil {
|
|
providers = append(providers, "generic")
|
|
}
|
|
return providers
|
|
}
|