2016-01-07 05:26:29 +01:00
|
|
|
# Copyright 2015, 2016 OpenMarket Ltd
|
2015-07-07 11:55:12 +02: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 08:09:20 +02:00
|
|
|
import logging
|
2021-08-31 19:22:29 +02:00
|
|
|
from typing import TYPE_CHECKING, Tuple
|
2018-07-09 08:09:20 +02:00
|
|
|
|
2022-10-14 20:05:25 +02:00
|
|
|
from synapse.api.constants import MAIN_TIMELINE, ReceiptTypes
|
2022-10-04 17:36:16 +02:00
|
|
|
from synapse.api.errors import Codes, SynapseError
|
2021-08-31 19:22:29 +02:00
|
|
|
from synapse.http.server import HttpServer
|
2021-07-28 10:05:11 +02:00
|
|
|
from synapse.http.servlet import RestServlet, parse_json_object_from_request
|
2021-08-31 19:22:29 +02:00
|
|
|
from synapse.http.site import SynapseRequest
|
2022-12-07 18:35:41 +01:00
|
|
|
from synapse.types import EventID, JsonDict, RoomID
|
2015-07-07 11:55:12 +02:00
|
|
|
|
2019-06-03 13:28:59 +02:00
|
|
|
from ._base import client_patterns
|
2015-07-07 11:55:12 +02:00
|
|
|
|
2021-08-31 19:22:29 +02:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2015-07-07 11:55:12 +02:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class ReceiptRestServlet(RestServlet):
|
2019-06-03 13:28:59 +02:00
|
|
|
PATTERNS = client_patterns(
|
2015-07-07 11:55:12 +02:00
|
|
|
"/rooms/(?P<room_id>[^/]*)"
|
|
|
|
"/receipt/(?P<receipt_type>[^/]*)"
|
2015-07-07 16:25:30 +02:00
|
|
|
"/(?P<event_id>[^/]*)$"
|
2015-07-07 11:55:12 +02:00
|
|
|
)
|
2023-03-23 13:11:14 +01:00
|
|
|
CATEGORY = "Receipts requests"
|
2015-07-07 11:55:12 +02:00
|
|
|
|
2021-08-31 19:22:29 +02:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 15:56:44 +02:00
|
|
|
super().__init__()
|
2015-07-07 11:55:12 +02:00
|
|
|
self.auth = hs.get_auth()
|
2016-11-23 16:14:24 +01:00
|
|
|
self.receipts_handler = hs.get_receipts_handler()
|
2022-05-04 17:59:22 +02:00
|
|
|
self.read_marker_handler = hs.get_read_marker_handler()
|
2016-05-16 19:56:37 +02:00
|
|
|
self.presence_handler = hs.get_presence_handler()
|
2022-10-04 17:36:16 +02:00
|
|
|
self._main_store = hs.get_datastores().main
|
2015-07-07 11:55:12 +02:00
|
|
|
|
2022-08-05 17:09:33 +02:00
|
|
|
self._known_receipt_types = {
|
|
|
|
ReceiptTypes.READ,
|
|
|
|
ReceiptTypes.READ_PRIVATE,
|
|
|
|
ReceiptTypes.FULLY_READ,
|
|
|
|
}
|
2022-07-13 19:23:16 +02:00
|
|
|
|
2021-08-31 19:22:29 +02:00
|
|
|
async def on_POST(
|
|
|
|
self, request: SynapseRequest, room_id: str, receipt_type: str, event_id: str
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2019-10-29 16:08:22 +01:00
|
|
|
requester = await self.auth.get_user_by_req(request)
|
2015-07-07 11:55:12 +02:00
|
|
|
|
2022-12-07 18:35:41 +01:00
|
|
|
if not RoomID.is_valid(room_id) or not event_id.startswith(EventID.SIGIL):
|
|
|
|
raise SynapseError(400, "A valid room ID and event ID must be specified")
|
|
|
|
|
2022-07-13 19:23:16 +02:00
|
|
|
if receipt_type not in self._known_receipt_types:
|
2022-05-04 17:59:22 +02:00
|
|
|
raise SynapseError(
|
|
|
|
400,
|
2022-07-13 19:23:16 +02:00
|
|
|
f"Receipt type must be {', '.join(self._known_receipt_types)}",
|
2022-05-04 17:59:22 +02:00
|
|
|
)
|
2015-10-01 15:01:52 +02:00
|
|
|
|
2022-09-23 16:33:28 +02:00
|
|
|
body = parse_json_object_from_request(request)
|
|
|
|
|
|
|
|
# Pull the thread ID, if one exists.
|
|
|
|
thread_id = None
|
2022-10-07 15:26:40 +02:00
|
|
|
if "thread_id" in body:
|
|
|
|
thread_id = body.get("thread_id")
|
|
|
|
if not thread_id or not isinstance(thread_id, str):
|
|
|
|
raise SynapseError(
|
|
|
|
400,
|
|
|
|
"thread_id field must be a non-empty string",
|
|
|
|
Codes.INVALID_PARAM,
|
|
|
|
)
|
|
|
|
|
|
|
|
if receipt_type == ReceiptTypes.FULLY_READ:
|
|
|
|
raise SynapseError(
|
|
|
|
400,
|
|
|
|
f"thread_id is not compatible with {ReceiptTypes.FULLY_READ} receipts.",
|
|
|
|
Codes.INVALID_PARAM,
|
|
|
|
)
|
|
|
|
|
|
|
|
# Ensure the event ID roughly correlates to the thread ID.
|
2022-10-14 20:05:25 +02:00
|
|
|
if not await self._is_event_in_thread(event_id, thread_id):
|
2022-10-07 15:26:40 +02:00
|
|
|
raise SynapseError(
|
|
|
|
400,
|
|
|
|
f"event_id {event_id} is not related to thread {thread_id}",
|
|
|
|
Codes.INVALID_PARAM,
|
|
|
|
)
|
2021-07-28 10:05:11 +02:00
|
|
|
|
2023-08-28 19:08:49 +02:00
|
|
|
await self.presence_handler.bump_presence_active_time(
|
|
|
|
requester.user, requester.device_id
|
|
|
|
)
|
2016-02-15 18:10:40 +01:00
|
|
|
|
2022-05-04 17:59:22 +02:00
|
|
|
if receipt_type == ReceiptTypes.FULLY_READ:
|
|
|
|
await self.read_marker_handler.received_client_read_marker(
|
|
|
|
room_id,
|
|
|
|
user_id=requester.user.to_string(),
|
|
|
|
event_id=event_id,
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
await self.receipts_handler.received_client_receipt(
|
|
|
|
room_id,
|
|
|
|
receipt_type,
|
2023-09-18 15:02:12 +02:00
|
|
|
user_id=requester.user,
|
2022-05-04 17:59:22 +02:00
|
|
|
event_id=event_id,
|
2022-09-23 16:33:28 +02:00
|
|
|
thread_id=thread_id,
|
2022-05-04 17:59:22 +02:00
|
|
|
)
|
2015-07-07 11:55:12 +02:00
|
|
|
|
2019-08-30 17:28:26 +02:00
|
|
|
return 200, {}
|
2015-07-07 11:55:12 +02:00
|
|
|
|
2022-10-14 20:05:25 +02:00
|
|
|
async def _is_event_in_thread(self, event_id: str, thread_id: str) -> bool:
|
|
|
|
"""
|
|
|
|
The event must be related to the thread ID (in a vague sense) to ensure
|
|
|
|
clients aren't sending bogus receipts.
|
|
|
|
|
|
|
|
A thread ID is considered valid for a given event E if:
|
|
|
|
|
|
|
|
1. E has a thread relation which matches the thread ID;
|
|
|
|
2. E has another event which has a thread relation to E matching the
|
|
|
|
thread ID; or
|
|
|
|
3. E is recursively related (via any rel_type) to an event which
|
|
|
|
satisfies 1 or 2.
|
|
|
|
|
|
|
|
Given the following DAG:
|
|
|
|
|
|
|
|
A <---[m.thread]-- B <--[m.annotation]-- C
|
|
|
|
^
|
|
|
|
|--[m.reference]-- D <--[m.annotation]-- E
|
|
|
|
|
|
|
|
It is valid to send a receipt for thread A on A, B, C, D, or E.
|
|
|
|
|
|
|
|
It is valid to send a receipt for the main timeline on A, D, and E.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
event_id: The event ID to check.
|
|
|
|
thread_id: The thread ID the event is potentially part of.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
True if the event belongs to the given thread, otherwise False.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# If the receipt is on the main timeline, it is enough to check whether
|
|
|
|
# the event is directly related to a thread.
|
|
|
|
if thread_id == MAIN_TIMELINE:
|
|
|
|
return MAIN_TIMELINE == await self._main_store.get_thread_id(event_id)
|
|
|
|
|
|
|
|
# Otherwise, check if the event is directly part of a thread, or is the
|
|
|
|
# root message (or related to the root message) of a thread.
|
|
|
|
return thread_id == await self._main_store.get_thread_id_for_receipts(event_id)
|
|
|
|
|
2015-07-07 11:55:12 +02:00
|
|
|
|
2021-08-31 19:22:29 +02:00
|
|
|
def register_servlets(hs: "HomeServer", http_server: HttpServer) -> None:
|
2015-07-07 11:55:12 +02:00
|
|
|
ReceiptRestServlet(hs).register(http_server)
|