2017-04-11 18:33:51 +02:00
|
|
|
# Copyright 2017 Vector Creations Ltd
|
2017-04-11 12:55:30 +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
|
2020-10-09 13:20:51 +02:00
|
|
|
from typing import TYPE_CHECKING
|
2017-04-11 12:55:30 +02:00
|
|
|
|
2023-05-09 13:23:27 +02:00
|
|
|
from synapse.api.constants import ReceiptTypes
|
2023-05-18 20:37:31 +02:00
|
|
|
from synapse.api.errors import SynapseError
|
2018-08-10 15:50:21 +02:00
|
|
|
from synapse.util.async_helpers import Linearizer
|
2017-04-11 12:55:30 +02:00
|
|
|
|
2020-10-09 13:20:51 +02:00
|
|
|
if TYPE_CHECKING:
|
2021-03-23 12:12:48 +01:00
|
|
|
from synapse.server import HomeServer
|
2020-10-09 13:20:51 +02:00
|
|
|
|
2017-04-11 12:55:30 +02:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2017-04-11 18:07:07 +02:00
|
|
|
|
2021-10-08 13:44:43 +02:00
|
|
|
class ReadMarkerHandler:
|
2020-10-09 13:20:51 +02:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2022-02-23 12:04:02 +01:00
|
|
|
self.store = hs.get_datastores().main
|
2021-01-18 16:47:59 +01:00
|
|
|
self.account_data_handler = hs.get_account_data_handler()
|
2017-04-11 16:01:39 +02:00
|
|
|
self.read_marker_linearizer = Linearizer(name="read_marker")
|
2017-04-11 12:55:30 +02:00
|
|
|
|
2020-10-09 13:20:51 +02:00
|
|
|
async def received_client_read_marker(
|
|
|
|
self, room_id: str, user_id: str, event_id: str
|
|
|
|
) -> None:
|
2017-04-11 16:01:39 +02:00
|
|
|
"""Updates the read marker for a given user in a given room if the event ID given
|
|
|
|
is ahead in the stream relative to the current read marker.
|
2017-04-11 12:55:30 +02:00
|
|
|
|
2017-04-11 16:01:39 +02:00
|
|
|
This uses a notifier to indicate that account data should be sent down /sync if
|
|
|
|
the read marker has changed.
|
|
|
|
"""
|
2017-04-11 12:55:30 +02:00
|
|
|
|
2022-04-05 16:43:52 +02:00
|
|
|
async with self.read_marker_linearizer.queue((room_id, user_id)):
|
2019-10-29 16:08:22 +01:00
|
|
|
existing_read_marker = await self.store.get_account_data_for_room_and_type(
|
2023-05-09 13:23:27 +02:00
|
|
|
user_id, room_id, ReceiptTypes.FULLY_READ
|
2018-03-01 16:53:04 +01:00
|
|
|
)
|
2017-04-11 12:55:30 +02:00
|
|
|
|
2017-04-11 16:01:39 +02:00
|
|
|
should_update = True
|
2023-05-18 20:37:31 +02:00
|
|
|
# Get event ordering, this also ensures we know about the event
|
|
|
|
event_ordering = await self.store.get_event_ordering(event_id)
|
2017-04-11 12:55:30 +02:00
|
|
|
|
2017-04-11 16:01:39 +02:00
|
|
|
if existing_read_marker:
|
2023-05-18 20:37:31 +02:00
|
|
|
try:
|
|
|
|
old_event_ordering = await self.store.get_event_ordering(
|
|
|
|
existing_read_marker["event_id"]
|
|
|
|
)
|
|
|
|
except SynapseError:
|
|
|
|
# Old event no longer exists, assume new is ahead. This may
|
|
|
|
# happen if the old event was removed due to retention.
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
# Only update if the new marker is ahead in the stream
|
|
|
|
should_update = event_ordering > old_event_ordering
|
2017-04-11 16:01:39 +02:00
|
|
|
|
|
|
|
if should_update:
|
2019-06-20 11:32:02 +02:00
|
|
|
content = {"event_id": event_id}
|
2021-01-18 16:47:59 +01:00
|
|
|
await self.account_data_handler.add_account_data_to_room(
|
2023-05-09 13:23:27 +02:00
|
|
|
user_id, room_id, ReceiptTypes.FULLY_READ, content
|
2017-04-11 16:01:39 +02:00
|
|
|
)
|