2019-05-14 11:59:21 -04:00
|
|
|
# Copyright 2019 New Vector 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.
|
|
|
|
|
|
|
|
"""This class implements the proposed relation APIs from MSC 1849.
|
|
|
|
|
|
|
|
Since the MSC has not been approved all APIs here are unstable and may change at
|
|
|
|
any time to reflect changes in the MSC.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import logging
|
2021-08-31 13:22:29 -04:00
|
|
|
from typing import TYPE_CHECKING, Awaitable, Optional, Tuple
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2019-05-14 11:59:21 -04:00
|
|
|
from synapse.api.constants import EventTypes, RelationTypes
|
2020-08-24 13:58:56 -04:00
|
|
|
from synapse.api.errors import ShadowBanError, SynapseError
|
2021-08-31 13:22:29 -04:00
|
|
|
from synapse.http.server import HttpServer
|
2019-05-14 11:59:21 -04:00
|
|
|
from synapse.http.servlet import (
|
|
|
|
RestServlet,
|
2019-05-14 11:59:21 -04:00
|
|
|
parse_integer,
|
2019-05-14 11:59:21 -04:00
|
|
|
parse_json_object_from_request,
|
|
|
|
parse_string,
|
|
|
|
)
|
2021-08-31 13:22:29 -04:00
|
|
|
from synapse.http.site import SynapseRequest
|
2019-05-15 12:28:33 -04:00
|
|
|
from synapse.rest.client.transactions import HttpTransactionCache
|
2019-05-16 09:24:58 -04:00
|
|
|
from synapse.storage.relations import (
|
|
|
|
AggregationPaginationToken,
|
2019-07-18 09:41:42 -04:00
|
|
|
PaginationChunk,
|
2019-05-16 09:24:58 -04:00
|
|
|
RelationPaginationToken,
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2021-08-31 13:22:29 -04:00
|
|
|
from synapse.types import JsonDict
|
2020-08-24 13:58:56 -04:00
|
|
|
from synapse.util.stringutils import random_string
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
from ._base import client_patterns
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2021-08-31 13:22:29 -04:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2019-05-14 11:59:21 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class RelationSendServlet(RestServlet):
|
|
|
|
"""Helper API for sending events that have relation data.
|
|
|
|
|
|
|
|
Example API shape to send a 👍 reaction to a room:
|
|
|
|
|
|
|
|
POST /rooms/!foo/send_relation/$bar/m.annotation/m.reaction?key=%F0%9F%91%8D
|
|
|
|
{}
|
|
|
|
|
|
|
|
{
|
|
|
|
"event_id": "$foobar"
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
|
|
|
PATTERN = (
|
|
|
|
"/rooms/(?P<room_id>[^/]*)/send_relation"
|
|
|
|
"/(?P<parent_id>[^/]*)/(?P<relation_type>[^/]*)/(?P<event_type>[^/]*)"
|
|
|
|
)
|
|
|
|
|
2021-08-31 13:22:29 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2019-05-14 11:59:21 -04:00
|
|
|
self.auth = hs.get_auth()
|
|
|
|
self.event_creation_handler = hs.get_event_creation_handler()
|
2019-05-15 12:28:33 -04:00
|
|
|
self.txns = HttpTransactionCache(hs)
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2021-08-31 13:22:29 -04:00
|
|
|
def register(self, http_server: HttpServer) -> None:
|
2019-05-14 11:59:21 -04:00
|
|
|
http_server.register_paths(
|
|
|
|
"POST",
|
2019-06-03 07:28:59 -04:00
|
|
|
client_patterns(self.PATTERN + "$", releases=()),
|
2019-05-14 11:59:21 -04:00
|
|
|
self.on_PUT_or_POST,
|
2019-07-24 08:07:35 -04:00
|
|
|
self.__class__.__name__,
|
2019-05-14 11:59:21 -04:00
|
|
|
)
|
|
|
|
http_server.register_paths(
|
|
|
|
"PUT",
|
2019-06-03 07:28:59 -04:00
|
|
|
client_patterns(self.PATTERN + "/(?P<txn_id>[^/]*)$", releases=()),
|
2019-05-15 12:28:33 -04:00
|
|
|
self.on_PUT,
|
2019-07-24 08:07:35 -04:00
|
|
|
self.__class__.__name__,
|
2019-05-15 12:28:33 -04:00
|
|
|
)
|
|
|
|
|
2021-08-31 13:22:29 -04:00
|
|
|
def on_PUT(
|
|
|
|
self,
|
|
|
|
request: SynapseRequest,
|
|
|
|
room_id: str,
|
|
|
|
parent_id: str,
|
|
|
|
relation_type: str,
|
|
|
|
event_type: str,
|
|
|
|
txn_id: Optional[str] = None,
|
|
|
|
) -> Awaitable[Tuple[int, JsonDict]]:
|
2019-05-15 12:28:33 -04:00
|
|
|
return self.txns.fetch_or_execute_request(
|
2021-08-31 13:22:29 -04:00
|
|
|
request,
|
|
|
|
self.on_PUT_or_POST,
|
|
|
|
request,
|
|
|
|
room_id,
|
|
|
|
parent_id,
|
|
|
|
relation_type,
|
|
|
|
event_type,
|
|
|
|
txn_id,
|
2019-05-14 11:59:21 -04:00
|
|
|
)
|
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
async def on_PUT_or_POST(
|
2021-08-31 13:22:29 -04:00
|
|
|
self,
|
|
|
|
request: SynapseRequest,
|
|
|
|
room_id: str,
|
|
|
|
parent_id: str,
|
|
|
|
relation_type: str,
|
|
|
|
event_type: str,
|
|
|
|
txn_id: Optional[str] = None,
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2019-12-05 11:46:37 -05:00
|
|
|
requester = await self.auth.get_user_by_req(request, allow_guest=True)
|
2019-05-14 11:59:21 -04:00
|
|
|
|
|
|
|
if event_type == EventTypes.Member:
|
|
|
|
# Add relations to a membership is meaningless, so we just deny it
|
|
|
|
# at the CS API rather than trying to handle it correctly.
|
|
|
|
raise SynapseError(400, "Cannot send member events with relations")
|
|
|
|
|
|
|
|
content = parse_json_object_from_request(request)
|
|
|
|
|
|
|
|
aggregation_key = parse_string(request, "key", encoding="utf-8")
|
|
|
|
|
|
|
|
content["m.relates_to"] = {
|
|
|
|
"event_id": parent_id,
|
|
|
|
"key": aggregation_key,
|
|
|
|
"rel_type": relation_type,
|
|
|
|
}
|
|
|
|
|
|
|
|
event_dict = {
|
|
|
|
"type": event_type,
|
|
|
|
"content": content,
|
|
|
|
"room_id": room_id,
|
|
|
|
"sender": requester.user.to_string(),
|
|
|
|
}
|
|
|
|
|
2020-08-24 13:58:56 -04:00
|
|
|
try:
|
|
|
|
(
|
|
|
|
event,
|
|
|
|
_,
|
|
|
|
) = await self.event_creation_handler.create_and_send_nonmember_event(
|
|
|
|
requester, event_dict=event_dict, txn_id=txn_id
|
|
|
|
)
|
|
|
|
event_id = event.event_id
|
|
|
|
except ShadowBanError:
|
|
|
|
event_id = "$" + random_string(43)
|
|
|
|
|
|
|
|
return 200, {"event_id": event_id}
|
2019-05-14 11:59:21 -04:00
|
|
|
|
|
|
|
|
2019-05-14 11:59:21 -04:00
|
|
|
class RelationPaginationServlet(RestServlet):
|
|
|
|
"""API to paginate relations on an event by topological ordering, optionally
|
|
|
|
filtered by relation type and event type.
|
|
|
|
"""
|
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
PATTERNS = client_patterns(
|
2019-05-14 11:59:21 -04:00
|
|
|
"/rooms/(?P<room_id>[^/]*)/relations/(?P<parent_id>[^/]*)"
|
|
|
|
"(/(?P<relation_type>[^/]*)(/(?P<event_type>[^/]*))?)?$",
|
|
|
|
releases=(),
|
|
|
|
)
|
|
|
|
|
2021-08-31 13:22:29 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2019-05-14 11:59:21 -04:00
|
|
|
self.auth = hs.get_auth()
|
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.clock = hs.get_clock()
|
|
|
|
self._event_serializer = hs.get_event_client_serializer()
|
2019-05-16 09:19:06 -04:00
|
|
|
self.event_handler = hs.get_event_handler()
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
async def on_GET(
|
2021-08-31 13:22:29 -04:00
|
|
|
self,
|
|
|
|
request: SynapseRequest,
|
|
|
|
room_id: str,
|
|
|
|
parent_id: str,
|
|
|
|
relation_type: Optional[str] = None,
|
|
|
|
event_type: Optional[str] = None,
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2019-12-05 11:46:37 -05:00
|
|
|
requester = await self.auth.get_user_by_req(request, allow_guest=True)
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2020-02-18 18:14:57 -05:00
|
|
|
await self.auth.check_user_in_room_or_world_readable(
|
|
|
|
room_id, requester.user.to_string(), allow_departed_users=True
|
2019-05-14 11:59:21 -04:00
|
|
|
)
|
|
|
|
|
2019-07-09 08:43:08 -04:00
|
|
|
# This gets the original event and checks that a) the event exists and
|
|
|
|
# b) the user is allowed to view it.
|
2019-12-05 11:46:37 -05:00
|
|
|
event = await self.event_handler.get_event(requester.user, room_id, parent_id)
|
2021-08-31 13:22:29 -04:00
|
|
|
if event is None:
|
|
|
|
raise SynapseError(404, "Unknown parent event.")
|
2019-05-16 09:19:06 -04:00
|
|
|
|
2019-05-14 11:59:21 -04:00
|
|
|
limit = parse_integer(request, "limit", default=5)
|
2021-07-21 09:47:56 -04:00
|
|
|
from_token_str = parse_string(request, "from")
|
|
|
|
to_token_str = parse_string(request, "to")
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2019-07-18 09:41:42 -04:00
|
|
|
if event.internal_metadata.is_redacted():
|
|
|
|
# If the event is redacted, return an empty list of relations
|
|
|
|
pagination_chunk = PaginationChunk(chunk=[])
|
|
|
|
else:
|
|
|
|
# Return the relations
|
2021-07-21 09:47:56 -04:00
|
|
|
from_token = None
|
|
|
|
if from_token_str:
|
|
|
|
from_token = RelationPaginationToken.from_string(from_token_str)
|
2019-07-18 09:41:42 -04:00
|
|
|
|
2021-07-21 09:47:56 -04:00
|
|
|
to_token = None
|
|
|
|
if to_token_str:
|
|
|
|
to_token = RelationPaginationToken.from_string(to_token_str)
|
2019-07-18 09:41:42 -04:00
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
pagination_chunk = await self.store.get_relations_for_event(
|
2019-07-18 09:41:42 -04:00
|
|
|
event_id=parent_id,
|
|
|
|
relation_type=relation_type,
|
|
|
|
event_type=event_type,
|
|
|
|
limit=limit,
|
|
|
|
from_token=from_token,
|
|
|
|
to_token=to_token,
|
|
|
|
)
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
events = await self.store.get_events_as_list(
|
2019-07-18 09:41:42 -04:00
|
|
|
[c["event_id"] for c in pagination_chunk.chunk]
|
2019-05-14 11:59:21 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
now = self.clock.time_msec()
|
2019-07-10 09:43:11 -04:00
|
|
|
# We set bundle_aggregations to False when retrieving the original
|
|
|
|
# event because we want the content before relations were applied to
|
|
|
|
# it.
|
2019-12-05 11:46:37 -05:00
|
|
|
original_event = await self._event_serializer.serialize_event(
|
2019-07-10 09:43:11 -04:00
|
|
|
event, now, bundle_aggregations=False
|
|
|
|
)
|
|
|
|
# Similarly, we don't allow relations to be applied to relations, so we
|
|
|
|
# return the original relations without any aggregations on top of them
|
|
|
|
# here.
|
2019-12-05 11:46:37 -05:00
|
|
|
events = await self._event_serializer.serialize_events(
|
2019-07-10 09:43:11 -04:00
|
|
|
events, now, bundle_aggregations=False
|
|
|
|
)
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2019-07-18 09:41:42 -04:00
|
|
|
return_value = pagination_chunk.to_dict()
|
2019-05-14 11:59:21 -04:00
|
|
|
return_value["chunk"] = events
|
2019-07-09 08:43:08 -04:00
|
|
|
return_value["original_event"] = original_event
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, return_value
|
2019-05-14 11:59:21 -04:00
|
|
|
|
|
|
|
|
2019-05-14 11:59:21 -04:00
|
|
|
class RelationAggregationPaginationServlet(RestServlet):
|
|
|
|
"""API to paginate aggregation groups of relations, e.g. paginate the
|
|
|
|
types and counts of the reactions on the events.
|
|
|
|
|
|
|
|
Example request and response:
|
|
|
|
|
|
|
|
GET /rooms/{room_id}/aggregations/{parent_id}
|
|
|
|
|
|
|
|
{
|
|
|
|
chunk: [
|
|
|
|
{
|
|
|
|
"type": "m.reaction",
|
|
|
|
"key": "👍",
|
|
|
|
"count": 3
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
PATTERNS = client_patterns(
|
2019-05-14 11:59:21 -04:00
|
|
|
"/rooms/(?P<room_id>[^/]*)/aggregations/(?P<parent_id>[^/]*)"
|
|
|
|
"(/(?P<relation_type>[^/]*)(/(?P<event_type>[^/]*))?)?$",
|
|
|
|
releases=(),
|
|
|
|
)
|
|
|
|
|
2021-08-31 13:22:29 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2019-05-14 11:59:21 -04:00
|
|
|
self.auth = hs.get_auth()
|
|
|
|
self.store = hs.get_datastore()
|
2019-05-16 09:19:06 -04:00
|
|
|
self.event_handler = hs.get_event_handler()
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
async def on_GET(
|
2021-08-31 13:22:29 -04:00
|
|
|
self,
|
|
|
|
request: SynapseRequest,
|
|
|
|
room_id: str,
|
|
|
|
parent_id: str,
|
|
|
|
relation_type: Optional[str] = None,
|
|
|
|
event_type: Optional[str] = None,
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2019-12-05 11:46:37 -05:00
|
|
|
requester = await self.auth.get_user_by_req(request, allow_guest=True)
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2020-02-18 18:14:57 -05:00
|
|
|
await self.auth.check_user_in_room_or_world_readable(
|
|
|
|
room_id,
|
|
|
|
requester.user.to_string(),
|
|
|
|
allow_departed_users=True,
|
2019-05-14 11:59:21 -04:00
|
|
|
)
|
|
|
|
|
2019-05-16 09:19:06 -04:00
|
|
|
# This checks that a) the event exists and b) the user is allowed to
|
|
|
|
# view it.
|
2019-12-05 11:46:37 -05:00
|
|
|
event = await self.event_handler.get_event(requester.user, room_id, parent_id)
|
2021-08-31 13:22:29 -04:00
|
|
|
if event is None:
|
|
|
|
raise SynapseError(404, "Unknown parent event.")
|
2019-05-16 09:19:06 -04:00
|
|
|
|
2019-05-14 11:59:21 -04:00
|
|
|
if relation_type not in (RelationTypes.ANNOTATION, None):
|
|
|
|
raise SynapseError(400, "Relation type must be 'annotation'")
|
|
|
|
|
|
|
|
limit = parse_integer(request, "limit", default=5)
|
2021-07-21 09:47:56 -04:00
|
|
|
from_token_str = parse_string(request, "from")
|
|
|
|
to_token_str = parse_string(request, "to")
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2019-07-18 09:41:42 -04:00
|
|
|
if event.internal_metadata.is_redacted():
|
|
|
|
# If the event is redacted, return an empty list of relations
|
|
|
|
pagination_chunk = PaginationChunk(chunk=[])
|
|
|
|
else:
|
|
|
|
# Return the relations
|
2021-07-21 09:47:56 -04:00
|
|
|
from_token = None
|
|
|
|
if from_token_str:
|
|
|
|
from_token = AggregationPaginationToken.from_string(from_token_str)
|
2019-07-18 09:41:42 -04:00
|
|
|
|
2021-07-21 09:47:56 -04:00
|
|
|
to_token = None
|
|
|
|
if to_token_str:
|
|
|
|
to_token = AggregationPaginationToken.from_string(to_token_str)
|
2019-07-18 09:41:42 -04:00
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
pagination_chunk = await self.store.get_aggregation_groups_for_event(
|
2019-07-18 09:41:42 -04:00
|
|
|
event_id=parent_id,
|
|
|
|
event_type=event_type,
|
|
|
|
limit=limit,
|
|
|
|
from_token=from_token,
|
|
|
|
to_token=to_token,
|
|
|
|
)
|
|
|
|
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, pagination_chunk.to_dict()
|
2019-05-14 11:59:21 -04:00
|
|
|
|
|
|
|
|
|
|
|
class RelationAggregationGroupPaginationServlet(RestServlet):
|
|
|
|
"""API to paginate within an aggregation group of relations, e.g. paginate
|
|
|
|
all the 👍 reactions on an event.
|
|
|
|
|
|
|
|
Example request and response:
|
|
|
|
|
|
|
|
GET /rooms/{room_id}/aggregations/{parent_id}/m.annotation/m.reaction/👍
|
|
|
|
|
|
|
|
{
|
|
|
|
chunk: [
|
|
|
|
{
|
|
|
|
"type": "m.reaction",
|
|
|
|
"content": {
|
|
|
|
"m.relates_to": {
|
|
|
|
"rel_type": "m.annotation",
|
|
|
|
"key": "👍"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
...
|
|
|
|
]
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
PATTERNS = client_patterns(
|
2019-05-14 11:59:21 -04:00
|
|
|
"/rooms/(?P<room_id>[^/]*)/aggregations/(?P<parent_id>[^/]*)"
|
|
|
|
"/(?P<relation_type>[^/]*)/(?P<event_type>[^/]*)/(?P<key>[^/]*)$",
|
|
|
|
releases=(),
|
|
|
|
)
|
|
|
|
|
2021-08-31 13:22:29 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2019-05-14 11:59:21 -04:00
|
|
|
self.auth = hs.get_auth()
|
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.clock = hs.get_clock()
|
|
|
|
self._event_serializer = hs.get_event_client_serializer()
|
2019-05-16 09:19:06 -04:00
|
|
|
self.event_handler = hs.get_event_handler()
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2021-08-31 13:22:29 -04:00
|
|
|
async def on_GET(
|
|
|
|
self,
|
|
|
|
request: SynapseRequest,
|
|
|
|
room_id: str,
|
|
|
|
parent_id: str,
|
|
|
|
relation_type: str,
|
|
|
|
event_type: str,
|
|
|
|
key: str,
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2019-12-05 11:46:37 -05:00
|
|
|
requester = await self.auth.get_user_by_req(request, allow_guest=True)
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2020-02-18 18:14:57 -05:00
|
|
|
await self.auth.check_user_in_room_or_world_readable(
|
|
|
|
room_id,
|
|
|
|
requester.user.to_string(),
|
|
|
|
allow_departed_users=True,
|
2019-05-14 11:59:21 -04:00
|
|
|
)
|
|
|
|
|
2019-05-16 09:19:06 -04:00
|
|
|
# This checks that a) the event exists and b) the user is allowed to
|
|
|
|
# view it.
|
2019-12-05 11:46:37 -05:00
|
|
|
await self.event_handler.get_event(requester.user, room_id, parent_id)
|
2019-05-16 09:19:06 -04:00
|
|
|
|
2019-05-14 11:59:21 -04:00
|
|
|
if relation_type != RelationTypes.ANNOTATION:
|
|
|
|
raise SynapseError(400, "Relation type must be 'annotation'")
|
|
|
|
|
|
|
|
limit = parse_integer(request, "limit", default=5)
|
2021-07-21 09:47:56 -04:00
|
|
|
from_token_str = parse_string(request, "from")
|
|
|
|
to_token_str = parse_string(request, "to")
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2021-07-21 09:47:56 -04:00
|
|
|
from_token = None
|
|
|
|
if from_token_str:
|
|
|
|
from_token = RelationPaginationToken.from_string(from_token_str)
|
2019-05-16 09:24:58 -04:00
|
|
|
|
2021-07-21 09:47:56 -04:00
|
|
|
to_token = None
|
|
|
|
if to_token_str:
|
|
|
|
to_token = RelationPaginationToken.from_string(to_token_str)
|
2019-05-16 09:24:58 -04:00
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
result = await self.store.get_relations_for_event(
|
2019-05-14 11:59:21 -04:00
|
|
|
event_id=parent_id,
|
|
|
|
relation_type=relation_type,
|
|
|
|
event_type=event_type,
|
|
|
|
aggregation_key=key,
|
|
|
|
limit=limit,
|
|
|
|
from_token=from_token,
|
|
|
|
to_token=to_token,
|
|
|
|
)
|
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
events = await self.store.get_events_as_list(
|
2019-05-14 11:59:21 -04:00
|
|
|
[c["event_id"] for c in result.chunk]
|
|
|
|
)
|
|
|
|
|
|
|
|
now = self.clock.time_msec()
|
2019-12-05 11:46:37 -05:00
|
|
|
events = await self._event_serializer.serialize_events(events, now)
|
2019-05-14 11:59:21 -04:00
|
|
|
|
|
|
|
return_value = result.to_dict()
|
|
|
|
return_value["chunk"] = events
|
|
|
|
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, return_value
|
2019-05-14 11:59:21 -04:00
|
|
|
|
|
|
|
|
2021-08-31 13:22:29 -04:00
|
|
|
def register_servlets(hs: "HomeServer", http_server: HttpServer) -> None:
|
2019-05-14 11:59:21 -04:00
|
|
|
RelationSendServlet(hs).register(http_server)
|
2019-05-14 11:59:21 -04:00
|
|
|
RelationPaginationServlet(hs).register(http_server)
|
2019-05-14 11:59:21 -04:00
|
|
|
RelationAggregationPaginationServlet(hs).register(http_server)
|
|
|
|
RelationAggregationGroupPaginationServlet(hs).register(http_server)
|