SYN-154: Tweak how the m.room.create check is done.

Don't perform the check in auth.is_host_in_room but instead do it in _do_join
and also assert that there are no m.room.members in the room before doing so.
This commit is contained in:
Kegan Dougal 2015-01-07 16:09:00 +00:00
parent 9cb4f75d53
commit 4c68460392
2 changed files with 12 additions and 12 deletions

View file

@ -423,9 +423,18 @@ class RoomMemberHandler(BaseHandler):
is_host_in_room = yield self.auth.check_host_in_room(
event.room_id,
self.hs.hostname,
context=context
self.hs.hostname
)
if not is_host_in_room:
# is *anyone* in the room?
room_member_keys = [
v for (k,v) in context.current_state.keys() if k == "m.room.member"
]
if len(room_member_keys) == 0:
# has the room been created so we can join it?
create_event = context.current_state.get(("m.room.create", ""))
if create_event:
is_host_in_room = True
if is_host_in_room:
should_do_dance = False