diff options
author | Erik Johnston <erikj@jki.re> | 2019-03-21 14:07:17 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-21 14:07:17 +0000 |
commit | 01e6b405be57183618fade0ecadc76adc805a2b4 (patch) | |
tree | 1e63595ae93ac0f579f2c4ba91b3d657cb14f2a8 /synapse/handlers/initial_sync.py | |
parent | Update Apache Setup To Remove Location Syntax (#4870) (diff) | |
parent | Update changelog.d/4908.bugfix (diff) | |
download | synapse-01e6b405be57183618fade0ecadc76adc805a2b4.tar.xz |
Merge pull request #4908 from matrix-org/erikj/block_peek_on_blocked_rooms
Deny peeking into rooms that have been blocked
Diffstat (limited to 'synapse/handlers/initial_sync.py')
-rw-r--r-- | synapse/handlers/initial_sync.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/synapse/handlers/initial_sync.py b/synapse/handlers/initial_sync.py index 563bb3cea3..7dfae78db0 100644 --- a/synapse/handlers/initial_sync.py +++ b/synapse/handlers/initial_sync.py @@ -18,7 +18,7 @@ import logging from twisted.internet import defer from synapse.api.constants import EventTypes, Membership -from synapse.api.errors import AuthError, Codes +from synapse.api.errors import AuthError, Codes, SynapseError from synapse.events.utils import serialize_event from synapse.events.validator import EventValidator from synapse.handlers.presence import format_user_presence_state @@ -262,6 +262,10 @@ class InitialSyncHandler(BaseHandler): A JSON serialisable dict with the snapshot of the room. """ + blocked = yield self.store.is_room_blocked(room_id) + if blocked: + raise SynapseError(403, "This room has been blocked on this server") + user_id = requester.user.to_string() membership, member_event_id = yield self._check_in_room_or_world_readable( |