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.
|
|
|
|
|
|
|
|
import logging
|
2022-01-06 14:00:34 -05:00
|
|
|
from typing import TYPE_CHECKING, Optional, Tuple
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2021-08-31 13:22:29 -04:00
|
|
|
from synapse.http.server import HttpServer
|
2022-01-06 14:00:34 -05:00
|
|
|
from synapse.http.servlet import RestServlet, parse_integer, parse_string
|
2021-08-31 13:22:29 -04:00
|
|
|
from synapse.http.site import SynapseRequest
|
2022-01-06 14:00:34 -05:00
|
|
|
from synapse.rest.client._base import client_patterns
|
2022-03-04 07:10:10 -05:00
|
|
|
from synapse.types import JsonDict, StreamToken
|
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__)
|
|
|
|
|
|
|
|
|
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>[^/]*))?)?$",
|
2022-04-07 07:08:23 -04:00
|
|
|
releases=("v1",),
|
2019-05-14 11:59:21 -04:00
|
|
|
)
|
|
|
|
|
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()
|
2022-02-23 06:04:02 -05:00
|
|
|
self.store = hs.get_datastores().main
|
2022-03-16 10:39:15 -04:00
|
|
|
self._relations_handler = hs.get_relations_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
|
|
|
|
|
|
|
limit = parse_integer(request, "limit", default=5)
|
2022-02-11 11:20:27 -05:00
|
|
|
direction = parse_string(
|
|
|
|
request, "org.matrix.msc3715.dir", default="b", allowed_values=["f", "b"]
|
|
|
|
)
|
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
|
|
|
|
2022-03-10 09:03:59 -05:00
|
|
|
# Return the relations
|
|
|
|
from_token = None
|
|
|
|
if from_token_str:
|
|
|
|
from_token = await StreamToken.from_string(self.store, from_token_str)
|
|
|
|
to_token = None
|
|
|
|
if to_token_str:
|
|
|
|
to_token = await StreamToken.from_string(self.store, to_token_str)
|
|
|
|
|
2022-03-16 10:39:15 -04:00
|
|
|
result = await self._relations_handler.get_relations(
|
|
|
|
requester=requester,
|
2022-03-10 09:03:59 -05:00
|
|
|
event_id=parent_id,
|
|
|
|
room_id=room_id,
|
|
|
|
relation_type=relation_type,
|
|
|
|
event_type=event_type,
|
|
|
|
limit=limit,
|
|
|
|
direction=direction,
|
|
|
|
from_token=from_token,
|
|
|
|
to_token=to_token,
|
|
|
|
)
|
2019-05-14 11:59:21 -04:00
|
|
|
|
2022-03-16 10:39:15 -04:00
|
|
|
return 200, result
|
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
|
|
|
RelationPaginationServlet(hs).register(http_server)
|