2020-05-08 08:30:40 -04:00
|
|
|
# Copyright 2020 Quentin Gliech
|
2021-01-15 08:22:12 -05:00
|
|
|
# Copyright 2020-2021 The Matrix.org Foundation C.I.C.
|
2020-05-08 08:30:40 -04:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2021-01-21 08:20:58 -05:00
|
|
|
from collections import Counter
|
2021-12-01 07:28:23 -05:00
|
|
|
from typing import Any, Collection, Iterable, List, Mapping, Optional, Tuple, Type
|
2020-12-18 07:13:03 -05:00
|
|
|
|
|
|
|
import attr
|
|
|
|
|
2020-12-18 08:34:59 -05:00
|
|
|
from synapse.config._util import validate_config
|
2021-03-16 11:46:07 -04:00
|
|
|
from synapse.config.sso import SsoAttributeRequirement
|
2021-04-22 11:43:50 -04:00
|
|
|
from synapse.types import JsonDict
|
2020-05-08 08:30:40 -04:00
|
|
|
from synapse.util.module_loader import load_module
|
2021-01-20 08:15:14 -05:00
|
|
|
from synapse.util.stringutils import parse_and_validate_mxc_uri
|
2020-05-08 08:30:40 -04:00
|
|
|
|
2022-06-30 13:48:04 -04:00
|
|
|
from ..util.check_dependencies import check_requirements
|
2021-03-09 10:03:37 -05:00
|
|
|
from ._base import Config, ConfigError, read_file
|
2020-05-08 08:30:40 -04:00
|
|
|
|
2021-04-20 14:55:20 -04:00
|
|
|
DEFAULT_USER_MAPPING_PROVIDER = "synapse.handlers.oidc.JinjaOidcMappingProvider"
|
|
|
|
# The module that JinjaOidcMappingProvider is in was renamed, we want to
|
|
|
|
# transparently handle both the same.
|
|
|
|
LEGACY_USER_MAPPING_PROVIDER = "synapse.handlers.oidc_handler.JinjaOidcMappingProvider"
|
2020-05-08 08:30:40 -04:00
|
|
|
|
|
|
|
|
|
|
|
class OIDCConfig(Config):
|
|
|
|
section = "oidc"
|
|
|
|
|
2022-04-11 12:07:23 -04:00
|
|
|
def read_config(self, config: JsonDict, **kwargs: Any) -> None:
|
2021-01-15 11:55:29 -05:00
|
|
|
self.oidc_providers = tuple(_parse_oidc_provider_configs(config))
|
|
|
|
if not self.oidc_providers:
|
2020-05-08 08:30:40 -04:00
|
|
|
return
|
|
|
|
|
2022-06-30 13:48:04 -04:00
|
|
|
check_requirements("oidc")
|
2020-05-08 08:30:40 -04:00
|
|
|
|
2021-01-21 08:20:58 -05:00
|
|
|
# check we don't have any duplicate idp_ids now. (The SSO handler will also
|
|
|
|
# check for duplicates when the REST listeners get registered, but that happens
|
|
|
|
# after synapse has forked so doesn't give nice errors.)
|
|
|
|
c = Counter([i.idp_id for i in self.oidc_providers])
|
|
|
|
for idp_id, count in c.items():
|
|
|
|
if count > 1:
|
|
|
|
raise ConfigError(
|
|
|
|
"Multiple OIDC providers have the idp_id %r." % idp_id
|
|
|
|
)
|
|
|
|
|
2021-10-06 10:47:41 -04:00
|
|
|
public_baseurl = self.root.server.public_baseurl
|
2021-02-11 11:16:54 -05:00
|
|
|
self.oidc_callback_url = public_baseurl + "_synapse/client/oidc/callback"
|
2020-05-08 08:30:40 -04:00
|
|
|
|
2020-12-18 07:13:03 -05:00
|
|
|
@property
|
|
|
|
def oidc_enabled(self) -> bool:
|
|
|
|
# OIDC is enabled if we have a provider
|
2021-01-15 11:55:29 -05:00
|
|
|
return bool(self.oidc_providers)
|
2020-05-08 08:30:40 -04:00
|
|
|
|
2020-12-18 07:13:03 -05:00
|
|
|
|
2020-12-18 08:34:59 -05:00
|
|
|
# jsonschema definition of the configuration settings for an oidc identity provider
|
|
|
|
OIDC_PROVIDER_CONFIG_SCHEMA = {
|
|
|
|
"type": "object",
|
2021-03-09 10:03:37 -05:00
|
|
|
"required": ["issuer", "client_id"],
|
2020-12-18 08:34:59 -05:00
|
|
|
"properties": {
|
2021-01-27 16:31:45 -05:00
|
|
|
"idp_id": {
|
|
|
|
"type": "string",
|
|
|
|
"minLength": 1,
|
|
|
|
# MSC2858 allows a maxlen of 255, but we prefix with "oidc-"
|
|
|
|
"maxLength": 250,
|
|
|
|
"pattern": "^[A-Za-z0-9._~-]+$",
|
|
|
|
},
|
2021-01-15 08:22:12 -05:00
|
|
|
"idp_name": {"type": "string"},
|
2021-01-20 08:15:14 -05:00
|
|
|
"idp_icon": {"type": "string"},
|
2021-01-27 16:31:45 -05:00
|
|
|
"idp_brand": {
|
|
|
|
"type": "string",
|
2021-03-16 07:21:26 -04:00
|
|
|
"minLength": 1,
|
|
|
|
"maxLength": 255,
|
|
|
|
"pattern": "^[a-z][a-z0-9_.-]*$",
|
|
|
|
},
|
2020-12-18 08:34:59 -05:00
|
|
|
"discover": {"type": "boolean"},
|
|
|
|
"issuer": {"type": "string"},
|
|
|
|
"client_id": {"type": "string"},
|
|
|
|
"client_secret": {"type": "string"},
|
2021-03-09 10:03:37 -05:00
|
|
|
"client_secret_jwt_key": {
|
|
|
|
"type": "object",
|
|
|
|
"required": ["jwt_header"],
|
|
|
|
"oneOf": [
|
|
|
|
{"required": ["key"]},
|
|
|
|
{"required": ["key_file"]},
|
|
|
|
],
|
|
|
|
"properties": {
|
|
|
|
"key": {"type": "string"},
|
|
|
|
"key_file": {"type": "string"},
|
|
|
|
"jwt_header": {
|
|
|
|
"type": "object",
|
|
|
|
"required": ["alg"],
|
|
|
|
"properties": {
|
|
|
|
"alg": {"type": "string"},
|
|
|
|
},
|
|
|
|
"additionalProperties": {"type": "string"},
|
|
|
|
},
|
|
|
|
"jwt_payload": {
|
|
|
|
"type": "object",
|
|
|
|
"additionalProperties": {"type": "string"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-12-18 08:34:59 -05:00
|
|
|
"client_auth_method": {
|
|
|
|
"type": "string",
|
|
|
|
# the following list is the same as the keys of
|
|
|
|
# authlib.oauth2.auth.ClientAuth.DEFAULT_AUTH_METHODS. We inline it
|
|
|
|
# to avoid importing authlib here.
|
|
|
|
"enum": ["client_secret_basic", "client_secret_post", "none"],
|
|
|
|
},
|
|
|
|
"scopes": {"type": "array", "items": {"type": "string"}},
|
|
|
|
"authorization_endpoint": {"type": "string"},
|
|
|
|
"token_endpoint": {"type": "string"},
|
|
|
|
"userinfo_endpoint": {"type": "string"},
|
|
|
|
"jwks_uri": {"type": "string"},
|
|
|
|
"skip_verification": {"type": "boolean"},
|
|
|
|
"user_profile_method": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": ["auto", "userinfo_endpoint"],
|
|
|
|
},
|
|
|
|
"allow_existing_users": {"type": "boolean"},
|
|
|
|
"user_mapping_provider": {"type": ["object", "null"]},
|
2021-03-16 11:46:07 -04:00
|
|
|
"attribute_requirements": {
|
|
|
|
"type": "array",
|
|
|
|
"items": SsoAttributeRequirement.JSON_SCHEMA,
|
|
|
|
},
|
2020-12-18 08:34:59 -05:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2021-01-15 11:55:29 -05:00
|
|
|
# the same as OIDC_PROVIDER_CONFIG_SCHEMA, but with compulsory idp_id and idp_name
|
|
|
|
OIDC_PROVIDER_CONFIG_WITH_ID_SCHEMA = {
|
|
|
|
"allOf": [OIDC_PROVIDER_CONFIG_SCHEMA, {"required": ["idp_id", "idp_name"]}]
|
|
|
|
}
|
|
|
|
|
|
|
|
# the `oidc_providers` list can either be None (as it is in the default config), or
|
|
|
|
# a list of provider configs, each of which requires an explicit ID and name.
|
|
|
|
OIDC_PROVIDER_LIST_SCHEMA = {
|
|
|
|
"oneOf": [
|
|
|
|
{"type": "null"},
|
|
|
|
{"type": "array", "items": OIDC_PROVIDER_CONFIG_WITH_ID_SCHEMA},
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
# the `oidc_config` setting can either be None (which it used to be in the default
|
2020-12-18 08:34:59 -05:00
|
|
|
# config), or an object. If an object, it is ignored unless it has an "enabled: True"
|
|
|
|
# property.
|
|
|
|
#
|
|
|
|
# It's *possible* to represent this with jsonschema, but the resultant errors aren't
|
|
|
|
# particularly clear, so we just check for either an object or a null here, and do
|
|
|
|
# additional checks in the code.
|
|
|
|
OIDC_CONFIG_SCHEMA = {"oneOf": [{"type": "null"}, {"type": "object"}]}
|
|
|
|
|
2021-01-15 11:55:29 -05:00
|
|
|
# the top-level schema can contain an "oidc_config" and/or an "oidc_providers".
|
2020-12-18 08:34:59 -05:00
|
|
|
MAIN_CONFIG_SCHEMA = {
|
|
|
|
"type": "object",
|
2021-01-15 11:55:29 -05:00
|
|
|
"properties": {
|
|
|
|
"oidc_config": OIDC_CONFIG_SCHEMA,
|
|
|
|
"oidc_providers": OIDC_PROVIDER_LIST_SCHEMA,
|
|
|
|
},
|
2020-12-18 08:34:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-15 11:55:29 -05:00
|
|
|
def _parse_oidc_provider_configs(config: JsonDict) -> Iterable["OidcProviderConfig"]:
|
|
|
|
"""extract and parse the OIDC provider configs from the config dict
|
|
|
|
|
|
|
|
The configuration may contain either a single `oidc_config` object with an
|
|
|
|
`enabled: True` property, or a list of provider configurations under
|
|
|
|
`oidc_providers`, *or both*.
|
|
|
|
|
|
|
|
Returns a generator which yields the OidcProviderConfig objects
|
|
|
|
"""
|
|
|
|
validate_config(MAIN_CONFIG_SCHEMA, config, ())
|
|
|
|
|
2021-01-19 09:56:54 -05:00
|
|
|
for i, p in enumerate(config.get("oidc_providers") or []):
|
|
|
|
yield _parse_oidc_config_dict(p, ("oidc_providers", "<item %i>" % (i,)))
|
2021-01-15 11:55:29 -05:00
|
|
|
|
|
|
|
# for backwards-compatibility, it is also possible to provide a single "oidc_config"
|
|
|
|
# object with an "enabled: True" property.
|
|
|
|
oidc_config = config.get("oidc_config")
|
|
|
|
if oidc_config and oidc_config.get("enabled", False):
|
|
|
|
# MAIN_CONFIG_SCHEMA checks that `oidc_config` is an object, but not that
|
|
|
|
# it matches OIDC_PROVIDER_CONFIG_SCHEMA (see the comments on OIDC_CONFIG_SCHEMA
|
|
|
|
# above), so now we need to validate it.
|
|
|
|
validate_config(OIDC_PROVIDER_CONFIG_SCHEMA, oidc_config, ("oidc_config",))
|
2021-01-19 09:56:54 -05:00
|
|
|
yield _parse_oidc_config_dict(oidc_config, ("oidc_config",))
|
2021-01-15 11:55:29 -05:00
|
|
|
|
|
|
|
|
2021-01-19 09:56:54 -05:00
|
|
|
def _parse_oidc_config_dict(
|
|
|
|
oidc_config: JsonDict, config_path: Tuple[str, ...]
|
|
|
|
) -> "OidcProviderConfig":
|
2020-12-18 07:13:03 -05:00
|
|
|
"""Take the configuration dict and parse it into an OidcProviderConfig
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
ConfigError if the configuration is malformed.
|
|
|
|
"""
|
|
|
|
ump_config = oidc_config.get("user_mapping_provider", {})
|
|
|
|
ump_config.setdefault("module", DEFAULT_USER_MAPPING_PROVIDER)
|
2021-04-20 14:55:20 -04:00
|
|
|
if ump_config.get("module") == LEGACY_USER_MAPPING_PROVIDER:
|
|
|
|
ump_config["module"] = DEFAULT_USER_MAPPING_PROVIDER
|
2020-12-18 07:13:03 -05:00
|
|
|
ump_config.setdefault("config", {})
|
|
|
|
|
|
|
|
(
|
|
|
|
user_mapping_provider_class,
|
|
|
|
user_mapping_provider_config,
|
2021-01-19 09:56:54 -05:00
|
|
|
) = load_module(ump_config, config_path + ("user_mapping_provider",))
|
2020-12-18 07:13:03 -05:00
|
|
|
|
|
|
|
# Ensure loaded user mapping module has defined all necessary methods
|
|
|
|
required_methods = [
|
|
|
|
"get_remote_user_id",
|
|
|
|
"map_user_attributes",
|
|
|
|
]
|
|
|
|
missing_methods = [
|
|
|
|
method
|
|
|
|
for method in required_methods
|
|
|
|
if not hasattr(user_mapping_provider_class, method)
|
|
|
|
]
|
|
|
|
if missing_methods:
|
|
|
|
raise ConfigError(
|
2021-01-19 09:56:54 -05:00
|
|
|
"Class %s is missing required "
|
|
|
|
"methods: %s"
|
|
|
|
% (
|
|
|
|
user_mapping_provider_class,
|
|
|
|
", ".join(missing_methods),
|
|
|
|
),
|
|
|
|
config_path + ("user_mapping_provider", "module"),
|
2020-12-18 07:13:03 -05:00
|
|
|
)
|
|
|
|
|
2021-01-15 08:22:12 -05:00
|
|
|
idp_id = oidc_config.get("idp_id", "oidc")
|
2021-01-21 07:25:02 -05:00
|
|
|
|
|
|
|
# prefix the given IDP with a prefix specific to the SSO mechanism, to avoid
|
|
|
|
# clashes with other mechs (such as SAML, CAS).
|
|
|
|
#
|
|
|
|
# We allow "oidc" as an exception so that people migrating from old-style
|
|
|
|
# "oidc_config" format (which has long used "oidc" as its idp_id) can migrate to
|
|
|
|
# a new-style "oidc_providers" entry without changing the idp_id for their provider
|
|
|
|
# (and thereby invalidating their user_external_ids data).
|
|
|
|
|
|
|
|
if idp_id != "oidc":
|
|
|
|
idp_id = "oidc-" + idp_id
|
|
|
|
|
2021-01-20 08:15:14 -05:00
|
|
|
# MSC2858 also specifies that the idp_icon must be a valid MXC uri
|
|
|
|
idp_icon = oidc_config.get("idp_icon")
|
|
|
|
if idp_icon is not None:
|
|
|
|
try:
|
|
|
|
parse_and_validate_mxc_uri(idp_icon)
|
|
|
|
except ValueError as e:
|
|
|
|
raise ConfigError(
|
|
|
|
"idp_icon must be a valid MXC URI", config_path + ("idp_icon",)
|
|
|
|
) from e
|
|
|
|
|
2021-03-09 10:03:37 -05:00
|
|
|
client_secret_jwt_key_config = oidc_config.get("client_secret_jwt_key")
|
2021-07-15 06:02:43 -04:00
|
|
|
client_secret_jwt_key: Optional[OidcProviderClientSecretJwtKey] = None
|
2021-03-09 10:03:37 -05:00
|
|
|
if client_secret_jwt_key_config is not None:
|
|
|
|
keyfile = client_secret_jwt_key_config.get("key_file")
|
|
|
|
if keyfile:
|
|
|
|
key = read_file(keyfile, config_path + ("client_secret_jwt_key",))
|
|
|
|
else:
|
|
|
|
key = client_secret_jwt_key_config["key"]
|
|
|
|
client_secret_jwt_key = OidcProviderClientSecretJwtKey(
|
|
|
|
key=key,
|
|
|
|
jwt_header=client_secret_jwt_key_config["jwt_header"],
|
|
|
|
jwt_payload=client_secret_jwt_key_config.get("jwt_payload", {}),
|
|
|
|
)
|
2021-03-16 11:46:07 -04:00
|
|
|
# parse attribute_requirements from config (list of dicts) into a list of SsoAttributeRequirement
|
|
|
|
attribute_requirements = [
|
|
|
|
SsoAttributeRequirement(**x)
|
|
|
|
for x in oidc_config.get("attribute_requirements", [])
|
|
|
|
]
|
2021-03-09 10:03:37 -05:00
|
|
|
|
2020-12-18 07:13:03 -05:00
|
|
|
return OidcProviderConfig(
|
2021-01-15 08:22:12 -05:00
|
|
|
idp_id=idp_id,
|
|
|
|
idp_name=oidc_config.get("idp_name", "OIDC"),
|
2021-01-20 08:15:14 -05:00
|
|
|
idp_icon=idp_icon,
|
2021-01-27 16:31:45 -05:00
|
|
|
idp_brand=oidc_config.get("idp_brand"),
|
2020-12-18 07:13:03 -05:00
|
|
|
discover=oidc_config.get("discover", True),
|
|
|
|
issuer=oidc_config["issuer"],
|
|
|
|
client_id=oidc_config["client_id"],
|
2021-03-09 10:03:37 -05:00
|
|
|
client_secret=oidc_config.get("client_secret"),
|
|
|
|
client_secret_jwt_key=client_secret_jwt_key,
|
2020-12-18 07:13:03 -05:00
|
|
|
client_auth_method=oidc_config.get("client_auth_method", "client_secret_basic"),
|
|
|
|
scopes=oidc_config.get("scopes", ["openid"]),
|
|
|
|
authorization_endpoint=oidc_config.get("authorization_endpoint"),
|
|
|
|
token_endpoint=oidc_config.get("token_endpoint"),
|
|
|
|
userinfo_endpoint=oidc_config.get("userinfo_endpoint"),
|
|
|
|
jwks_uri=oidc_config.get("jwks_uri"),
|
|
|
|
skip_verification=oidc_config.get("skip_verification", False),
|
|
|
|
user_profile_method=oidc_config.get("user_profile_method", "auto"),
|
|
|
|
allow_existing_users=oidc_config.get("allow_existing_users", False),
|
|
|
|
user_mapping_provider_class=user_mapping_provider_class,
|
|
|
|
user_mapping_provider_config=user_mapping_provider_config,
|
2021-03-16 11:46:07 -04:00
|
|
|
attribute_requirements=attribute_requirements,
|
2020-12-18 07:13:03 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-12-01 07:28:23 -05:00
|
|
|
@attr.s(slots=True, frozen=True, auto_attribs=True)
|
2021-03-09 10:03:37 -05:00
|
|
|
class OidcProviderClientSecretJwtKey:
|
|
|
|
# a pem-encoded signing key
|
2021-12-01 07:28:23 -05:00
|
|
|
key: str
|
2021-03-09 10:03:37 -05:00
|
|
|
|
|
|
|
# properties to include in the JWT header
|
2021-12-01 07:28:23 -05:00
|
|
|
jwt_header: Mapping[str, str]
|
2021-03-09 10:03:37 -05:00
|
|
|
|
|
|
|
# properties to include in the JWT payload.
|
2021-12-01 07:28:23 -05:00
|
|
|
jwt_payload: Mapping[str, str]
|
2021-03-09 10:03:37 -05:00
|
|
|
|
|
|
|
|
2021-12-01 07:28:23 -05:00
|
|
|
@attr.s(slots=True, frozen=True, auto_attribs=True)
|
2020-12-18 07:13:03 -05:00
|
|
|
class OidcProviderConfig:
|
2021-01-15 08:22:12 -05:00
|
|
|
# a unique identifier for this identity provider. Used in the 'user_external_ids'
|
|
|
|
# table, as well as the query/path parameter used in the login protocol.
|
2021-12-01 07:28:23 -05:00
|
|
|
idp_id: str
|
2021-01-15 08:22:12 -05:00
|
|
|
|
|
|
|
# user-facing name for this identity provider.
|
2021-12-01 07:28:23 -05:00
|
|
|
idp_name: str
|
2021-01-15 08:22:12 -05:00
|
|
|
|
2021-01-20 08:15:14 -05:00
|
|
|
# Optional MXC URI for icon for this IdP.
|
2021-12-01 07:28:23 -05:00
|
|
|
idp_icon: Optional[str]
|
2021-01-20 08:15:14 -05:00
|
|
|
|
2021-01-27 16:31:45 -05:00
|
|
|
# Optional brand identifier for this IdP.
|
2021-12-01 07:28:23 -05:00
|
|
|
idp_brand: Optional[str]
|
2021-01-27 16:31:45 -05:00
|
|
|
|
2020-12-18 07:13:03 -05:00
|
|
|
# whether the OIDC discovery mechanism is used to discover endpoints
|
2021-12-01 07:28:23 -05:00
|
|
|
discover: bool
|
2020-12-18 07:13:03 -05:00
|
|
|
|
|
|
|
# the OIDC issuer. Used to validate tokens and (if discovery is enabled) to
|
|
|
|
# discover the provider's endpoints.
|
2021-12-01 07:28:23 -05:00
|
|
|
issuer: str
|
2020-12-18 07:13:03 -05:00
|
|
|
|
|
|
|
# oauth2 client id to use
|
2021-12-01 07:28:23 -05:00
|
|
|
client_id: str
|
2020-12-18 07:13:03 -05:00
|
|
|
|
2021-03-09 10:03:37 -05:00
|
|
|
# oauth2 client secret to use. if `None`, use client_secret_jwt_key to generate
|
|
|
|
# a secret.
|
2021-12-01 07:28:23 -05:00
|
|
|
client_secret: Optional[str]
|
2021-03-09 10:03:37 -05:00
|
|
|
|
|
|
|
# key to use to construct a JWT to use as a client secret. May be `None` if
|
|
|
|
# `client_secret` is set.
|
2021-12-01 07:28:23 -05:00
|
|
|
client_secret_jwt_key: Optional[OidcProviderClientSecretJwtKey]
|
2020-12-18 07:13:03 -05:00
|
|
|
|
|
|
|
# auth method to use when exchanging the token.
|
|
|
|
# Valid values are 'client_secret_basic', 'client_secret_post' and
|
|
|
|
# 'none'.
|
2021-12-01 07:28:23 -05:00
|
|
|
client_auth_method: str
|
2020-12-18 07:13:03 -05:00
|
|
|
|
|
|
|
# list of scopes to request
|
2021-12-01 07:28:23 -05:00
|
|
|
scopes: Collection[str]
|
2020-12-18 07:13:03 -05:00
|
|
|
|
|
|
|
# the oauth2 authorization endpoint. Required if discovery is disabled.
|
2021-12-01 07:28:23 -05:00
|
|
|
authorization_endpoint: Optional[str]
|
2020-12-18 07:13:03 -05:00
|
|
|
|
|
|
|
# the oauth2 token endpoint. Required if discovery is disabled.
|
2021-12-01 07:28:23 -05:00
|
|
|
token_endpoint: Optional[str]
|
2020-12-18 07:13:03 -05:00
|
|
|
|
|
|
|
# the OIDC userinfo endpoint. Required if discovery is disabled and the
|
|
|
|
# "openid" scope is not requested.
|
2021-12-01 07:28:23 -05:00
|
|
|
userinfo_endpoint: Optional[str]
|
2020-12-18 07:13:03 -05:00
|
|
|
|
|
|
|
# URI where to fetch the JWKS. Required if discovery is disabled and the
|
|
|
|
# "openid" scope is used.
|
2021-12-01 07:28:23 -05:00
|
|
|
jwks_uri: Optional[str]
|
2020-12-18 07:13:03 -05:00
|
|
|
|
|
|
|
# Whether to skip metadata verification
|
2021-12-01 07:28:23 -05:00
|
|
|
skip_verification: bool
|
2020-12-18 07:13:03 -05:00
|
|
|
|
|
|
|
# Whether to fetch the user profile from the userinfo endpoint. Valid
|
|
|
|
# values are: "auto" or "userinfo_endpoint".
|
2021-12-01 07:28:23 -05:00
|
|
|
user_profile_method: str
|
2020-12-18 07:13:03 -05:00
|
|
|
|
|
|
|
# whether to allow a user logging in via OIDC to match a pre-existing account
|
|
|
|
# instead of failing
|
2021-12-01 07:28:23 -05:00
|
|
|
allow_existing_users: bool
|
2020-12-18 07:13:03 -05:00
|
|
|
|
|
|
|
# the class of the user mapping provider
|
2021-12-01 07:28:23 -05:00
|
|
|
user_mapping_provider_class: Type
|
2020-12-18 07:13:03 -05:00
|
|
|
|
|
|
|
# the config of the user mapping provider
|
2021-12-01 07:28:23 -05:00
|
|
|
user_mapping_provider_config: Any
|
2021-03-16 11:46:07 -04:00
|
|
|
|
|
|
|
# required attributes to require in userinfo to allow login/registration
|
2021-12-01 07:28:23 -05:00
|
|
|
attribute_requirements: List[SsoAttributeRequirement]
|