166 lines
5.8 KiB
Go
166 lines
5.8 KiB
Go
package oidc
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/ory/fosite/compose"
|
|
"github.com/ory/herodot"
|
|
|
|
"github.com/authelia/authelia/v4/internal/configuration/schema"
|
|
"github.com/authelia/authelia/v4/internal/storage"
|
|
"github.com/authelia/authelia/v4/internal/utils"
|
|
)
|
|
|
|
// NewOpenIDConnectProvider new-ups a OpenIDConnectProvider.
|
|
func NewOpenIDConnectProvider(config *schema.OpenIDConnectConfiguration, storageProvider storage.Provider) (provider OpenIDConnectProvider, err error) {
|
|
if config == nil {
|
|
return provider, nil
|
|
}
|
|
|
|
provider = OpenIDConnectProvider{
|
|
Fosite: nil,
|
|
Store: NewOpenIDConnectStore(config, storageProvider),
|
|
}
|
|
|
|
cconfig := &compose.Config{
|
|
AccessTokenLifespan: config.AccessTokenLifespan,
|
|
AuthorizeCodeLifespan: config.AuthorizeCodeLifespan,
|
|
IDTokenLifespan: config.IDTokenLifespan,
|
|
RefreshTokenLifespan: config.RefreshTokenLifespan,
|
|
SendDebugMessagesToClients: config.EnableClientDebugMessages,
|
|
MinParameterEntropy: config.MinimumParameterEntropy,
|
|
EnforcePKCE: config.EnforcePKCE == "always",
|
|
EnforcePKCEForPublicClients: config.EnforcePKCE != "never",
|
|
EnablePKCEPlainChallengeMethod: config.EnablePKCEPlainChallenge,
|
|
}
|
|
|
|
keyManager, err := NewKeyManagerWithConfiguration(config)
|
|
if err != nil {
|
|
return provider, err
|
|
}
|
|
|
|
provider.KeyManager = keyManager
|
|
|
|
key, err := provider.KeyManager.GetActivePrivateKey()
|
|
if err != nil {
|
|
return provider, err
|
|
}
|
|
|
|
strategy := &compose.CommonStrategy{
|
|
CoreStrategy: compose.NewOAuth2HMACStrategy(
|
|
cconfig,
|
|
[]byte(utils.HashSHA256FromString(config.HMACSecret)),
|
|
nil,
|
|
),
|
|
OpenIDConnectTokenStrategy: compose.NewOpenIDConnectStrategy(
|
|
cconfig,
|
|
key,
|
|
),
|
|
JWTStrategy: provider.KeyManager.Strategy(),
|
|
}
|
|
|
|
provider.Fosite = compose.Compose(
|
|
cconfig,
|
|
provider.Store,
|
|
strategy,
|
|
PlainTextHasher{},
|
|
|
|
/*
|
|
These are the OAuth2 and OpenIDConnect factories. Order is important (the OAuth2 factories at the top must
|
|
be before the OpenIDConnect factories) and taken directly from fosite.compose.ComposeAllEnabled. The
|
|
commented factories are not enabled as we don't yet use them but are still here for reference purposes.
|
|
*/
|
|
compose.OAuth2AuthorizeExplicitFactory,
|
|
compose.OAuth2AuthorizeImplicitFactory,
|
|
compose.OAuth2ClientCredentialsGrantFactory,
|
|
compose.OAuth2RefreshTokenGrantFactory,
|
|
// compose.OAuth2ResourceOwnerPasswordCredentialsFactory,
|
|
// compose.RFC7523AssertionGrantFactory,.
|
|
|
|
compose.OpenIDConnectExplicitFactory,
|
|
compose.OpenIDConnectImplicitFactory,
|
|
compose.OpenIDConnectHybridFactory,
|
|
compose.OpenIDConnectRefreshFactory,
|
|
|
|
compose.OAuth2TokenIntrospectionFactory,
|
|
compose.OAuth2TokenRevocationFactory,
|
|
|
|
compose.OAuth2PKCEFactory,
|
|
)
|
|
|
|
provider.discovery = NewOpenIDConnectWellKnownConfiguration(config.EnablePKCEPlainChallenge, provider.Pairwise())
|
|
|
|
provider.herodot = herodot.NewJSONWriter(nil)
|
|
|
|
return provider, nil
|
|
}
|
|
|
|
// Pairwise returns true if this provider is configured with clients that require pairwise.
|
|
func (p OpenIDConnectProvider) Pairwise() bool {
|
|
for _, c := range p.Store.clients {
|
|
if c.SectorIdentifier != "" {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// Write writes data with herodot.JSONWriter.
|
|
func (p OpenIDConnectProvider) Write(w http.ResponseWriter, r *http.Request, e any, opts ...herodot.EncoderOptions) {
|
|
p.herodot.Write(w, r, e, opts...)
|
|
}
|
|
|
|
// WriteError writes an error with herodot.JSONWriter.
|
|
func (p OpenIDConnectProvider) WriteError(w http.ResponseWriter, r *http.Request, err error, opts ...herodot.Option) {
|
|
p.herodot.WriteError(w, r, err, opts...)
|
|
}
|
|
|
|
// WriteErrorCode writes an error with an error code with herodot.JSONWriter.
|
|
func (p OpenIDConnectProvider) WriteErrorCode(w http.ResponseWriter, r *http.Request, code int, err error, opts ...herodot.Option) {
|
|
p.herodot.WriteErrorCode(w, r, code, err, opts...)
|
|
}
|
|
|
|
// GetOAuth2WellKnownConfiguration returns the discovery document for the OAuth Configuration.
|
|
func (p OpenIDConnectProvider) GetOAuth2WellKnownConfiguration(issuer string) OAuth2WellKnownConfiguration {
|
|
options := OAuth2WellKnownConfiguration{
|
|
CommonDiscoveryOptions: p.discovery.CommonDiscoveryOptions,
|
|
OAuth2DiscoveryOptions: p.discovery.OAuth2DiscoveryOptions,
|
|
}
|
|
|
|
options.Issuer = issuer
|
|
options.JWKSURI = fmt.Sprintf("%s%s", issuer, JWKsPath)
|
|
|
|
options.IntrospectionEndpoint = fmt.Sprintf("%s%s", issuer, IntrospectionPath)
|
|
options.TokenEndpoint = fmt.Sprintf("%s%s", issuer, TokenPath)
|
|
|
|
options.AuthorizationEndpoint = fmt.Sprintf("%s%s", issuer, AuthorizationPath)
|
|
options.RevocationEndpoint = fmt.Sprintf("%s%s", issuer, RevocationPath)
|
|
|
|
return options
|
|
}
|
|
|
|
// GetOpenIDConnectWellKnownConfiguration returns the discovery document for the OpenID Configuration.
|
|
func (p OpenIDConnectProvider) GetOpenIDConnectWellKnownConfiguration(issuer string) OpenIDConnectWellKnownConfiguration {
|
|
options := OpenIDConnectWellKnownConfiguration{
|
|
CommonDiscoveryOptions: p.discovery.CommonDiscoveryOptions,
|
|
OAuth2DiscoveryOptions: p.discovery.OAuth2DiscoveryOptions,
|
|
OpenIDConnectDiscoveryOptions: p.discovery.OpenIDConnectDiscoveryOptions,
|
|
OpenIDConnectFrontChannelLogoutDiscoveryOptions: p.discovery.OpenIDConnectFrontChannelLogoutDiscoveryOptions,
|
|
OpenIDConnectBackChannelLogoutDiscoveryOptions: p.discovery.OpenIDConnectBackChannelLogoutDiscoveryOptions,
|
|
}
|
|
|
|
options.Issuer = issuer
|
|
options.JWKSURI = fmt.Sprintf("%s%s", issuer, JWKsPath)
|
|
|
|
options.IntrospectionEndpoint = fmt.Sprintf("%s%s", issuer, IntrospectionPath)
|
|
options.TokenEndpoint = fmt.Sprintf("%s%s", issuer, TokenPath)
|
|
|
|
options.AuthorizationEndpoint = fmt.Sprintf("%s%s", issuer, AuthorizationPath)
|
|
options.RevocationEndpoint = fmt.Sprintf("%s%s", issuer, RevocationPath)
|
|
options.UserinfoEndpoint = fmt.Sprintf("%s%s", issuer, UserinfoPath)
|
|
|
|
return options
|
|
}
|