mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2026-05-07 12:58:12 +00:00
1382ab41e7
* wip * fix: fix util imports * fix: fix bootstrap import issues * fix: fix cli imports * fix: context controller * fix: use new context in user controller * fix: fix imports and context in proxy controller * fix: fix oauth and oidc controller imports and context * feat: finalize context functionality * refactor: simplify acls checking logic by passing the entire acl struct * chore: rename get basic auth to encode basic auth for clarity * fix: fix controller tests * tests: fix service tests * tests: fix utils tests * tests: move to testify for testing in utils * fix: fix config reference generator * tests: add tests for context parsing * tests: add tests for context middleware * tests: remove error wrapper from context tests * tests: fix log wrapper tests * fix: fix verion setting in cd and dockerfiles * fix: review comments batch 1 * fix: review comments batch 2 * fix: review comments batch 3 * fix: delete totp pending session cookie on totp success * tests: fix user controller tests * fix: don't audit login too early * fix: own comments
64 lines
1.7 KiB
Go
64 lines
1.7 KiB
Go
package service
|
|
|
|
import (
|
|
"github.com/tinyauthapp/tinyauth/internal/model"
|
|
"github.com/tinyauthapp/tinyauth/internal/utils/tlog"
|
|
|
|
"slices"
|
|
|
|
"golang.org/x/oauth2"
|
|
)
|
|
|
|
type OAuthServiceImpl interface {
|
|
Name() string
|
|
ID() string
|
|
NewRandom() string
|
|
GetAuthURL(state string, verifier string) string
|
|
GetToken(code string, verifier string) (*oauth2.Token, error)
|
|
GetUserinfo(token *oauth2.Token) (*model.Claims, error)
|
|
}
|
|
|
|
type OAuthBrokerService struct {
|
|
services map[string]OAuthServiceImpl
|
|
configs map[string]model.OAuthServiceConfig
|
|
}
|
|
|
|
var presets = map[string]func(config model.OAuthServiceConfig) *OAuthService{
|
|
"github": newGitHubOAuthService,
|
|
"google": newGoogleOAuthService,
|
|
}
|
|
|
|
func NewOAuthBrokerService(configs map[string]model.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, name)
|
|
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
|
|
}
|