summary refs log tree commit diff
path: root/synapse/module_api
diff options
context:
space:
mode:
authorAzrenbeth <7782548+Azrenbeth@users.noreply.github.com>2021-08-25 11:49:21 +0100
committerAzrenbeth <7782548+Azrenbeth@users.noreply.github.com>2021-08-25 11:49:21 +0100
commit862d820d44a45e9af20e4ab55054aa8604efccb4 (patch)
tree4fee1c35cfe563ae347687ee394d9549d315427a /synapse/module_api
parentAdded ANOTHER check for saml being enabled before loading it (diff)
downloadsynapse-github/azren/port_saml2_mapping_providers.tar.xz
(tried everything with pysaml2 uninstalled so should now work!)
Diffstat (limited to 'synapse/module_api')
-rw-r--r--synapse/module_api/__init__.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/synapse/module_api/__init__.py b/synapse/module_api/__init__.py

index f337a0f65b..49dfeb78ed 100644 --- a/synapse/module_api/__init__.py +++ b/synapse/module_api/__init__.py
@@ -117,7 +117,8 @@ class ModuleApi: self._account_validity_handler = hs.get_account_validity_handler() self._third_party_event_rules = hs.get_third_party_event_rules() self._presence_router = hs.get_presence_router() - self._saml2_user_mapping_provider = hs.get_saml2_user_mapping_provider() + if hs.config.saml2.saml2_enabled: + self._saml2_user_mapping_provider = hs.get_saml2_user_mapping_provider() ################################################################################# # The following methods should only be called during the module's initialisation. @@ -145,6 +146,10 @@ class ModuleApi: @property def register_saml2_user_mapping_provider_callbacks(self): """Registers callbacks for presence router capabilities.""" + if not self._hs.config.saml2.saml2_enabled: + raise RuntimeError( + "Saml2 is not enabled, so cannot register saml2 usr mapping provider callbacks" + ) return ( self._saml2_user_mapping_provider.register_saml2_user_mapping_provider_callbacks )