Skip to content
Snippets Groups Projects
Unverified Commit 7496d3d2 authored by Jason Robinson's avatar Jason Robinson Committed by GitHub
Browse files

Merge pull request #7151 from matrix-org/jaywink/saml-redirect-fix

Allow RedirectResponse in SAML response handler
parents fa4f1210 55ca6cf8
No related branches found
No related tags found
No related merge requests found
Fix error page being shown when a custom SAML handler attempted to redirect when processing an auth response.
...@@ -26,6 +26,7 @@ from synapse.config import ConfigError ...@@ -26,6 +26,7 @@ from synapse.config import ConfigError
from synapse.http.server import finish_request from synapse.http.server import finish_request
from synapse.http.servlet import parse_string from synapse.http.servlet import parse_string
from synapse.module_api import ModuleApi from synapse.module_api import ModuleApi
from synapse.module_api.errors import RedirectException
from synapse.types import ( from synapse.types import (
UserID, UserID,
map_username_to_mxid_localpart, map_username_to_mxid_localpart,
...@@ -119,6 +120,9 @@ class SamlHandler: ...@@ -119,6 +120,9 @@ class SamlHandler:
try: try:
user_id = await self._map_saml_response_to_user(resp_bytes, relay_state) user_id = await self._map_saml_response_to_user(resp_bytes, relay_state)
except RedirectException:
# Raise the exception as per the wishes of the SAML module response
raise
except Exception as e: except Exception as e:
# If decoding the response or mapping it to a user failed, then log the # If decoding the response or mapping it to a user failed, then log the
# error and tell the user that something went wrong. # error and tell the user that something went wrong.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment