2019-04-11 12:08:13 -04:00
|
|
|
# Copyright 2018 New Vector Ltd
|
2021-12-01 07:28:23 -05:00
|
|
|
# Copyright 2019-2021 The Matrix.org Foundation C.I.C.
|
2018-12-07 07:11:11 -05: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.
|
2019-09-19 15:29:11 -04:00
|
|
|
|
2019-12-10 12:30:16 -05:00
|
|
|
import logging
|
2021-12-01 07:28:23 -05:00
|
|
|
from typing import Any, List, Set
|
2020-03-11 15:33:16 -04:00
|
|
|
|
2021-02-11 10:05:15 -05:00
|
|
|
from synapse.config.sso import SsoAttributeRequirement
|
2021-12-01 07:28:23 -05:00
|
|
|
from synapse.types import JsonDict
|
2022-03-01 12:44:41 -05:00
|
|
|
from synapse.util.check_dependencies import DependencyException, check_requirements
|
2019-12-10 12:30:16 -05:00
|
|
|
from synapse.util.module_loader import load_module, load_python_module
|
2018-12-07 07:11:11 -05:00
|
|
|
|
|
|
|
from ._base import Config, ConfigError
|
2020-08-11 11:08:10 -04:00
|
|
|
from ._util import validate_config
|
2018-12-07 07:11:11 -05:00
|
|
|
|
2019-12-10 12:30:16 -05:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2021-04-20 14:55:20 -04:00
|
|
|
DEFAULT_USER_MAPPING_PROVIDER = "synapse.handlers.saml.DefaultSamlMappingProvider"
|
|
|
|
# The module that DefaultSamlMappingProvider is in was renamed, we want to
|
|
|
|
# transparently handle both the same.
|
|
|
|
LEGACY_USER_MAPPING_PROVIDER = (
|
2019-12-10 12:30:16 -05:00
|
|
|
"synapse.handlers.saml_handler.DefaultSamlMappingProvider"
|
|
|
|
)
|
|
|
|
|
2018-12-07 07:11:11 -05:00
|
|
|
|
2021-12-01 07:28:23 -05:00
|
|
|
def _dict_merge(merge_dict: dict, into_dict: dict) -> None:
|
2019-09-24 06:15:08 -04:00
|
|
|
"""Do a deep merge of two dicts
|
|
|
|
|
|
|
|
Recursively merges `merge_dict` into `into_dict`:
|
|
|
|
* For keys where both `merge_dict` and `into_dict` have a dict value, the values
|
|
|
|
are recursively merged
|
|
|
|
* For all other keys, the values in `into_dict` (if any) are overwritten with
|
|
|
|
the value from `merge_dict`.
|
|
|
|
|
|
|
|
Args:
|
2021-12-01 07:28:23 -05:00
|
|
|
merge_dict: dict to merge
|
|
|
|
into_dict: target dict to be modified
|
2019-09-24 06:15:08 -04:00
|
|
|
"""
|
2019-09-19 15:29:11 -04:00
|
|
|
for k, v in merge_dict.items():
|
2019-09-24 06:15:08 -04:00
|
|
|
if k not in into_dict:
|
|
|
|
into_dict[k] = v
|
2019-09-19 15:29:11 -04:00
|
|
|
continue
|
|
|
|
|
2019-09-24 06:15:08 -04:00
|
|
|
current_val = into_dict[k]
|
2019-09-19 15:29:11 -04:00
|
|
|
|
|
|
|
if isinstance(v, dict) and isinstance(current_val, dict):
|
|
|
|
_dict_merge(v, current_val)
|
|
|
|
continue
|
|
|
|
|
|
|
|
# otherwise we just overwrite
|
2019-09-24 06:15:08 -04:00
|
|
|
into_dict[k] = v
|
2019-09-19 15:29:11 -04:00
|
|
|
|
|
|
|
|
2018-12-07 07:11:11 -05:00
|
|
|
class SAML2Config(Config):
|
2019-10-10 04:39:35 -04:00
|
|
|
section = "saml2"
|
|
|
|
|
2022-04-11 12:07:23 -04:00
|
|
|
def read_config(self, config: JsonDict, **kwargs: Any) -> None:
|
2018-12-07 07:11:11 -05:00
|
|
|
self.saml2_enabled = False
|
|
|
|
|
|
|
|
saml2_config = config.get("saml2_config")
|
|
|
|
|
|
|
|
if not saml2_config or not saml2_config.get("enabled", True):
|
|
|
|
return
|
|
|
|
|
2019-09-13 07:07:03 -04:00
|
|
|
if not saml2_config.get("sp_config") and not saml2_config.get("config_path"):
|
|
|
|
return
|
|
|
|
|
2019-06-10 19:03:57 -04:00
|
|
|
try:
|
2019-06-26 18:50:55 -04:00
|
|
|
check_requirements("saml2")
|
2019-06-10 19:03:57 -04:00
|
|
|
except DependencyException as e:
|
2021-03-16 14:19:27 -04:00
|
|
|
raise ConfigError(
|
|
|
|
e.message # noqa: B306, DependencyException.message is a property
|
|
|
|
)
|
2019-06-10 19:03:57 -04:00
|
|
|
|
2018-12-07 07:11:11 -05:00
|
|
|
self.saml2_enabled = True
|
|
|
|
|
2020-08-11 11:08:10 -04:00
|
|
|
attribute_requirements = saml2_config.get("attribute_requirements") or []
|
|
|
|
self.attribute_requirements = _parse_attribute_requirements_def(
|
|
|
|
attribute_requirements
|
|
|
|
)
|
|
|
|
|
2019-09-13 10:20:49 -04:00
|
|
|
self.saml2_grandfathered_mxid_source_attribute = saml2_config.get(
|
|
|
|
"grandfathered_mxid_source_attribute", "uid"
|
|
|
|
)
|
|
|
|
|
2020-11-19 09:57:13 -05:00
|
|
|
self.saml2_idp_entityid = saml2_config.get("idp_entityid", None)
|
|
|
|
|
2019-12-10 12:30:16 -05:00
|
|
|
# user_mapping_provider may be None if the key is present but has no value
|
|
|
|
ump_dict = saml2_config.get("user_mapping_provider") or {}
|
|
|
|
|
|
|
|
# Use the default user mapping provider if not set
|
|
|
|
ump_dict.setdefault("module", DEFAULT_USER_MAPPING_PROVIDER)
|
2021-04-20 14:55:20 -04:00
|
|
|
if ump_dict.get("module") == LEGACY_USER_MAPPING_PROVIDER:
|
|
|
|
ump_dict["module"] = DEFAULT_USER_MAPPING_PROVIDER
|
2019-12-10 12:30:16 -05:00
|
|
|
|
|
|
|
# Ensure a config is present
|
|
|
|
ump_dict["config"] = ump_dict.get("config") or {}
|
|
|
|
|
|
|
|
if ump_dict["module"] == DEFAULT_USER_MAPPING_PROVIDER:
|
|
|
|
# Load deprecated options for use by the default module
|
|
|
|
old_mxid_source_attribute = saml2_config.get("mxid_source_attribute")
|
|
|
|
if old_mxid_source_attribute:
|
|
|
|
logger.warning(
|
|
|
|
"The config option saml2_config.mxid_source_attribute is deprecated. "
|
|
|
|
"Please use saml2_config.user_mapping_provider.config"
|
|
|
|
".mxid_source_attribute instead."
|
|
|
|
)
|
|
|
|
ump_dict["config"]["mxid_source_attribute"] = old_mxid_source_attribute
|
|
|
|
|
|
|
|
old_mxid_mapping = saml2_config.get("mxid_mapping")
|
|
|
|
if old_mxid_mapping:
|
|
|
|
logger.warning(
|
|
|
|
"The config option saml2_config.mxid_mapping is deprecated. Please "
|
|
|
|
"use saml2_config.user_mapping_provider.config.mxid_mapping instead."
|
|
|
|
)
|
|
|
|
ump_dict["config"]["mxid_mapping"] = old_mxid_mapping
|
|
|
|
|
|
|
|
# Retrieve an instance of the module's class
|
|
|
|
# Pass the config dictionary to the module for processing
|
|
|
|
(
|
|
|
|
self.saml2_user_mapping_provider_class,
|
|
|
|
self.saml2_user_mapping_provider_config,
|
2020-12-08 09:04:35 -05:00
|
|
|
) = load_module(ump_dict, ("saml2_config", "user_mapping_provider"))
|
2019-12-10 12:30:16 -05:00
|
|
|
|
|
|
|
# Ensure loaded user mapping module has defined all necessary methods
|
|
|
|
# Note parse_config() is already checked during the call to load_module
|
|
|
|
required_methods = [
|
|
|
|
"get_saml_attributes",
|
|
|
|
"saml_response_to_user_attributes",
|
2020-01-17 05:32:47 -05:00
|
|
|
"get_remote_user_id",
|
2019-12-10 12:30:16 -05:00
|
|
|
]
|
|
|
|
missing_methods = [
|
|
|
|
method
|
|
|
|
for method in required_methods
|
|
|
|
if not hasattr(self.saml2_user_mapping_provider_class, method)
|
|
|
|
]
|
|
|
|
if missing_methods:
|
|
|
|
raise ConfigError(
|
|
|
|
"Class specified by saml2_config."
|
|
|
|
"user_mapping_provider.module is missing required "
|
|
|
|
"methods: %s" % (", ".join(missing_methods),)
|
|
|
|
)
|
|
|
|
|
|
|
|
# Get the desired saml auth response attributes from the module
|
|
|
|
saml2_config_dict = self._default_saml_config_dict(
|
|
|
|
*self.saml2_user_mapping_provider_class.get_saml_attributes(
|
|
|
|
self.saml2_user_mapping_provider_config
|
|
|
|
)
|
|
|
|
)
|
2019-09-24 06:15:08 -04:00
|
|
|
_dict_merge(
|
|
|
|
merge_dict=saml2_config.get("sp_config", {}), into_dict=saml2_config_dict
|
|
|
|
)
|
2018-12-07 07:11:11 -05:00
|
|
|
|
|
|
|
config_path = saml2_config.get("config_path", None)
|
|
|
|
if config_path is not None:
|
2019-09-19 15:29:11 -04:00
|
|
|
mod = load_python_module(config_path)
|
2022-04-11 12:07:23 -04:00
|
|
|
config_dict_from_file = getattr(mod, "CONFIG", None)
|
|
|
|
if config_dict_from_file is None:
|
2021-05-24 15:32:01 -04:00
|
|
|
raise ConfigError(
|
|
|
|
"Config path specified by saml2_config.config_path does not "
|
|
|
|
"have a CONFIG property."
|
|
|
|
)
|
2022-04-11 12:07:23 -04:00
|
|
|
_dict_merge(merge_dict=config_dict_from_file, into_dict=saml2_config_dict)
|
2019-09-19 15:29:11 -04:00
|
|
|
|
|
|
|
import saml2.config
|
|
|
|
|
|
|
|
self.saml2_sp_config = saml2.config.SPConfig()
|
|
|
|
self.saml2_sp_config.load(saml2_config_dict)
|
2018-12-07 07:11:11 -05:00
|
|
|
|
2019-06-26 18:50:55 -04:00
|
|
|
# session lifetime: in milliseconds
|
|
|
|
self.saml2_session_lifetime = self.parse_duration(
|
2020-06-11 07:55:45 -04:00
|
|
|
saml2_config.get("saml_session_lifetime", "15m")
|
2019-06-26 18:50:55 -04:00
|
|
|
)
|
|
|
|
|
2019-12-10 12:30:16 -05:00
|
|
|
def _default_saml_config_dict(
|
2021-12-01 07:28:23 -05:00
|
|
|
self, required_attributes: Set[str], optional_attributes: Set[str]
|
|
|
|
) -> JsonDict:
|
2019-12-10 12:30:16 -05:00
|
|
|
"""Generate a configuration dictionary with required and optional attributes that
|
|
|
|
will be needed to process new user registration
|
|
|
|
|
|
|
|
Args:
|
|
|
|
required_attributes: SAML auth response attributes that are
|
|
|
|
necessary to function
|
|
|
|
optional_attributes: SAML auth response attributes that can be used to add
|
|
|
|
additional information to Synapse user accounts, but are not required
|
|
|
|
|
|
|
|
Returns:
|
2021-12-01 07:28:23 -05:00
|
|
|
A SAML configuration dictionary
|
2019-12-10 12:30:16 -05:00
|
|
|
"""
|
2018-12-07 07:11:11 -05:00
|
|
|
import saml2
|
|
|
|
|
2019-09-13 10:20:49 -04:00
|
|
|
if self.saml2_grandfathered_mxid_source_attribute:
|
|
|
|
optional_attributes.add(self.saml2_grandfathered_mxid_source_attribute)
|
|
|
|
optional_attributes -= required_attributes
|
|
|
|
|
2021-11-08 09:13:10 -05:00
|
|
|
public_baseurl = self.root.server.public_baseurl
|
2021-02-02 04:43:50 -05:00
|
|
|
metadata_url = public_baseurl + "_synapse/client/saml2/metadata.xml"
|
|
|
|
response_url = public_baseurl + "_synapse/client/saml2/authn_response"
|
2018-12-07 07:11:11 -05:00
|
|
|
return {
|
|
|
|
"entityid": metadata_url,
|
|
|
|
"service": {
|
|
|
|
"sp": {
|
|
|
|
"endpoints": {
|
|
|
|
"assertion_consumer_service": [
|
2019-06-20 05:32:02 -04:00
|
|
|
(response_url, saml2.BINDING_HTTP_POST)
|
|
|
|
]
|
2018-12-07 07:11:11 -05:00
|
|
|
},
|
2019-09-13 10:20:49 -04:00
|
|
|
"required_attributes": list(required_attributes),
|
|
|
|
"optional_attributes": list(optional_attributes),
|
|
|
|
# "name_id_format": saml2.saml.NAMEID_FORMAT_PERSISTENT,
|
2019-06-20 05:32:02 -04:00
|
|
|
}
|
|
|
|
},
|
2018-12-07 07:11:11 -05:00
|
|
|
}
|
|
|
|
|
2022-04-11 12:07:23 -04:00
|
|
|
def generate_config_section(self, config_dir_path: str, **kwargs: Any) -> str:
|
2019-03-19 06:06:40 -04:00
|
|
|
return """\
|
2020-06-03 16:13:17 -04:00
|
|
|
## Single sign-on integration ##
|
|
|
|
|
2020-10-30 10:01:59 -04:00
|
|
|
# The following settings can be used to make Synapse use a single sign-on
|
|
|
|
# provider for authentication, instead of its internal password database.
|
2018-12-07 07:11:11 -05:00
|
|
|
#
|
2020-09-14 09:05:36 -04:00
|
|
|
# You will probably also want to set the following options to `false` to
|
2019-09-13 07:07:03 -04:00
|
|
|
# disable the regular login/registration flows:
|
|
|
|
# * enable_registration
|
|
|
|
# * password_config.enabled
|
2018-12-07 07:11:11 -05:00
|
|
|
#
|
2020-09-14 09:05:36 -04:00
|
|
|
# You will also want to investigate the settings under the "sso" configuration
|
|
|
|
# section below.
|
2020-10-30 10:01:59 -04:00
|
|
|
|
|
|
|
# Enable SAML2 for registration and login. Uses pysaml2.
|
|
|
|
#
|
|
|
|
# At least one of `sp_config` or `config_path` must be set in this section to
|
|
|
|
# enable SAML login.
|
2020-09-14 09:05:36 -04:00
|
|
|
#
|
2019-06-26 19:37:41 -04:00
|
|
|
# Once SAML support is enabled, a metadata file will be exposed at
|
2021-02-02 04:43:50 -05:00
|
|
|
# https://<server>:<port>/_synapse/client/saml2/metadata.xml, which you may be able to
|
2019-06-26 19:37:41 -04:00
|
|
|
# use to configure your SAML IdP with. Alternatively, you can manually configure
|
|
|
|
# the IdP to use an ACS location of
|
2021-02-02 04:43:50 -05:00
|
|
|
# https://<server>:<port>/_synapse/client/saml2/authn_response.
|
2019-06-26 19:37:41 -04:00
|
|
|
#
|
2019-09-13 07:07:03 -04:00
|
|
|
saml2_config:
|
|
|
|
# `sp_config` is the configuration for the pysaml2 Service Provider.
|
|
|
|
# See pysaml2 docs for format of config.
|
|
|
|
#
|
|
|
|
# Default values will be used for the 'entityid' and 'service' settings,
|
|
|
|
# so it is not normally necessary to specify them unless you need to
|
|
|
|
# override them.
|
|
|
|
#
|
2020-10-30 10:01:59 -04:00
|
|
|
sp_config:
|
|
|
|
# Point this to the IdP's metadata. You must provide either a local
|
|
|
|
# file via the `local` attribute or (preferably) a URL via the
|
|
|
|
# `remote` attribute.
|
|
|
|
#
|
|
|
|
#metadata:
|
|
|
|
# local: ["saml2/idp.xml"]
|
|
|
|
# remote:
|
|
|
|
# - url: https://our_idp/metadata.xml
|
|
|
|
|
2020-11-18 07:36:28 -05:00
|
|
|
# Allowed clock difference in seconds between the homeserver and IdP.
|
|
|
|
#
|
|
|
|
# Uncomment the below to increase the accepted time difference from 0 to 3 seconds.
|
|
|
|
#
|
|
|
|
#accepted_time_diff: 3
|
|
|
|
|
2020-10-30 10:01:59 -04:00
|
|
|
# By default, the user has to go to our login page first. If you'd like
|
|
|
|
# to allow IdP-initiated login, set 'allow_unsolicited: true' in a
|
|
|
|
# 'service.sp' section:
|
|
|
|
#
|
|
|
|
#service:
|
|
|
|
# sp:
|
|
|
|
# allow_unsolicited: true
|
|
|
|
|
|
|
|
# The examples below are just used to generate our metadata xml, and you
|
|
|
|
# may well not need them, depending on your setup. Alternatively you
|
|
|
|
# may need a whole lot more detail - see the pysaml2 docs!
|
|
|
|
|
|
|
|
#description: ["My awesome SP", "en"]
|
|
|
|
#name: ["Test SP", "en"]
|
|
|
|
|
2020-11-13 07:07:50 -05:00
|
|
|
#ui_info:
|
|
|
|
# display_name:
|
|
|
|
# - lang: en
|
|
|
|
# text: "Display Name is the descriptive name of your service."
|
|
|
|
# description:
|
|
|
|
# - lang: en
|
|
|
|
# text: "Description should be a short paragraph explaining the purpose of the service."
|
|
|
|
# information_url:
|
|
|
|
# - lang: en
|
|
|
|
# text: "https://example.com/terms-of-service"
|
|
|
|
# privacy_statement_url:
|
|
|
|
# - lang: en
|
|
|
|
# text: "https://example.com/privacy-policy"
|
|
|
|
# keywords:
|
|
|
|
# - lang: en
|
|
|
|
# text: ["Matrix", "Element"]
|
|
|
|
# logo:
|
|
|
|
# - lang: en
|
|
|
|
# text: "https://example.com/logo.svg"
|
|
|
|
# width: "200"
|
|
|
|
# height: "80"
|
|
|
|
|
2020-10-30 10:01:59 -04:00
|
|
|
#organization:
|
|
|
|
# name: Example com
|
|
|
|
# display_name:
|
|
|
|
# - ["Example co", "en"]
|
|
|
|
# url: "http://example.com"
|
|
|
|
|
|
|
|
#contact_person:
|
|
|
|
# - given_name: Bob
|
|
|
|
# sur_name: "the Sysadmin"
|
|
|
|
# email_address": ["admin@example.com"]
|
|
|
|
# contact_type": technical
|
2019-09-13 07:07:03 -04:00
|
|
|
|
|
|
|
# Instead of putting the config inline as above, you can specify a
|
|
|
|
# separate pysaml2 configuration file:
|
|
|
|
#
|
|
|
|
#config_path: "%(config_dir_path)s/sp_conf.py"
|
|
|
|
|
2019-12-10 12:30:16 -05:00
|
|
|
# The lifetime of a SAML session. This defines how long a user has to
|
2019-09-13 07:07:03 -04:00
|
|
|
# complete the authentication process, if allow_unsolicited is unset.
|
2020-06-11 07:55:45 -04:00
|
|
|
# The default is 15 minutes.
|
2019-09-13 07:07:03 -04:00
|
|
|
#
|
|
|
|
#saml_session_lifetime: 5m
|
2019-09-13 10:20:49 -04:00
|
|
|
|
2019-12-10 12:30:16 -05:00
|
|
|
# An external module can be provided here as a custom solution to
|
|
|
|
# mapping attributes returned from a saml provider onto a matrix user.
|
2019-09-13 10:20:49 -04:00
|
|
|
#
|
2019-12-10 12:30:16 -05:00
|
|
|
user_mapping_provider:
|
|
|
|
# The custom module's class. Uncomment to use a custom module.
|
|
|
|
#
|
|
|
|
#module: mapping_provider.SamlMappingProvider
|
|
|
|
|
|
|
|
# Custom configuration values for the module. Below options are
|
|
|
|
# intended for the built-in provider, they should be changed if
|
|
|
|
# using a custom module. This section will be passed as a Python
|
|
|
|
# dictionary to the module's `parse_config` method.
|
|
|
|
#
|
|
|
|
config:
|
|
|
|
# The SAML attribute (after mapping via the attribute maps) to use
|
|
|
|
# to derive the Matrix ID from. 'uid' by default.
|
|
|
|
#
|
|
|
|
# Note: This used to be configured by the
|
|
|
|
# saml2_config.mxid_source_attribute option. If that is still
|
|
|
|
# defined, its value will be used instead.
|
|
|
|
#
|
|
|
|
#mxid_source_attribute: displayName
|
|
|
|
|
|
|
|
# The mapping system to use for mapping the saml attribute onto a
|
|
|
|
# matrix ID.
|
|
|
|
#
|
|
|
|
# Options include:
|
|
|
|
# * 'hexencode' (which maps unpermitted characters to '=xx')
|
|
|
|
# * 'dotreplace' (which replaces unpermitted characters with
|
|
|
|
# '.').
|
|
|
|
# The default is 'hexencode'.
|
|
|
|
#
|
|
|
|
# Note: This used to be configured by the
|
|
|
|
# saml2_config.mxid_mapping option. If that is still defined, its
|
|
|
|
# value will be used instead.
|
|
|
|
#
|
|
|
|
#mxid_mapping: dotreplace
|
|
|
|
|
|
|
|
# In previous versions of synapse, the mapping from SAML attribute to
|
|
|
|
# MXID was always calculated dynamically rather than stored in a
|
|
|
|
# table. For backwards- compatibility, we will look for user_ids
|
|
|
|
# matching such a pattern before creating a new account.
|
2019-09-13 10:20:49 -04:00
|
|
|
#
|
|
|
|
# This setting controls the SAML attribute which will be used for this
|
2019-12-10 12:30:16 -05:00
|
|
|
# backwards-compatibility lookup. Typically it should be 'uid', but if
|
|
|
|
# the attribute maps are changed, it may be necessary to change it.
|
2019-09-13 10:20:49 -04:00
|
|
|
#
|
|
|
|
# The default is 'uid'.
|
|
|
|
#
|
|
|
|
#grandfathered_mxid_source_attribute: upn
|
2020-03-10 10:04:20 -04:00
|
|
|
|
2020-08-11 11:08:10 -04:00
|
|
|
# It is possible to configure Synapse to only allow logins if SAML attributes
|
|
|
|
# match particular values. The requirements can be listed under
|
|
|
|
# `attribute_requirements` as shown below. All of the listed attributes must
|
|
|
|
# match for the login to be permitted.
|
|
|
|
#
|
|
|
|
#attribute_requirements:
|
|
|
|
# - attribute: userGroup
|
|
|
|
# value: "staff"
|
|
|
|
# - attribute: department
|
|
|
|
# value: "sales"
|
2020-11-19 09:57:13 -05:00
|
|
|
|
|
|
|
# If the metadata XML contains multiple IdP entities then the `idp_entityid`
|
|
|
|
# option must be set to the entity to redirect users to.
|
|
|
|
#
|
|
|
|
# Most deployments only have a single IdP entity and so should omit this
|
|
|
|
# option.
|
|
|
|
#
|
|
|
|
#idp_entityid: 'https://our_idp/entityid'
|
2019-06-20 05:32:02 -04:00
|
|
|
""" % {
|
|
|
|
"config_dir_path": config_dir_path
|
|
|
|
}
|
2020-08-11 11:08:10 -04:00
|
|
|
|
|
|
|
|
|
|
|
ATTRIBUTE_REQUIREMENTS_SCHEMA = {
|
|
|
|
"type": "array",
|
2021-02-11 10:05:15 -05:00
|
|
|
"items": SsoAttributeRequirement.JSON_SCHEMA,
|
2020-08-11 11:08:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def _parse_attribute_requirements_def(
|
|
|
|
attribute_requirements: Any,
|
2021-02-11 10:05:15 -05:00
|
|
|
) -> List[SsoAttributeRequirement]:
|
2020-08-11 11:08:10 -04:00
|
|
|
validate_config(
|
|
|
|
ATTRIBUTE_REQUIREMENTS_SCHEMA,
|
|
|
|
attribute_requirements,
|
2021-02-11 10:05:15 -05:00
|
|
|
config_path=("saml2_config", "attribute_requirements"),
|
2020-08-11 11:08:10 -04:00
|
|
|
)
|
2021-02-11 10:05:15 -05:00
|
|
|
return [SsoAttributeRequirement(**x) for x in attribute_requirements]
|