diff options
author | Erik Johnston <erik@matrix.org> | 2016-03-22 11:57:39 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-03-22 11:57:39 +0000 |
commit | d6ac7525380076cbae33b631d58725758f97e459 (patch) | |
tree | 722d4483ab0e70a3242f2d53a6c4f9ee9e728a34 /synapse/handlers | |
parent | Merge pull request #658 from matrix-org/markjh/cleanup (diff) | |
parent | Doc string (diff) | |
download | synapse-d6ac7525380076cbae33b631d58725758f97e459.tar.xz |
Merge pull request #657 from matrix-org/erikj/roomlist
Add published room list edit API
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/directory.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/synapse/handlers/directory.py b/synapse/handlers/directory.py index 6bcc5a5e2b..8eeb225811 100644 --- a/synapse/handlers/directory.py +++ b/synapse/handlers/directory.py @@ -317,3 +317,25 @@ class DirectoryHandler(BaseHandler): is_admin = yield self.auth.is_server_admin(UserID.from_string(user_id)) defer.returnValue(is_admin) + + @defer.inlineCallbacks + def edit_published_room_list(self, requester, room_id, visibility): + """Edit the entry of the room in the published room list. + + requester + room_id (str) + visibility (str): "public" or "private" + """ + if requester.is_guest: + raise AuthError(403, "Guests cannot edit the published room list") + + if visibility not in ["public", "private"]: + raise SynapseError(400, "Invalid visibility setting") + + room = yield self.store.get_room(room_id) + if room is None: + raise SynapseError(400, "Unknown room") + + yield self.auth.check_can_change_room_list(room_id, requester.user) + + yield self.store.set_room_is_public(room_id, visibility == "public") |