mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-03-22 06:27:52 +00:00
62 lines
1.7 KiB
Go
62 lines
1.7 KiB
Go
package service
|
|
|
|
import (
|
|
"github.com/steveiliop56/tinyauth/internal/config"
|
|
"github.com/steveiliop56/tinyauth/internal/utils/tlog"
|
|
|
|
"golang.org/x/exp/slices"
|
|
"golang.org/x/oauth2"
|
|
)
|
|
|
|
type OAuthServiceImpl interface {
|
|
Name() string
|
|
NewRandom() string
|
|
GetAuthURL(state string, verifier string) string
|
|
GetToken(code string, verifier string) (*oauth2.Token, error)
|
|
GetUserinfo(token *oauth2.Token) (config.Claims, error)
|
|
}
|
|
|
|
type OAuthBrokerService struct {
|
|
services map[string]OAuthServiceImpl
|
|
configs map[string]config.OAuthServiceConfig
|
|
}
|
|
|
|
var presets = map[string]func(config config.OAuthServiceConfig) *OAuthService{
|
|
"github": newGitHubOAuthService,
|
|
"google": newGoogleOAuthService,
|
|
}
|
|
|
|
func NewOAuthBrokerService(configs map[string]config.OAuthServiceConfig) *OAuthBrokerService {
|
|
return &OAuthBrokerService{
|
|
services: make(map[string]OAuthServiceImpl),
|
|
configs: configs,
|
|
}
|
|
}
|
|
|
|
func (broker *OAuthBrokerService) Init() error {
|
|
for name, cfg := range broker.configs {
|
|
if presetFunc, exists := presets[name]; exists {
|
|
broker.services[name] = presetFunc(cfg)
|
|
tlog.App.Debug().Str("service", name).Msg("Loaded OAuth service from preset")
|
|
} else {
|
|
broker.services[name] = NewOAuthService(cfg)
|
|
tlog.App.Debug().Str("service", name).Msg("Loaded OAuth service from config")
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (broker *OAuthBrokerService) GetConfiguredServices() []string {
|
|
services := make([]string, 0, len(broker.services))
|
|
for name := range broker.services {
|
|
services = append(services, name)
|
|
}
|
|
slices.Sort(services)
|
|
return services
|
|
}
|
|
|
|
func (broker *OAuthBrokerService) GetService(name string) (OAuthServiceImpl, bool) {
|
|
service, exists := broker.services[name]
|
|
return service, exists
|
|
}
|