1
0
mirror of https://github.com/oauth2-proxy/oauth2-proxy.git synced 2024-11-30 09:16:52 +02:00
oauth2-proxy/providers/providers.go

33 lines
828 B
Go
Raw Normal View History

package providers
import (
"github.com/bitly/oauth2_proxy/cookie"
)
type Provider interface {
Data() *ProviderData
GetEmailAddress(*SessionState) (string, error)
Redeem(string, string) (*SessionState, error)
ValidateGroup(string) bool
ValidateSessionState(*SessionState) bool
2015-06-06 20:15:43 +02:00
GetLoginURL(redirectURI, finalRedirect string) string
RefreshSessionIfNeeded(*SessionState) (bool, error)
SessionFromCookie(string, *cookie.Cipher) (*SessionState, error)
CookieForSession(*SessionState, *cookie.Cipher) (string, error)
}
func New(provider string, p *ProviderData) Provider {
switch provider {
2015-03-31 21:17:17 +02:00
case "myusa":
return NewMyUsaProvider(p)
2015-04-18 00:33:17 +02:00
case "linkedin":
return NewLinkedInProvider(p)
2015-05-21 05:23:48 +02:00
case "github":
return NewGitHubProvider(p)
2015-11-09 10:28:34 +02:00
case "azure":
return NewAzureProvider(p)
default:
return NewGoogleProvider(p)
}
}