2015-10-09 10:48:31 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2015-10-09 10:48:31 -04:00
|
|
|
#
|
|
|
|
# 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 itertools
|
|
|
|
import logging
|
2020-07-24 10:53:25 -04:00
|
|
|
from typing import Iterable
|
2015-10-09 10:48:31 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from unpaddedbase64 import decode_base64, encode_base64
|
2015-10-09 10:48:31 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.api.constants import EventTypes, Membership
|
2019-12-11 08:07:25 -05:00
|
|
|
from synapse.api.errors import NotFoundError, SynapseError
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.api.filtering import Filter
|
2018-10-30 13:33:41 -04:00
|
|
|
from synapse.storage.state import StateFilter
|
2016-05-11 08:42:37 -04:00
|
|
|
from synapse.visibility import filter_events_for_client
|
2015-10-09 10:48:31 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from ._base import BaseHandler
|
2015-10-09 10:48:31 -04:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class SearchHandler(BaseHandler):
|
|
|
|
def __init__(self, hs):
|
|
|
|
super(SearchHandler, self).__init__(hs)
|
2019-05-09 08:21:57 -04:00
|
|
|
self._event_serializer = hs.get_event_client_serializer()
|
2019-10-23 12:25:54 -04:00
|
|
|
self.storage = hs.get_storage()
|
|
|
|
self.state_store = self.storage.state
|
2019-12-11 08:07:25 -05:00
|
|
|
self.auth = hs.get_auth()
|
2015-10-09 10:48:31 -04:00
|
|
|
|
2020-07-24 10:53:25 -04:00
|
|
|
async def get_old_rooms_from_upgraded_room(self, room_id: str) -> Iterable[str]:
|
2019-01-18 05:04:47 -05:00
|
|
|
"""Retrieves room IDs of old rooms in the history of an upgraded room.
|
|
|
|
|
|
|
|
We do so by checking the m.room.create event of the room for a
|
|
|
|
`predecessor` key. If it exists, we add the room ID to our return
|
|
|
|
list and then check that room for a m.room.create event and so on
|
|
|
|
until we can no longer find any more previous rooms.
|
|
|
|
|
|
|
|
The full list of all found rooms in then returned.
|
|
|
|
|
|
|
|
Args:
|
2020-07-24 10:53:25 -04:00
|
|
|
room_id: id of the room to search through.
|
2019-01-18 05:04:47 -05:00
|
|
|
|
|
|
|
Returns:
|
2020-07-24 10:53:25 -04:00
|
|
|
Predecessor room ids
|
2019-01-18 05:04:47 -05:00
|
|
|
"""
|
|
|
|
|
|
|
|
historical_room_ids = []
|
|
|
|
|
2019-12-11 08:07:25 -05:00
|
|
|
# The initial room must have been known for us to get this far
|
2020-05-11 15:12:39 -04:00
|
|
|
predecessor = await self.store.get_room_predecessor(room_id)
|
2019-01-18 05:04:47 -05:00
|
|
|
|
2019-12-11 08:07:25 -05:00
|
|
|
while True:
|
2019-01-18 05:04:47 -05:00
|
|
|
if not predecessor:
|
2019-12-11 08:07:25 -05:00
|
|
|
# We have reached the end of the chain of predecessors
|
|
|
|
break
|
|
|
|
|
|
|
|
if not isinstance(predecessor.get("room_id"), str):
|
|
|
|
# This predecessor object is malformed. Exit here
|
|
|
|
break
|
|
|
|
|
|
|
|
predecessor_room_id = predecessor["room_id"]
|
|
|
|
|
|
|
|
# Don't add it to the list until we have checked that we are in the room
|
|
|
|
try:
|
2020-05-11 15:12:39 -04:00
|
|
|
next_predecessor_room = await self.store.get_room_predecessor(
|
2019-12-11 08:07:25 -05:00
|
|
|
predecessor_room_id
|
|
|
|
)
|
|
|
|
except NotFoundError:
|
|
|
|
# The predecessor is not a known room, so we are done here
|
2019-01-18 05:04:47 -05:00
|
|
|
break
|
|
|
|
|
2019-12-11 08:07:25 -05:00
|
|
|
historical_room_ids.append(predecessor_room_id)
|
2019-01-18 05:04:47 -05:00
|
|
|
|
2019-12-11 08:07:25 -05:00
|
|
|
# And repeat
|
|
|
|
predecessor = next_predecessor_room
|
2019-01-18 05:04:47 -05:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return historical_room_ids
|
2019-01-18 05:04:47 -05:00
|
|
|
|
2020-05-11 15:12:39 -04:00
|
|
|
async def search(self, user, content, batch=None):
|
2015-10-16 06:52:16 -04:00
|
|
|
"""Performs a full text search for a user.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user (UserID)
|
|
|
|
content (dict): Search parameters
|
2015-11-05 09:34:37 -05:00
|
|
|
batch (str): The next_batch parameter. Used for pagination.
|
2015-10-16 06:52:16 -04:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
dict to be returned to the client with results of search
|
|
|
|
"""
|
|
|
|
|
2018-12-04 06:01:02 -05:00
|
|
|
if not self.hs.config.enable_search:
|
|
|
|
raise SynapseError(400, "Search is disabled on this homeserver")
|
|
|
|
|
2015-11-05 09:34:37 -05:00
|
|
|
batch_group = None
|
|
|
|
batch_group_key = None
|
|
|
|
batch_token = None
|
|
|
|
if batch:
|
|
|
|
try:
|
2019-06-20 05:32:02 -04:00
|
|
|
b = decode_base64(batch).decode("ascii")
|
2015-11-05 09:34:37 -05:00
|
|
|
batch_group, batch_group_key, batch_token = b.split("\n")
|
|
|
|
|
|
|
|
assert batch_group is not None
|
|
|
|
assert batch_group_key is not None
|
|
|
|
assert batch_token is not None
|
2017-10-23 10:52:32 -04:00
|
|
|
except Exception:
|
2015-11-05 09:34:37 -05:00
|
|
|
raise SynapseError(400, "Invalid batch")
|
|
|
|
|
2018-05-22 12:21:18 -04:00
|
|
|
logger.info(
|
|
|
|
"Search batch properties: %r, %r, %r",
|
2019-06-20 05:32:02 -04:00
|
|
|
batch_group,
|
|
|
|
batch_group_key,
|
|
|
|
batch_token,
|
2018-05-22 12:21:18 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
logger.info("Search content: %s", content)
|
|
|
|
|
2015-10-13 10:22:14 -04:00
|
|
|
try:
|
2015-11-04 12:57:44 -05:00
|
|
|
room_cat = content["search_categories"]["room_events"]
|
2015-11-05 11:29:16 -05:00
|
|
|
|
|
|
|
# The actual thing to query in FTS
|
2015-11-04 12:57:44 -05:00
|
|
|
search_term = room_cat["search_term"]
|
2015-11-05 11:29:16 -05:00
|
|
|
|
|
|
|
# Which "keys" to search over in FTS query
|
2019-06-20 05:32:02 -04:00
|
|
|
keys = room_cat.get(
|
|
|
|
"keys", ["content.body", "content.name", "content.topic"]
|
|
|
|
)
|
2015-11-05 11:29:16 -05:00
|
|
|
|
|
|
|
# Filter to apply to results
|
2015-11-04 12:57:44 -05:00
|
|
|
filter_dict = room_cat.get("filter", {})
|
2015-11-05 11:29:16 -05:00
|
|
|
|
|
|
|
# What to order results by (impacts whether pagination can be doen)
|
2015-11-04 12:57:44 -05:00
|
|
|
order_by = room_cat.get("order_by", "rank")
|
2015-11-05 11:29:16 -05:00
|
|
|
|
2015-11-20 09:16:42 -05:00
|
|
|
# Return the current state of the rooms?
|
|
|
|
include_state = room_cat.get("include_state", False)
|
|
|
|
|
2015-11-05 11:29:16 -05:00
|
|
|
# Include context around each event?
|
2019-06-20 05:32:02 -04:00
|
|
|
event_context = room_cat.get("event_context", None)
|
2015-10-28 14:25:11 -04:00
|
|
|
|
2015-11-05 11:29:16 -05:00
|
|
|
# Group results together? May allow clients to paginate within a
|
|
|
|
# group
|
2015-11-04 12:57:44 -05:00
|
|
|
group_by = room_cat.get("groupings", {}).get("group_by", {})
|
|
|
|
group_keys = [g["key"] for g in group_by]
|
|
|
|
|
2015-10-28 14:25:11 -04:00
|
|
|
if event_context is not None:
|
2019-06-20 05:32:02 -04:00
|
|
|
before_limit = int(event_context.get("before_limit", 5))
|
|
|
|
after_limit = int(event_context.get("after_limit", 5))
|
2015-11-20 09:16:42 -05:00
|
|
|
|
|
|
|
# Return the historic display name and avatar for the senders
|
|
|
|
# of the events?
|
2015-11-20 06:39:44 -05:00
|
|
|
include_profile = bool(event_context.get("include_profile", False))
|
2015-10-13 10:22:14 -04:00
|
|
|
except KeyError:
|
|
|
|
raise SynapseError(400, "Invalid search query")
|
2015-10-09 10:48:31 -04:00
|
|
|
|
2015-11-04 12:57:44 -05:00
|
|
|
if order_by not in ("rank", "recent"):
|
|
|
|
raise SynapseError(400, "Invalid order by: %r" % (order_by,))
|
|
|
|
|
|
|
|
if set(group_keys) - {"room_id", "sender"}:
|
|
|
|
raise SynapseError(
|
|
|
|
400,
|
2019-06-20 05:32:02 -04:00
|
|
|
"Invalid group by keys: %r"
|
|
|
|
% (set(group_keys) - {"room_id", "sender"},),
|
2015-11-04 12:57:44 -05:00
|
|
|
)
|
|
|
|
|
2015-10-22 11:19:53 -04:00
|
|
|
search_filter = Filter(filter_dict)
|
2015-10-20 12:09:53 -04:00
|
|
|
|
2015-10-14 04:46:31 -04:00
|
|
|
# TODO: Search through left rooms too
|
2020-05-11 15:12:39 -04:00
|
|
|
rooms = await self.store.get_rooms_for_local_user_where_membership_is(
|
2015-10-13 10:22:14 -04:00
|
|
|
user.to_string(),
|
|
|
|
membership_list=[Membership.JOIN],
|
|
|
|
# membership_list=[Membership.JOIN, Membership.LEAVE, Membership.Ban],
|
2015-10-12 05:49:53 -04:00
|
|
|
)
|
2020-02-21 07:15:07 -05:00
|
|
|
room_ids = {r.room_id for r in rooms}
|
2015-10-09 10:48:31 -04:00
|
|
|
|
2019-01-18 05:04:47 -05:00
|
|
|
# If doing a subset of all rooms seearch, check if any of the rooms
|
|
|
|
# are from an upgraded room, and search their contents as well
|
|
|
|
if search_filter.rooms:
|
|
|
|
historical_room_ids = []
|
2019-01-22 06:12:48 -05:00
|
|
|
for room_id in search_filter.rooms:
|
2019-01-18 05:04:47 -05:00
|
|
|
# Add any previous rooms to the search if they exist
|
2020-05-11 15:12:39 -04:00
|
|
|
ids = await self.get_old_rooms_from_upgraded_room(room_id)
|
2019-01-18 05:04:47 -05:00
|
|
|
historical_room_ids += ids
|
|
|
|
|
|
|
|
# Prevent any historical events from being filtered
|
2019-01-22 06:12:48 -05:00
|
|
|
search_filter = search_filter.with_room_ids(historical_room_ids)
|
|
|
|
|
|
|
|
room_ids = search_filter.filter_rooms(room_ids)
|
2019-01-18 05:04:47 -05:00
|
|
|
|
2015-11-05 09:34:37 -05:00
|
|
|
if batch_group == "room_id":
|
2015-11-05 12:26:19 -05:00
|
|
|
room_ids.intersection_update({batch_group_key})
|
2015-11-05 09:34:37 -05:00
|
|
|
|
2015-11-30 12:45:31 -05:00
|
|
|
if not room_ids:
|
2019-07-23 09:00:55 -04:00
|
|
|
return {
|
|
|
|
"search_categories": {
|
|
|
|
"room_events": {"results": [], "count": 0, "highlights": []}
|
2015-11-30 12:45:31 -05:00
|
|
|
}
|
2019-07-23 09:00:55 -04:00
|
|
|
}
|
2015-11-30 12:45:31 -05:00
|
|
|
|
2015-11-05 11:29:16 -05:00
|
|
|
rank_map = {} # event_id -> rank of event
|
2015-11-04 12:57:44 -05:00
|
|
|
allowed_events = []
|
2015-11-05 11:29:16 -05:00
|
|
|
room_groups = {} # Holds result of grouping by room, if applicable
|
|
|
|
sender_group = {} # Holds result of grouping by sender, if applicable
|
|
|
|
|
|
|
|
# Holds the next_batch for the entire result set if one of those exists
|
2015-11-05 09:34:37 -05:00
|
|
|
global_next_batch = None
|
2015-10-12 10:52:55 -04:00
|
|
|
|
2015-11-27 11:40:42 -05:00
|
|
|
highlights = set()
|
|
|
|
|
2015-12-11 06:40:23 -05:00
|
|
|
count = None
|
|
|
|
|
2015-11-04 12:57:44 -05:00
|
|
|
if order_by == "rank":
|
2020-05-11 15:12:39 -04:00
|
|
|
search_result = await self.store.search_msgs(room_ids, search_term, keys)
|
2015-10-20 12:09:53 -04:00
|
|
|
|
2015-12-11 06:40:23 -05:00
|
|
|
count = search_result["count"]
|
|
|
|
|
2015-11-27 11:40:42 -05:00
|
|
|
if search_result["highlights"]:
|
|
|
|
highlights.update(search_result["highlights"])
|
|
|
|
|
|
|
|
results = search_result["results"]
|
|
|
|
|
2015-11-05 09:34:37 -05:00
|
|
|
results_map = {r["event"].event_id: r for r in results}
|
|
|
|
|
|
|
|
rank_map.update({r["event"].event_id: r["rank"] for r in results})
|
|
|
|
|
|
|
|
filtered_events = search_filter.filter([r["event"] for r in results])
|
2015-10-12 05:49:53 -04:00
|
|
|
|
2020-05-11 15:12:39 -04:00
|
|
|
events = await filter_events_for_client(
|
2019-10-23 12:25:54 -04:00
|
|
|
self.storage, user.to_string(), filtered_events
|
2015-11-04 12:57:44 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
events.sort(key=lambda e: -rank_map[e.event_id])
|
2019-06-20 05:32:02 -04:00
|
|
|
allowed_events = events[: search_filter.limit()]
|
2015-11-04 12:57:44 -05:00
|
|
|
|
|
|
|
for e in allowed_events:
|
2019-06-20 05:32:02 -04:00
|
|
|
rm = room_groups.setdefault(
|
|
|
|
e.room_id, {"results": [], "order": rank_map[e.event_id]}
|
|
|
|
)
|
2015-11-04 12:57:44 -05:00
|
|
|
rm["results"].append(e.event_id)
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
s = sender_group.setdefault(
|
|
|
|
e.sender, {"results": [], "order": rank_map[e.event_id]}
|
|
|
|
)
|
2015-11-04 12:57:44 -05:00
|
|
|
s["results"].append(e.event_id)
|
|
|
|
|
|
|
|
elif order_by == "recent":
|
2015-11-30 12:45:31 -05:00
|
|
|
room_events = []
|
|
|
|
i = 0
|
|
|
|
|
|
|
|
pagination_token = batch_token
|
|
|
|
|
|
|
|
# We keep looping and we keep filtering until we reach the limit
|
|
|
|
# or we run out of things.
|
|
|
|
# But only go around 5 times since otherwise synapse will be sad.
|
|
|
|
while len(room_events) < search_filter.limit() and i < 5:
|
|
|
|
i += 1
|
2020-05-11 15:12:39 -04:00
|
|
|
search_result = await self.store.search_rooms(
|
2019-06-20 05:32:02 -04:00
|
|
|
room_ids,
|
|
|
|
search_term,
|
|
|
|
keys,
|
|
|
|
search_filter.limit() * 2,
|
2015-11-30 12:45:31 -05:00
|
|
|
pagination_token=pagination_token,
|
|
|
|
)
|
|
|
|
|
|
|
|
if search_result["highlights"]:
|
|
|
|
highlights.update(search_result["highlights"])
|
|
|
|
|
2015-12-11 06:40:23 -05:00
|
|
|
count = search_result["count"]
|
|
|
|
|
2015-11-30 12:45:31 -05:00
|
|
|
results = search_result["results"]
|
|
|
|
|
|
|
|
results_map = {r["event"].event_id: r for r in results}
|
|
|
|
|
|
|
|
rank_map.update({r["event"].event_id: r["rank"] for r in results})
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
filtered_events = search_filter.filter([r["event"] for r in results])
|
2015-11-30 12:45:31 -05:00
|
|
|
|
2020-05-11 15:12:39 -04:00
|
|
|
events = await filter_events_for_client(
|
2019-10-23 12:25:54 -04:00
|
|
|
self.storage, user.to_string(), filtered_events
|
2015-11-30 12:45:31 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
room_events.extend(events)
|
2019-06-20 05:32:02 -04:00
|
|
|
room_events = room_events[: search_filter.limit()]
|
2015-11-30 12:45:31 -05:00
|
|
|
|
|
|
|
if len(results) < search_filter.limit() * 2:
|
2015-11-05 09:34:37 -05:00
|
|
|
pagination_token = None
|
2015-12-01 06:06:40 -05:00
|
|
|
break
|
2015-11-05 09:34:37 -05:00
|
|
|
else:
|
2015-11-30 12:45:31 -05:00
|
|
|
pagination_token = results[-1]["pagination_token"]
|
|
|
|
|
2015-12-01 06:06:40 -05:00
|
|
|
for event in room_events:
|
2019-06-20 05:32:02 -04:00
|
|
|
group = room_groups.setdefault(event.room_id, {"results": []})
|
2015-12-01 06:06:40 -05:00
|
|
|
group["results"].append(event.event_id)
|
2015-11-30 12:45:31 -05:00
|
|
|
|
2015-12-01 06:06:40 -05:00
|
|
|
if room_events and len(room_events) >= search_filter.limit():
|
|
|
|
last_event_id = room_events[-1].event_id
|
|
|
|
pagination_token = results_map[last_event_id]["pagination_token"]
|
2015-11-30 12:45:31 -05:00
|
|
|
|
2015-12-01 11:36:46 -05:00
|
|
|
# We want to respect the given batch group and group keys so
|
|
|
|
# that if people blindly use the top level `next_batch` token
|
|
|
|
# it returns more from the same group (if applicable) rather
|
|
|
|
# than reverting to searching all results again.
|
|
|
|
if batch_group and batch_group_key:
|
2019-06-20 05:32:02 -04:00
|
|
|
global_next_batch = encode_base64(
|
|
|
|
(
|
|
|
|
"%s\n%s\n%s"
|
|
|
|
% (batch_group, batch_group_key, pagination_token)
|
|
|
|
).encode("ascii")
|
|
|
|
)
|
2015-12-01 11:36:46 -05:00
|
|
|
else:
|
2019-06-20 05:32:02 -04:00
|
|
|
global_next_batch = encode_base64(
|
|
|
|
("%s\n%s\n%s" % ("all", "", pagination_token)).encode("ascii")
|
|
|
|
)
|
2015-11-30 12:45:31 -05:00
|
|
|
|
|
|
|
for room_id, group in room_groups.items():
|
2019-06-20 05:32:02 -04:00
|
|
|
group["next_batch"] = encode_base64(
|
|
|
|
("%s\n%s\n%s" % ("room_id", room_id, pagination_token)).encode(
|
|
|
|
"ascii"
|
|
|
|
)
|
|
|
|
)
|
2015-11-30 12:45:31 -05:00
|
|
|
|
|
|
|
allowed_events.extend(room_events)
|
2015-11-04 12:57:44 -05:00
|
|
|
|
|
|
|
else:
|
|
|
|
# We should never get here due to the guard earlier.
|
|
|
|
raise NotImplementedError()
|
2015-10-29 12:17:47 -04:00
|
|
|
|
2018-05-22 12:21:18 -04:00
|
|
|
logger.info("Found %d events to return", len(allowed_events))
|
|
|
|
|
2015-11-05 11:29:16 -05:00
|
|
|
# If client has asked for "context" for each event (i.e. some surrounding
|
|
|
|
# events and state), fetch that
|
2015-10-28 14:25:11 -04:00
|
|
|
if event_context is not None:
|
2020-08-04 07:21:47 -04:00
|
|
|
now_token = self.hs.get_event_sources().get_current_token()
|
2015-10-28 14:25:11 -04:00
|
|
|
|
|
|
|
contexts = {}
|
|
|
|
for event in allowed_events:
|
2020-05-11 15:12:39 -04:00
|
|
|
res = await self.store.get_events_around(
|
2019-06-20 05:32:02 -04:00
|
|
|
event.room_id, event.event_id, before_limit, after_limit
|
2015-10-28 14:25:11 -04:00
|
|
|
)
|
|
|
|
|
2018-05-22 12:26:46 -04:00
|
|
|
logger.info(
|
|
|
|
"Context for search returned %d and %d events",
|
2019-06-20 05:32:02 -04:00
|
|
|
len(res["events_before"]),
|
|
|
|
len(res["events_after"]),
|
2018-05-22 12:26:46 -04:00
|
|
|
)
|
|
|
|
|
2020-05-11 15:12:39 -04:00
|
|
|
res["events_before"] = await filter_events_for_client(
|
2019-10-23 12:25:54 -04:00
|
|
|
self.storage, user.to_string(), res["events_before"]
|
2015-10-28 14:25:11 -04:00
|
|
|
)
|
|
|
|
|
2020-05-11 15:12:39 -04:00
|
|
|
res["events_after"] = await filter_events_for_client(
|
2019-10-23 12:25:54 -04:00
|
|
|
self.storage, user.to_string(), res["events_after"]
|
2015-10-28 14:25:11 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
res["start"] = now_token.copy_and_replace(
|
|
|
|
"room_key", res["start"]
|
|
|
|
).to_string()
|
|
|
|
|
|
|
|
res["end"] = now_token.copy_and_replace(
|
|
|
|
"room_key", res["end"]
|
|
|
|
).to_string()
|
|
|
|
|
2015-11-20 06:39:44 -05:00
|
|
|
if include_profile:
|
2020-02-21 07:15:07 -05:00
|
|
|
senders = {
|
2015-11-20 06:39:44 -05:00
|
|
|
ev.sender
|
|
|
|
for ev in itertools.chain(
|
|
|
|
res["events_before"], [event], res["events_after"]
|
|
|
|
)
|
2020-02-21 07:15:07 -05:00
|
|
|
}
|
2015-11-20 06:39:44 -05:00
|
|
|
|
|
|
|
if res["events_after"]:
|
|
|
|
last_event_id = res["events_after"][-1].event_id
|
|
|
|
else:
|
|
|
|
last_event_id = event.event_id
|
|
|
|
|
2018-10-30 13:33:41 -04:00
|
|
|
state_filter = StateFilter.from_types(
|
|
|
|
[(EventTypes.Member, sender) for sender in senders]
|
|
|
|
)
|
|
|
|
|
2020-05-11 15:12:39 -04:00
|
|
|
state = await self.state_store.get_state_for_event(
|
2018-10-30 13:33:41 -04:00
|
|
|
last_event_id, state_filter
|
2015-11-20 06:39:44 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
res["profile_info"] = {
|
|
|
|
s.state_key: {
|
|
|
|
"displayname": s.content.get("displayname", None),
|
|
|
|
"avatar_url": s.content.get("avatar_url", None),
|
|
|
|
}
|
|
|
|
for s in state.values()
|
|
|
|
if s.type == EventTypes.Member and s.state_key in senders
|
|
|
|
}
|
|
|
|
|
2015-10-28 14:25:11 -04:00
|
|
|
contexts[event.event_id] = res
|
|
|
|
else:
|
|
|
|
contexts = {}
|
|
|
|
|
2015-10-14 04:49:00 -04:00
|
|
|
# TODO: Add a limit
|
|
|
|
|
2015-10-12 05:49:53 -04:00
|
|
|
time_now = self.clock.time_msec()
|
|
|
|
|
2015-10-28 14:25:11 -04:00
|
|
|
for context in contexts.values():
|
2020-05-11 15:12:39 -04:00
|
|
|
context["events_before"] = await self._event_serializer.serialize_events(
|
2019-10-31 11:43:24 -04:00
|
|
|
context["events_before"], time_now
|
2019-05-09 08:21:57 -04:00
|
|
|
)
|
2020-05-11 15:12:39 -04:00
|
|
|
context["events_after"] = await self._event_serializer.serialize_events(
|
2019-10-31 11:43:24 -04:00
|
|
|
context["events_after"], time_now
|
2019-05-09 08:21:57 -04:00
|
|
|
)
|
2015-10-28 14:25:11 -04:00
|
|
|
|
2015-11-20 09:16:42 -05:00
|
|
|
state_results = {}
|
|
|
|
if include_state:
|
2020-02-21 07:15:07 -05:00
|
|
|
rooms = {e.room_id for e in allowed_events}
|
2015-11-20 09:16:42 -05:00
|
|
|
for room_id in rooms:
|
2020-05-11 15:12:39 -04:00
|
|
|
state = await self.state_handler.get_current_state(room_id)
|
2018-05-31 05:03:47 -04:00
|
|
|
state_results[room_id] = list(state.values())
|
2015-11-20 09:16:42 -05:00
|
|
|
|
|
|
|
state_results.values()
|
|
|
|
|
|
|
|
# We're now about to serialize the events. We should not make any
|
|
|
|
# blocking calls after this. Otherwise the 'age' will be wrong
|
|
|
|
|
2019-05-09 08:21:57 -04:00
|
|
|
results = []
|
|
|
|
for e in allowed_events:
|
2019-06-20 05:32:02 -04:00
|
|
|
results.append(
|
|
|
|
{
|
|
|
|
"rank": rank_map[e.event_id],
|
|
|
|
"result": (
|
2020-05-11 15:12:39 -04:00
|
|
|
await self._event_serializer.serialize_event(e, time_now)
|
2019-06-20 05:32:02 -04:00
|
|
|
),
|
|
|
|
"context": contexts.get(e.event_id, {}),
|
|
|
|
}
|
|
|
|
)
|
2015-10-09 10:48:31 -04:00
|
|
|
|
2015-11-04 12:57:44 -05:00
|
|
|
rooms_cat_res = {
|
|
|
|
"results": results,
|
2015-12-11 06:40:23 -05:00
|
|
|
"count": count,
|
2015-11-27 11:40:42 -05:00
|
|
|
"highlights": list(highlights),
|
2015-11-04 12:57:44 -05:00
|
|
|
}
|
|
|
|
|
2015-11-20 09:16:42 -05:00
|
|
|
if state_results:
|
2019-05-09 08:21:57 -04:00
|
|
|
s = {}
|
|
|
|
for room_id, state in state_results.items():
|
2020-05-11 15:12:39 -04:00
|
|
|
s[room_id] = await self._event_serializer.serialize_events(
|
2019-06-20 05:32:02 -04:00
|
|
|
state, time_now
|
2019-05-09 08:21:57 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
rooms_cat_res["state"] = s
|
2015-11-20 09:16:42 -05:00
|
|
|
|
2015-11-04 12:57:44 -05:00
|
|
|
if room_groups and "room_id" in group_keys:
|
|
|
|
rooms_cat_res.setdefault("groups", {})["room_id"] = room_groups
|
|
|
|
|
|
|
|
if sender_group and "sender" in group_keys:
|
|
|
|
rooms_cat_res.setdefault("groups", {})["sender"] = sender_group
|
|
|
|
|
2015-11-05 09:34:37 -05:00
|
|
|
if global_next_batch:
|
|
|
|
rooms_cat_res["next_batch"] = global_next_batch
|
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return {"search_categories": {"room_events": rooms_cat_res}}
|