mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Simplify call to generate_room_entry
This commit is contained in:
parent
4b9e5076c4
commit
84c0a20dfe
@ -300,24 +300,24 @@ class RoomListHandler(BaseHandler):
|
|||||||
# We've already got enough, so lets just drop it.
|
# We've already got enough, so lets just drop it.
|
||||||
return
|
return
|
||||||
|
|
||||||
if from_federation:
|
|
||||||
result = yield self.generate_room_entry(room_id,
|
result = yield self.generate_room_entry(room_id,
|
||||||
self.config.allow_non_federated_in_public_rooms,
|
|
||||||
num_joined_users)
|
num_joined_users)
|
||||||
else:
|
|
||||||
result = yield self.generate_room_entry(room_id, True, num_joined_users)
|
|
||||||
|
|
||||||
if result and _matches_room_entry(result, search_filter):
|
if from_federation and not self.config.allow_non_federated_in_public_rooms:
|
||||||
|
if result["m.federate"] = False:
|
||||||
|
# This is a non-federating room and the config has chosen not
|
||||||
|
# to show these rooms to other servers
|
||||||
|
chunk.append(None)
|
||||||
|
else if result and _matches_room_entry(result, search_filter):
|
||||||
chunk.append(result)
|
chunk.append(result)
|
||||||
|
|
||||||
@cachedInlineCallbacks(num_args=2, cache_context=True)
|
@cachedInlineCallbacks(num_args=2, cache_context=True)
|
||||||
def generate_room_entry(self, room_id, allow_non_federated, num_joined_users,
|
def generate_room_entry(self, room_id, num_joined_users,
|
||||||
cache_context, with_alias=True, allow_private=False):
|
cache_context, with_alias=True, allow_private=False):
|
||||||
"""Returns the entry for a room
|
"""Returns the entry for a room
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
room_id (str): The room's ID.
|
room_id (str): The room's ID.
|
||||||
allow_non_federated (bool): Whether rooms with federation
|
|
||||||
disabled should be shown.
|
disabled should be shown.
|
||||||
num_joined_users (int): Number of users in the room.
|
num_joined_users (int): Number of users in the room.
|
||||||
cache_context: Information for cached responses.
|
cache_context: Information for cached responses.
|
||||||
@ -364,13 +364,9 @@ class RoomListHandler(BaseHandler):
|
|||||||
if not allow_private and join_rule and join_rule != JoinRules.PUBLIC:
|
if not allow_private and join_rule and join_rule != JoinRules.PUBLIC:
|
||||||
defer.returnValue(None)
|
defer.returnValue(None)
|
||||||
|
|
||||||
if not allow_non_federated:
|
# Return whether this room is open to federation users or not
|
||||||
# Disallow non-federated from appearing
|
|
||||||
create_event = current_state.get((EventTypes.Create, ""))
|
create_event = current_state.get((EventTypes.Create, ""))
|
||||||
if create_event:
|
result["m.federate"] = create_event.content.get("m.federate", True)
|
||||||
federate = create_event.content.get("m.federate", True)
|
|
||||||
if federate == False:
|
|
||||||
defer.returnValue(None)
|
|
||||||
|
|
||||||
if with_alias:
|
if with_alias:
|
||||||
aliases = yield self.store.get_aliases_for_room(
|
aliases = yield self.store.get_aliases_for_room(
|
||||||
|
Loading…
Reference in New Issue
Block a user