2016-09-14 09:07:37 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2014 - 2016 OpenMarket Ltd
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
|
|
|
from collections import namedtuple
|
2016-09-14 09:07:37 -04:00
|
|
|
|
2018-05-31 05:03:47 -04:00
|
|
|
from six import iteritems
|
2018-04-28 07:57:00 -04:00
|
|
|
from six.moves import range
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import msgpack
|
|
|
|
from unpaddedbase64 import decode_base64, encode_base64
|
|
|
|
|
|
|
|
from twisted.internet import defer
|
2016-09-14 09:07:37 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.api.constants import EventTypes, JoinRules
|
|
|
|
from synapse.types import ThirdPartyInstanceID
|
2018-08-10 09:50:21 -04:00
|
|
|
from synapse.util.async_helpers import concurrently_execute
|
2017-03-10 12:39:35 -05:00
|
|
|
from synapse.util.caches.descriptors import cachedInlineCallbacks
|
2016-09-14 09:07:37 -04:00
|
|
|
from synapse.util.caches.response_cache import ResponseCache
|
2016-09-15 04:08:57 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from ._base import BaseHandler
|
2016-09-14 09:07:37 -04:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
REMOTE_ROOM_LIST_POLL_INTERVAL = 60 * 1000
|
|
|
|
|
|
|
|
|
2016-12-06 05:43:48 -05:00
|
|
|
# This is used to indicate we should only return rooms published to the main list.
|
2018-07-13 07:03:34 -04:00
|
|
|
EMPTY_THIRD_PARTY_ID = ThirdPartyInstanceID(None, None)
|
2016-12-06 05:43:48 -05:00
|
|
|
|
|
|
|
|
2016-09-14 09:07:37 -04:00
|
|
|
class RoomListHandler(BaseHandler):
|
|
|
|
def __init__(self, hs):
|
|
|
|
super(RoomListHandler, self).__init__(hs)
|
2018-04-10 18:14:47 -04:00
|
|
|
self.response_cache = ResponseCache(hs, "room_list")
|
|
|
|
self.remote_response_cache = ResponseCache(hs, "remote_room_list",
|
|
|
|
timeout_ms=30 * 1000)
|
2016-09-14 09:07:37 -04:00
|
|
|
|
2016-09-15 12:35:20 -04:00
|
|
|
def get_local_public_room_list(self, limit=None, since_token=None,
|
2016-12-06 05:43:48 -05:00
|
|
|
search_filter=None,
|
2018-07-13 07:03:34 -04:00
|
|
|
network_tuple=EMPTY_THIRD_PARTY_ID,):
|
2016-12-06 05:43:48 -05:00
|
|
|
"""Generate a local public room list.
|
|
|
|
|
|
|
|
There are multiple different lists: the main one plus one per third
|
|
|
|
party network. A client can ask for a specific list or to return all.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
limit (int)
|
|
|
|
since_token (str)
|
|
|
|
search_filter (dict)
|
|
|
|
network_tuple (ThirdPartyInstanceID): Which public list to use.
|
|
|
|
This can be (None, None) to indicate the main list, or a particular
|
|
|
|
appservice and network id to use an appservice specific one.
|
|
|
|
Setting to None returns all public rooms across all lists.
|
|
|
|
"""
|
2017-03-10 12:39:35 -05:00
|
|
|
logger.info(
|
|
|
|
"Getting public room list: limit=%r, since=%r, search=%r, network=%r",
|
|
|
|
limit, since_token, bool(search_filter), network_tuple,
|
|
|
|
)
|
2016-12-16 11:11:43 -05:00
|
|
|
if search_filter:
|
2016-12-07 04:58:33 -05:00
|
|
|
# We explicitly don't bother caching searches or requests for
|
|
|
|
# appservice specific lists.
|
2017-10-25 05:26:06 -04:00
|
|
|
logger.info("Bypassing cache as search request.")
|
2016-12-06 05:43:48 -05:00
|
|
|
return self._get_public_room_list(
|
|
|
|
limit, since_token, search_filter, network_tuple=network_tuple,
|
|
|
|
)
|
2016-09-16 04:05:11 -04:00
|
|
|
|
2016-12-16 11:11:43 -05:00
|
|
|
key = (limit, since_token, network_tuple)
|
2018-04-12 07:08:59 -04:00
|
|
|
return self.response_cache.wrap(
|
|
|
|
key,
|
|
|
|
self._get_public_room_list,
|
|
|
|
limit, since_token, network_tuple=network_tuple,
|
|
|
|
)
|
2016-09-14 09:07:37 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2016-09-15 12:35:20 -04:00
|
|
|
def _get_public_room_list(self, limit=None, since_token=None,
|
2016-12-06 05:43:48 -05:00
|
|
|
search_filter=None,
|
2018-07-13 07:03:34 -04:00
|
|
|
network_tuple=EMPTY_THIRD_PARTY_ID,):
|
2016-09-15 05:36:19 -04:00
|
|
|
if since_token and since_token != "END":
|
|
|
|
since_token = RoomListNextBatch.from_token(since_token)
|
2016-09-15 04:08:57 -04:00
|
|
|
else:
|
2016-09-15 05:36:19 -04:00
|
|
|
since_token = None
|
2016-09-15 04:08:57 -04:00
|
|
|
|
2016-09-14 12:28:52 -04:00
|
|
|
rooms_to_order_value = {}
|
|
|
|
rooms_to_num_joined = {}
|
|
|
|
|
2016-09-15 06:27:04 -04:00
|
|
|
newly_visible = []
|
|
|
|
newly_unpublished = []
|
2016-09-15 05:36:19 -04:00
|
|
|
if since_token:
|
2016-09-15 06:27:04 -04:00
|
|
|
stream_token = since_token.stream_ordering
|
|
|
|
current_public_id = yield self.store.get_current_public_room_stream_id()
|
|
|
|
public_room_stream_id = since_token.public_room_stream_id
|
|
|
|
newly_visible, newly_unpublished = yield self.store.get_public_room_changes(
|
2016-12-06 05:43:48 -05:00
|
|
|
public_room_stream_id, current_public_id,
|
|
|
|
network_tuple=network_tuple,
|
2016-09-15 06:27:04 -04:00
|
|
|
)
|
2016-09-15 04:08:57 -04:00
|
|
|
else:
|
2016-09-15 06:27:04 -04:00
|
|
|
stream_token = yield self.store.get_room_max_stream_ordering()
|
|
|
|
public_room_stream_id = yield self.store.get_current_public_room_stream_id()
|
|
|
|
|
|
|
|
room_ids = yield self.store.get_public_room_ids_at_stream_id(
|
2016-12-06 05:43:48 -05:00
|
|
|
public_room_stream_id, network_tuple=network_tuple,
|
2016-09-15 06:27:04 -04:00
|
|
|
)
|
2016-09-14 12:28:52 -04:00
|
|
|
|
|
|
|
# We want to return rooms in a particular order: the number of joined
|
|
|
|
# users. We then arbitrarily use the room_id as a tie breaker.
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_order_for_room(room_id):
|
2017-03-13 07:53:26 -04:00
|
|
|
# Most of the rooms won't have changed between the since token and
|
|
|
|
# now (especially if the since token is "now"). So, we can ask what
|
|
|
|
# the current users are in a room (that will hit a cache) and then
|
|
|
|
# check if the room has changed since the since token. (We have to
|
|
|
|
# do it in that order to avoid races).
|
|
|
|
# If things have changed then fall back to getting the current state
|
|
|
|
# at the since token.
|
2017-03-13 05:50:10 -04:00
|
|
|
joined_users = yield self.store.get_users_in_room(room_id)
|
|
|
|
if self.store.has_room_changed_since(room_id, stream_token):
|
|
|
|
latest_event_ids = yield self.store.get_forward_extremeties_for_room(
|
|
|
|
room_id, stream_token
|
|
|
|
)
|
2016-09-14 12:28:52 -04:00
|
|
|
|
2017-03-13 05:50:10 -04:00
|
|
|
if not latest_event_ids:
|
|
|
|
return
|
|
|
|
|
|
|
|
joined_users = yield self.state_handler.get_current_user_in_room(
|
|
|
|
room_id, latest_event_ids,
|
|
|
|
)
|
2016-09-14 12:28:52 -04:00
|
|
|
|
|
|
|
num_joined_users = len(joined_users)
|
|
|
|
rooms_to_num_joined[room_id] = num_joined_users
|
|
|
|
|
|
|
|
if num_joined_users == 0:
|
|
|
|
return
|
|
|
|
|
|
|
|
# We want larger rooms to be first, hence negating num_joined_users
|
|
|
|
rooms_to_order_value[room_id] = (-num_joined_users, room_id)
|
|
|
|
|
2017-11-14 04:23:56 -05:00
|
|
|
logger.info("Getting ordering for %i rooms since %s",
|
|
|
|
len(room_ids), stream_token)
|
2016-09-14 12:28:52 -04:00
|
|
|
yield concurrently_execute(get_order_for_room, room_ids, 10)
|
|
|
|
|
|
|
|
sorted_entries = sorted(rooms_to_order_value.items(), key=lambda e: e[1])
|
|
|
|
sorted_rooms = [room_id for room_id, _ in sorted_entries]
|
|
|
|
|
2016-09-17 09:40:28 -04:00
|
|
|
# `sorted_rooms` should now be a list of all public room ids that is
|
|
|
|
# stable across pagination. Therefore, we can use indices into this
|
|
|
|
# list as our pagination tokens.
|
|
|
|
|
|
|
|
# Filter out rooms that we don't want to return
|
|
|
|
rooms_to_scan = [
|
|
|
|
r for r in sorted_rooms
|
2018-09-06 10:22:23 -04:00
|
|
|
if r not in newly_unpublished and rooms_to_num_joined[r] > 0
|
2016-09-17 09:40:28 -04:00
|
|
|
]
|
|
|
|
|
2016-09-21 08:17:08 -04:00
|
|
|
total_room_count = len(rooms_to_scan)
|
|
|
|
|
2016-09-15 05:36:19 -04:00
|
|
|
if since_token:
|
2016-09-17 09:40:28 -04:00
|
|
|
# Filter out rooms we've already returned previously
|
|
|
|
# `since_token.current_limit` is the index of the last room we
|
|
|
|
# sent down, so we exclude it and everything before/after it.
|
2016-09-15 05:36:19 -04:00
|
|
|
if since_token.direction_is_forward:
|
2016-09-17 09:40:28 -04:00
|
|
|
rooms_to_scan = rooms_to_scan[since_token.current_limit + 1:]
|
2016-09-15 05:15:37 -04:00
|
|
|
else:
|
2016-09-17 09:40:28 -04:00
|
|
|
rooms_to_scan = rooms_to_scan[:since_token.current_limit]
|
|
|
|
rooms_to_scan.reverse()
|
2016-09-15 04:08:57 -04:00
|
|
|
|
2017-11-14 04:23:56 -05:00
|
|
|
logger.info("After sorting and filtering, %i rooms remain",
|
|
|
|
len(rooms_to_scan))
|
|
|
|
|
2017-11-14 04:39:54 -05:00
|
|
|
# _append_room_entry_to_chunk will append to chunk but will stop if
|
|
|
|
# len(chunk) > limit
|
|
|
|
#
|
|
|
|
# Normally we will generate enough results on the first iteration here,
|
|
|
|
# but if there is a search filter, _append_room_entry_to_chunk may
|
|
|
|
# filter some results out, in which case we loop again.
|
|
|
|
#
|
|
|
|
# We don't want to scan over the entire range either as that
|
|
|
|
# would potentially waste a lot of work.
|
|
|
|
#
|
|
|
|
# XXX if there is no limit, we may end up DoSing the server with
|
|
|
|
# calls to get_current_state_ids for every single room on the
|
|
|
|
# server. Surely we should cap this somehow?
|
|
|
|
#
|
|
|
|
if limit:
|
2016-09-17 13:01:54 -04:00
|
|
|
step = limit + 1
|
|
|
|
else:
|
2018-01-25 19:12:02 -05:00
|
|
|
# step cannot be zero
|
|
|
|
step = len(rooms_to_scan) if len(rooms_to_scan) != 0 else 1
|
2018-01-25 19:15:10 -05:00
|
|
|
|
2017-11-14 04:39:54 -05:00
|
|
|
chunk = []
|
2018-04-28 07:57:00 -04:00
|
|
|
for i in range(0, len(rooms_to_scan), step):
|
2017-11-14 04:39:54 -05:00
|
|
|
batch = rooms_to_scan[i:i + step]
|
|
|
|
logger.info("Processing %i rooms for result", len(batch))
|
2016-09-17 13:01:54 -04:00
|
|
|
yield concurrently_execute(
|
2017-03-10 12:39:35 -05:00
|
|
|
lambda r: self._append_room_entry_to_chunk(
|
2016-09-17 13:01:54 -04:00
|
|
|
r, rooms_to_num_joined[r],
|
|
|
|
chunk, limit, search_filter
|
|
|
|
),
|
2017-11-14 04:39:54 -05:00
|
|
|
batch, 5,
|
2016-09-17 13:01:54 -04:00
|
|
|
)
|
2017-11-14 04:23:56 -05:00
|
|
|
logger.info("Now %i rooms in result", len(chunk))
|
2017-11-14 04:39:54 -05:00
|
|
|
if len(chunk) >= limit + 1:
|
|
|
|
break
|
2016-09-14 09:07:37 -04:00
|
|
|
|
2016-09-15 05:15:37 -04:00
|
|
|
chunk.sort(key=lambda e: (-e["num_joined_members"], e["room_id"]))
|
2016-09-15 04:08:57 -04:00
|
|
|
|
2016-09-16 06:00:29 -04:00
|
|
|
# Work out the new limit of the batch for pagination, or None if we
|
|
|
|
# know there are no more results that would be returned.
|
2016-09-17 09:40:28 -04:00
|
|
|
# i.e., [since_token.current_limit..new_limit] is the batch of rooms
|
|
|
|
# we've returned (or the reverse if we paginated backwards)
|
|
|
|
# We tried to pull out limit + 1 rooms above, so if we have <= limit
|
|
|
|
# then we know there are no more results to return
|
2016-09-15 12:35:20 -04:00
|
|
|
new_limit = None
|
2016-09-15 12:50:16 -04:00
|
|
|
if chunk and (not limit or len(chunk) > limit):
|
2016-09-15 12:35:20 -04:00
|
|
|
|
|
|
|
if not since_token or since_token.direction_is_forward:
|
2016-09-17 09:40:28 -04:00
|
|
|
if limit:
|
|
|
|
chunk = chunk[:limit]
|
2016-09-15 12:35:20 -04:00
|
|
|
last_room_id = chunk[-1]["room_id"]
|
|
|
|
else:
|
2016-09-17 09:40:28 -04:00
|
|
|
if limit:
|
|
|
|
chunk = chunk[-limit:]
|
2016-09-15 12:35:20 -04:00
|
|
|
last_room_id = chunk[0]["room_id"]
|
|
|
|
|
2016-09-17 09:40:28 -04:00
|
|
|
new_limit = sorted_rooms.index(last_room_id)
|
2016-09-15 12:35:20 -04:00
|
|
|
|
2016-09-15 05:15:37 -04:00
|
|
|
results = {
|
|
|
|
"chunk": chunk,
|
2016-09-21 08:17:08 -04:00
|
|
|
"total_room_count_estimate": total_room_count,
|
2016-09-15 05:15:37 -04:00
|
|
|
}
|
|
|
|
|
2016-09-15 06:27:04 -04:00
|
|
|
if since_token:
|
|
|
|
results["new_rooms"] = bool(newly_visible)
|
|
|
|
|
2016-09-15 05:36:19 -04:00
|
|
|
if not since_token or since_token.direction_is_forward:
|
2016-09-17 09:40:28 -04:00
|
|
|
if new_limit is not None:
|
2016-09-15 05:15:37 -04:00
|
|
|
results["next_batch"] = RoomListNextBatch(
|
2016-09-15 06:27:04 -04:00
|
|
|
stream_ordering=stream_token,
|
|
|
|
public_room_stream_id=public_room_stream_id,
|
2016-09-15 05:15:37 -04:00
|
|
|
current_limit=new_limit,
|
|
|
|
direction_is_forward=True,
|
|
|
|
).to_token()
|
|
|
|
|
2016-09-15 05:36:19 -04:00
|
|
|
if since_token:
|
|
|
|
results["prev_batch"] = since_token.copy_and_replace(
|
2016-09-15 05:15:37 -04:00
|
|
|
direction_is_forward=False,
|
2016-09-17 09:40:28 -04:00
|
|
|
current_limit=since_token.current_limit + 1,
|
2016-09-15 05:15:37 -04:00
|
|
|
).to_token()
|
2016-09-15 04:08:57 -04:00
|
|
|
else:
|
2016-09-17 09:40:28 -04:00
|
|
|
if new_limit is not None:
|
2016-09-15 05:15:37 -04:00
|
|
|
results["prev_batch"] = RoomListNextBatch(
|
2016-09-15 06:27:04 -04:00
|
|
|
stream_ordering=stream_token,
|
|
|
|
public_room_stream_id=public_room_stream_id,
|
2016-09-15 05:15:37 -04:00
|
|
|
current_limit=new_limit,
|
|
|
|
direction_is_forward=False,
|
|
|
|
).to_token()
|
2016-09-15 04:08:57 -04:00
|
|
|
|
2016-09-15 05:36:19 -04:00
|
|
|
if since_token:
|
|
|
|
results["next_batch"] = since_token.copy_and_replace(
|
2016-09-15 05:15:37 -04:00
|
|
|
direction_is_forward=True,
|
2016-09-17 09:40:28 -04:00
|
|
|
current_limit=since_token.current_limit - 1,
|
2016-09-15 05:15:37 -04:00
|
|
|
).to_token()
|
|
|
|
|
|
|
|
defer.returnValue(results)
|
2016-09-14 09:07:37 -04:00
|
|
|
|
2016-09-17 09:40:28 -04:00
|
|
|
@defer.inlineCallbacks
|
2017-03-10 12:39:35 -05:00
|
|
|
def _append_room_entry_to_chunk(self, room_id, num_joined_users, chunk, limit,
|
|
|
|
search_filter):
|
2017-03-13 07:53:26 -04:00
|
|
|
"""Generate the entry for a room in the public room list and append it
|
|
|
|
to the `chunk` if it matches the search filter
|
|
|
|
"""
|
2016-09-17 09:40:28 -04:00
|
|
|
if limit and len(chunk) > limit + 1:
|
|
|
|
# We've already got enough, so lets just drop it.
|
|
|
|
return
|
|
|
|
|
2017-07-10 10:44:15 -04:00
|
|
|
result = yield self.generate_room_entry(room_id, num_joined_users)
|
2017-03-10 12:39:35 -05:00
|
|
|
|
|
|
|
if result and _matches_room_entry(result, search_filter):
|
|
|
|
chunk.append(result)
|
|
|
|
|
|
|
|
@cachedInlineCallbacks(num_args=1, cache_context=True)
|
2017-07-10 10:44:15 -04:00
|
|
|
def generate_room_entry(self, room_id, num_joined_users, cache_context,
|
|
|
|
with_alias=True, allow_private=False):
|
2017-03-13 07:53:26 -04:00
|
|
|
"""Returns the entry for a room
|
|
|
|
"""
|
2016-09-17 09:40:28 -04:00
|
|
|
result = {
|
|
|
|
"room_id": room_id,
|
|
|
|
"num_joined_members": num_joined_users,
|
|
|
|
}
|
|
|
|
|
2017-03-10 12:39:35 -05:00
|
|
|
current_state_ids = yield self.store.get_current_state_ids(
|
|
|
|
room_id, on_invalidate=cache_context.invalidate,
|
|
|
|
)
|
2016-09-17 09:40:28 -04:00
|
|
|
|
|
|
|
event_map = yield self.store.get_events([
|
2018-05-31 05:03:47 -04:00
|
|
|
event_id for key, event_id in iteritems(current_state_ids)
|
2016-09-17 09:40:28 -04:00
|
|
|
if key[0] in (
|
|
|
|
EventTypes.JoinRules,
|
|
|
|
EventTypes.Name,
|
|
|
|
EventTypes.Topic,
|
|
|
|
EventTypes.CanonicalAlias,
|
|
|
|
EventTypes.RoomHistoryVisibility,
|
|
|
|
EventTypes.GuestAccess,
|
|
|
|
"m.room.avatar",
|
|
|
|
)
|
|
|
|
])
|
|
|
|
|
|
|
|
current_state = {
|
|
|
|
(ev.type, ev.state_key): ev
|
|
|
|
for ev in event_map.values()
|
|
|
|
}
|
|
|
|
|
|
|
|
# Double check that this is actually a public room.
|
|
|
|
join_rules_event = current_state.get((EventTypes.JoinRules, ""))
|
|
|
|
if join_rules_event:
|
|
|
|
join_rule = join_rules_event.content.get("join_rule", None)
|
2017-07-10 10:44:15 -04:00
|
|
|
if not allow_private and join_rule and join_rule != JoinRules.PUBLIC:
|
2016-09-17 09:40:28 -04:00
|
|
|
defer.returnValue(None)
|
|
|
|
|
2017-07-10 10:44:15 -04:00
|
|
|
if with_alias:
|
|
|
|
aliases = yield self.store.get_aliases_for_room(
|
|
|
|
room_id, on_invalidate=cache_context.invalidate
|
|
|
|
)
|
|
|
|
if aliases:
|
|
|
|
result["aliases"] = aliases
|
2016-09-17 09:40:28 -04:00
|
|
|
|
|
|
|
name_event = yield current_state.get((EventTypes.Name, ""))
|
|
|
|
if name_event:
|
|
|
|
name = name_event.content.get("name", None)
|
|
|
|
if name:
|
|
|
|
result["name"] = name
|
|
|
|
|
|
|
|
topic_event = current_state.get((EventTypes.Topic, ""))
|
|
|
|
if topic_event:
|
|
|
|
topic = topic_event.content.get("topic", None)
|
|
|
|
if topic:
|
|
|
|
result["topic"] = topic
|
|
|
|
|
|
|
|
canonical_event = current_state.get((EventTypes.CanonicalAlias, ""))
|
|
|
|
if canonical_event:
|
|
|
|
canonical_alias = canonical_event.content.get("alias", None)
|
|
|
|
if canonical_alias:
|
|
|
|
result["canonical_alias"] = canonical_alias
|
|
|
|
|
|
|
|
visibility_event = current_state.get((EventTypes.RoomHistoryVisibility, ""))
|
|
|
|
visibility = None
|
|
|
|
if visibility_event:
|
|
|
|
visibility = visibility_event.content.get("history_visibility", None)
|
|
|
|
result["world_readable"] = visibility == "world_readable"
|
|
|
|
|
|
|
|
guest_event = current_state.get((EventTypes.GuestAccess, ""))
|
|
|
|
guest = None
|
|
|
|
if guest_event:
|
|
|
|
guest = guest_event.content.get("guest_access", None)
|
|
|
|
result["guest_can_join"] = guest == "can_join"
|
|
|
|
|
|
|
|
avatar_event = current_state.get(("m.room.avatar", ""))
|
|
|
|
if avatar_event:
|
|
|
|
avatar_url = avatar_event.content.get("url", None)
|
|
|
|
if avatar_url:
|
|
|
|
result["avatar_url"] = avatar_url
|
|
|
|
|
2017-03-10 12:39:35 -05:00
|
|
|
defer.returnValue(result)
|
2016-09-17 09:40:28 -04:00
|
|
|
|
2016-09-14 09:07:37 -04:00
|
|
|
@defer.inlineCallbacks
|
2016-09-15 12:35:20 -04:00
|
|
|
def get_remote_public_room_list(self, server_name, limit=None, since_token=None,
|
2016-12-06 05:43:48 -05:00
|
|
|
search_filter=None, include_all_networks=False,
|
|
|
|
third_party_instance_id=None,):
|
2016-09-16 05:24:15 -04:00
|
|
|
if search_filter:
|
|
|
|
# We currently don't support searching across federation, so we have
|
|
|
|
# to do it manually without pagination
|
|
|
|
limit = None
|
|
|
|
since_token = None
|
|
|
|
|
2016-09-16 05:31:59 -04:00
|
|
|
res = yield self._get_remote_list_cached(
|
2016-09-15 05:36:19 -04:00
|
|
|
server_name, limit=limit, since_token=since_token,
|
2016-12-06 05:43:48 -05:00
|
|
|
include_all_networks=include_all_networks,
|
|
|
|
third_party_instance_id=third_party_instance_id,
|
2016-09-14 09:07:37 -04:00
|
|
|
)
|
|
|
|
|
2016-09-16 05:19:32 -04:00
|
|
|
if search_filter:
|
2016-09-16 05:24:15 -04:00
|
|
|
res = {"chunk": [
|
2016-09-16 05:19:32 -04:00
|
|
|
entry
|
2016-09-16 05:24:15 -04:00
|
|
|
for entry in list(res.get("chunk", []))
|
2016-09-16 05:19:32 -04:00
|
|
|
if _matches_room_entry(entry, search_filter)
|
2016-09-16 05:24:15 -04:00
|
|
|
]}
|
2016-09-16 05:19:32 -04:00
|
|
|
|
2016-09-15 05:36:19 -04:00
|
|
|
defer.returnValue(res)
|
2016-09-14 09:07:37 -04:00
|
|
|
|
2016-09-16 05:31:59 -04:00
|
|
|
def _get_remote_list_cached(self, server_name, limit=None, since_token=None,
|
2016-12-06 05:43:48 -05:00
|
|
|
search_filter=None, include_all_networks=False,
|
|
|
|
third_party_instance_id=None,):
|
2018-03-13 09:26:52 -04:00
|
|
|
repl_layer = self.hs.get_federation_client()
|
2016-09-16 05:31:59 -04:00
|
|
|
if search_filter:
|
|
|
|
# We can't cache when asking for search
|
|
|
|
return repl_layer.get_public_rooms(
|
|
|
|
server_name, limit=limit, since_token=since_token,
|
2016-12-06 05:43:48 -05:00
|
|
|
search_filter=search_filter, include_all_networks=include_all_networks,
|
|
|
|
third_party_instance_id=third_party_instance_id,
|
2016-09-16 05:31:59 -04:00
|
|
|
)
|
|
|
|
|
2016-12-06 05:43:48 -05:00
|
|
|
key = (
|
|
|
|
server_name, limit, since_token, include_all_networks,
|
|
|
|
third_party_instance_id,
|
|
|
|
)
|
2018-04-12 07:08:59 -04:00
|
|
|
return self.remote_response_cache.wrap(
|
|
|
|
key,
|
|
|
|
repl_layer.get_public_rooms,
|
|
|
|
server_name, limit=limit, since_token=since_token,
|
|
|
|
search_filter=search_filter,
|
|
|
|
include_all_networks=include_all_networks,
|
|
|
|
third_party_instance_id=third_party_instance_id,
|
|
|
|
)
|
2016-09-16 05:31:59 -04:00
|
|
|
|
2016-09-15 04:08:57 -04:00
|
|
|
|
|
|
|
class RoomListNextBatch(namedtuple("RoomListNextBatch", (
|
|
|
|
"stream_ordering", # stream_ordering of the first public room list
|
2016-09-15 06:27:04 -04:00
|
|
|
"public_room_stream_id", # public room stream id for first public room list
|
2016-09-15 04:08:57 -04:00
|
|
|
"current_limit", # The number of previous rooms returned
|
2016-09-15 05:15:37 -04:00
|
|
|
"direction_is_forward", # Bool if this is a next_batch, false if prev_batch
|
2016-09-15 04:08:57 -04:00
|
|
|
))):
|
|
|
|
|
|
|
|
KEY_DICT = {
|
|
|
|
"stream_ordering": "s",
|
2016-09-15 06:27:04 -04:00
|
|
|
"public_room_stream_id": "p",
|
2016-09-15 04:08:57 -04:00
|
|
|
"current_limit": "n",
|
2016-09-15 05:15:37 -04:00
|
|
|
"direction_is_forward": "d",
|
2016-09-15 04:08:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
REVERSE_KEY_DICT = {v: k for k, v in KEY_DICT.items()}
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def from_token(cls, token):
|
|
|
|
return RoomListNextBatch(**{
|
|
|
|
cls.REVERSE_KEY_DICT[key]: val
|
|
|
|
for key, val in msgpack.loads(decode_base64(token)).items()
|
|
|
|
})
|
|
|
|
|
|
|
|
def to_token(self):
|
|
|
|
return encode_base64(msgpack.dumps({
|
|
|
|
self.KEY_DICT[key]: val
|
|
|
|
for key, val in self._asdict().items()
|
|
|
|
}))
|
2016-09-15 05:15:37 -04:00
|
|
|
|
|
|
|
def copy_and_replace(self, **kwds):
|
|
|
|
return self._replace(
|
|
|
|
**kwds
|
|
|
|
)
|
2016-09-16 05:19:32 -04:00
|
|
|
|
|
|
|
|
|
|
|
def _matches_room_entry(room_entry, search_filter):
|
|
|
|
if search_filter and search_filter.get("generic_search_term", None):
|
2016-09-16 14:02:42 -04:00
|
|
|
generic_search_term = search_filter["generic_search_term"].upper()
|
|
|
|
if generic_search_term in room_entry.get("name", "").upper():
|
2016-09-16 05:19:32 -04:00
|
|
|
return True
|
2016-09-16 14:02:42 -04:00
|
|
|
elif generic_search_term in room_entry.get("topic", "").upper():
|
2016-09-16 05:19:32 -04:00
|
|
|
return True
|
2016-09-16 14:02:42 -04:00
|
|
|
elif generic_search_term in room_entry.get("canonical_alias", "").upper():
|
2016-09-16 05:19:32 -04:00
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|