mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
0a970aef8a
This moves the OpenID Connect storage from memory into the SQL storage, making it persistent and allowing it to be used with clustered deployments like the rest of Authelia.
80 lines
1.7 KiB
Go
80 lines
1.7 KiB
Go
package oidc
|
|
|
|
// NewOpenIDConnectWellKnownConfiguration generates a new OpenIDConnectWellKnownConfiguration.
|
|
func NewOpenIDConnectWellKnownConfiguration(enablePKCEPlainChallenge, pairwise bool) (config OpenIDConnectWellKnownConfiguration) {
|
|
config = OpenIDConnectWellKnownConfiguration{
|
|
CommonDiscoveryOptions: CommonDiscoveryOptions{
|
|
SubjectTypesSupported: []string{
|
|
"public",
|
|
},
|
|
ResponseTypesSupported: []string{
|
|
"code",
|
|
"token",
|
|
"id_token",
|
|
"code token",
|
|
"code id_token",
|
|
"token id_token",
|
|
"code token id_token",
|
|
"none",
|
|
},
|
|
ResponseModesSupported: []string{
|
|
"form_post",
|
|
"query",
|
|
"fragment",
|
|
},
|
|
ScopesSupported: []string{
|
|
ScopeOfflineAccess,
|
|
ScopeOpenID,
|
|
ScopeProfile,
|
|
ScopeGroups,
|
|
ScopeEmail,
|
|
},
|
|
ClaimsSupported: []string{
|
|
"aud",
|
|
"exp",
|
|
"iat",
|
|
"iss",
|
|
"jti",
|
|
"rat",
|
|
"sub",
|
|
"auth_time",
|
|
"nonce",
|
|
ClaimEmail,
|
|
ClaimEmailVerified,
|
|
ClaimEmailAlts,
|
|
ClaimGroups,
|
|
ClaimPreferredUsername,
|
|
ClaimDisplayName,
|
|
},
|
|
},
|
|
OAuth2DiscoveryOptions: OAuth2DiscoveryOptions{
|
|
CodeChallengeMethodsSupported: []string{
|
|
"S256",
|
|
},
|
|
},
|
|
OpenIDConnectDiscoveryOptions: OpenIDConnectDiscoveryOptions{
|
|
IDTokenSigningAlgValuesSupported: []string{
|
|
"RS256",
|
|
},
|
|
UserinfoSigningAlgValuesSupported: []string{
|
|
"none",
|
|
"RS256",
|
|
},
|
|
RequestObjectSigningAlgValuesSupported: []string{
|
|
"none",
|
|
"RS256",
|
|
},
|
|
},
|
|
}
|
|
|
|
if pairwise {
|
|
config.SubjectTypesSupported = append(config.SubjectTypesSupported, "pairwise")
|
|
}
|
|
|
|
if enablePKCEPlainChallenge {
|
|
config.CodeChallengeMethodsSupported = append(config.CodeChallengeMethodsSupported, "plain")
|
|
}
|
|
|
|
return config
|
|
}
|