Ensure published rooms have public join rules

pull/4/merge
Erik Johnston 9 years ago
parent 0677fc1c4e
commit b2802a1351
  1. 7
      synapse/handlers/room.py

@ -953,6 +953,13 @@ class RoomListHandler(BaseHandler):
def get_state(etype, state_key):
return self.state_handler.get_current_state(room_id, etype, state_key)
# Double check that this is actually a public room.
join_rules_event = yield get_state(EventTypes.JoinRules, "")
if join_rules_event:
join_rule = join_rules_event.content.get("join_rule", None)
if join_rule and join_rule != JoinRules.PUBLIC:
defer.returnValue(None)
result = {"room_id": room_id}
if aliases:
result["aliases"] = aliases

Loading…
Cancel
Save