diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-04-23 07:05:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-23 07:05:51 -0400 |
commit | d924827da1db5d210eb06db2247a1403ed4c8b9a (patch) | |
tree | ce0b2405dedde4caa7107a15991b31d1c9b18eee /synapse/server.py | |
parent | Only store data in caches, not "smart" objects (#9845) (diff) | |
download | synapse-d924827da1db5d210eb06db2247a1403ed4c8b9a.tar.xz |
Check for space membership during a remote join of a restricted room (#9814)
When receiving a /send_join request for a room with join rules set to 'restricted', check if the user is a member of the spaces defined in the 'allow' key of the join rules. This only applies to an experimental room version, as defined in MSC3083.
Diffstat (limited to '')
-rw-r--r-- | synapse/server.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/synapse/server.py b/synapse/server.py index 59ae91b503..67598fffe3 100644 --- a/synapse/server.py +++ b/synapse/server.py @@ -77,6 +77,7 @@ from synapse.handlers.devicemessage import DeviceMessageHandler from synapse.handlers.directory import DirectoryHandler from synapse.handlers.e2e_keys import E2eKeysHandler from synapse.handlers.e2e_room_keys import E2eRoomKeysHandler +from synapse.handlers.event_auth import EventAuthHandler from synapse.handlers.events import EventHandler, EventStreamHandler from synapse.handlers.federation import FederationHandler from synapse.handlers.groups_local import GroupsLocalHandler, GroupsLocalWorkerHandler @@ -747,6 +748,10 @@ class HomeServer(metaclass=abc.ABCMeta): return SpaceSummaryHandler(self) @cache_in_self + def get_event_auth_handler(self) -> EventAuthHandler: + return EventAuthHandler(self) + + @cache_in_self def get_external_cache(self) -> ExternalCache: return ExternalCache(self) |