Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Improve logging of the mapping from SSO IDs to Matrix IDs. (#8773)
Browse files Browse the repository at this point in the history
  • Loading branch information
anoadragon453 committed Nov 23, 2020
1 parent 8ca120d commit 59a995f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
1 change: 1 addition & 0 deletions changelog.d/8773.misc
@@ -0,0 +1 @@
Minor log line improvements for the SSO mapping code used to generate Matrix IDs from SSO IDs.
5 changes: 3 additions & 2 deletions synapse/handlers/saml_handler.py
Expand Up @@ -268,7 +268,8 @@ async def _map_saml_response_to_user(
user_id = UserID(
map_username_to_mxid_localpart(attrval), self.server_name
).to_string()
logger.info(

logger.debug(
"Looking for existing account based on mapped %s %s",
self._grandfathered_mxid_source_attribute,
user_id,
Expand Down Expand Up @@ -324,7 +325,7 @@ async def _map_saml_response_to_user(
if contains_invalid_mxid_characters(localpart):
raise MappingException("localpart is invalid: %s" % (localpart,))

logger.info("Mapped SAML user to local part %s", localpart)
logger.debug("Mapped SAML user to local part %s", localpart)
registered_user_id = await self._registration_handler.register_user(
localpart=localpart,
default_display_name=displayname,
Expand Down
12 changes: 9 additions & 3 deletions synapse/handlers/sso.py
Expand Up @@ -71,19 +71,25 @@ async def get_sso_user_by_remote_user_id(
Returns:
The mxid of a previously seen user.
"""
# Check if we already have a mapping for this user.
logger.info(
logger.debug(
"Looking for existing mapping for user %s:%s",
auth_provider_id,
remote_user_id,
)

# Check if we already have a mapping for this user.
previously_registered_user_id = await self.store.get_user_by_external_id(
auth_provider_id, remote_user_id,
)

# A match was found, return the user ID.
if previously_registered_user_id is not None:
logger.info("Found existing mapping %s", previously_registered_user_id)
logger.info(
"Found existing mapping for IdP '%s' and remote_user_id '%s': %s",
auth_provider_id,
remote_user_id,
previously_registered_user_id,
)
return previously_registered_user_id

# No match.
Expand Down

0 comments on commit 59a995f

Please sign in to comment.