diff options
author | Erik Johnston <erik@matrix.org> | 2015-08-20 09:55:04 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-08-20 09:55:04 +0100 |
commit | aadb2238c9647186711933666851def5e37a8dbf (patch) | |
tree | 1e06eb6f764622ac84408a9506502f02be5fc45b /synapse | |
parent | Add canonical alias to the default power levels (diff) | |
download | synapse-aadb2238c9647186711933666851def5e37a8dbf.tar.xz |
Check that the canonical room alias actually points to the room
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/handlers/_base.py | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/synapse/handlers/_base.py b/synapse/handlers/_base.py index d6c064b398..e91f1129db 100644 --- a/synapse/handlers/_base.py +++ b/synapse/handlers/_base.py @@ -18,7 +18,7 @@ from twisted.internet import defer from synapse.api.errors import LimitExceededError, SynapseError from synapse.crypto.event_signing import add_hashes_and_signatures from synapse.api.constants import Membership, EventTypes -from synapse.types import UserID +from synapse.types import UserID, RoomAlias from synapse.util.logcontext import PreserveLoggingContext @@ -130,6 +130,22 @@ class BaseHandler(object): returned_invite.signatures ) + if event.type == EventTypes.CanonicalAlias: + # Check the alias is acually valid (at this time at least) + room_alias_str = event.content.get("alias", None) + if room_alias_str: + room_alias = RoomAlias.from_string(room_alias_str) + directory_handler = self.hs.get_handlers().directory_handler + mapping = yield directory_handler.get_association(room_alias) + + if mapping["room_id"] != event.room_id: + raise SynapseError( + 400, + "Room alias %s does not point to the room" % ( + room_alias_str, + ) + ) + destinations = set(extra_destinations) for k, s in context.current_state.items(): try: |