summary refs log tree commit diff
path: root/synapse/util
diff options
context:
space:
mode:
authorBen Banfield-Zanin <benbz@matrix.org>2020-04-30 08:24:15 +0100
committerBen Banfield-Zanin <benbz@matrix.org>2020-04-30 08:24:15 +0100
commit80c66c4bca3ba494ab1ae194640b647bf95effb1 (patch)
treebb0266d950f5dc49d6501a43406973dada4a80a9 /synapse/util
parent1.12.4 (diff)
parentImprove error message (diff)
downloadsynapse-bbz/info-mainline2.tar.xz
Merge remote-tracking branch 'origin/babolivier/info_mainline' into bbz/info-mainline2 github/bbz/info-mainline2 bbz/info-mainline2
Diffstat (limited to 'synapse/util')
-rw-r--r--synapse/util/threepids.py28
1 files changed, 27 insertions, 1 deletions
diff --git a/synapse/util/threepids.py b/synapse/util/threepids.py

index 3ec1dfb0c2..20cf4c4a81 100644 --- a/synapse/util/threepids.py +++ b/synapse/util/threepids.py
@@ -19,7 +19,7 @@ import re logger = logging.getLogger(__name__) -def check_3pid_allowed(hs, medium, address): +async def check_3pid_allowed(hs, medium, address): """Checks whether a given format of 3PID is allowed to be used on this HS Args: @@ -31,6 +31,32 @@ def check_3pid_allowed(hs, medium, address): bool: whether the 3PID medium/address is allowed to be added to this HS """ + if hs.config.check_is_for_allowed_local_3pids: + data = await hs.get_simple_http_client().get_json( + "https://%s%s" % ( + hs.config.check_is_for_allowed_local_3pids, + "/_matrix/identity/api/v1/internal-info" + ), + {'medium': medium, 'address': address} + ) + + # Check for invalid response + if 'hs' not in data and 'shadow_hs' not in data: + return False + + # Check if this user is intended to register for this homeserver + if ( + data.get('hs') != hs.config.server_name + and data.get('shadow_hs') != hs.config.server_name + ): + return False + + if data.get('requires_invite', False) and not data.get('invited', False): + # Requires an invite but hasn't been invited + return False + + return True + if hs.config.allowed_local_3pids: for constraint in hs.config.allowed_local_3pids: logger.debug(