This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Implement Read Marker API #2120
Merged
Merged
Changes from 14 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
e263c26
Initial commit of RM server-side impl
lukebarnard1 d892079
Finish implementing RM endpoint
0127423
flake8
131485e
Copyright
7388026
Refactor event ordering check to events store
867822f
flake8
7f94709
travis flake8..
77fb2b7
Handle no previous RM
122cd52
Remove comment, simplify null-guard
69a1851
Only notify user, not entire room
b9676a7
Move a space
c0aba0a
Remove Unused ref to hs
cf6121e
More null-guard changes
b955706
Simplify is_event_after logic
6a70647
Correct logic in is_event_after
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright 2017 Vector Creations 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. | ||
|
||
from ._base import BaseHandler | ||
|
||
from twisted.internet import defer | ||
|
||
from synapse.util.async import Linearizer | ||
|
||
import logging | ||
logger = logging.getLogger(__name__) | ||
|
||
|
||
class ReadMarkerHandler(BaseHandler): | ||
def __init__(self, hs): | ||
super(ReadMarkerHandler, self).__init__(hs) | ||
self.server_name = hs.config.server_name | ||
self.store = hs.get_datastore() | ||
self.read_marker_linearizer = Linearizer(name="read_marker") | ||
self.notifier = hs.get_notifier() | ||
|
||
@defer.inlineCallbacks | ||
def received_client_read_marker(self, room_id, user_id, event_id): | ||
"""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. | ||
|
||
This uses a notifier to indicate that account data should be sent down /sync if | ||
the read marker has changed. | ||
""" | ||
|
||
with (yield self.read_marker_linearizer.queue((room_id, user_id))): | ||
account_data = yield self.store.get_account_data_for_room(user_id, room_id) | ||
|
||
existing_read_marker = account_data.get("m.read_marker", None) | ||
|
||
should_update = True | ||
|
||
if existing_read_marker: | ||
# Only update if the new marker is ahead in the stream | ||
should_update = yield self.store.is_event_after( | ||
event_id, | ||
existing_read_marker['marker'] | ||
) | ||
|
||
if should_update: | ||
content = { | ||
"marker": event_id | ||
} | ||
max_id = yield self.store.add_account_data_to_room( | ||
user_id, room_id, "m.read_marker", content | ||
) | ||
self.notifier.on_new_event("account_data_key", max_id, users=[user_id]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright 2017 Vector Creations 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. | ||
|
||
from twisted.internet import defer | ||
|
||
from synapse.http.servlet import RestServlet, parse_json_object_from_request | ||
from ._base import client_v2_patterns | ||
|
||
import logging | ||
|
||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
class ReadMarkerRestServlet(RestServlet): | ||
PATTERNS = client_v2_patterns("/rooms/(?P<room_id>[^/]*)/read_marker$") | ||
|
||
def __init__(self, hs): | ||
super(ReadMarkerRestServlet, self).__init__() | ||
self.auth = hs.get_auth() | ||
self.receipts_handler = hs.get_receipts_handler() | ||
self.read_marker_handler = hs.get_read_marker_handler() | ||
self.presence_handler = hs.get_presence_handler() | ||
|
||
@defer.inlineCallbacks | ||
def on_POST(self, request, room_id): | ||
requester = yield self.auth.get_user_by_req(request) | ||
|
||
yield self.presence_handler.bump_presence_active_time(requester.user) | ||
|
||
body = parse_json_object_from_request(request) | ||
|
||
read_event_id = body.get("m.read", None) | ||
if read_event_id: | ||
yield self.receipts_handler.received_client_receipt( | ||
room_id, | ||
"m.read", | ||
user_id=requester.user.to_string(), | ||
event_id=read_event_id | ||
) | ||
|
||
read_marker_event_id = body.get("m.read_marker", None) | ||
if read_marker_event_id: | ||
yield self.read_marker_handler.received_client_read_marker( | ||
room_id, | ||
user_id=requester.user.to_string(), | ||
event_id=read_marker_event_id | ||
) | ||
|
||
defer.returnValue((200, {})) | ||
|
||
|
||
def register_servlets(hs, http_server): | ||
ReadMarkerRestServlet(hs).register(http_server) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2159,6 +2159,28 @@ def _delete_old_state_txn(self, txn, room_id, topological_ordering): | |
] | ||
) | ||
|
||
@defer.inlineCallbacks | ||
def is_event_after(self, event_id1, event_id2): | ||
"""Returns True if event_id1 is after event_id2 in the stream | ||
""" | ||
to_1, so_1 = yield self._get_event_ordering(event_id1) | ||
to_2, so_2 = yield self._get_event_ordering(event_id2) | ||
defer.returnValue(to_1 > to_2 and so_1 > so_2) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is not equivalent to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. in IRL we disproved my lovely boolean algebra; it had an error in it. sads. |
||
|
||
@defer.inlineCallbacks | ||
def _get_event_ordering(self, event_id): | ||
res = yield self._simple_select_one( | ||
table="events", | ||
retcols=["topological_ordering", "stream_ordering"], | ||
keyvalues={"event_id": event_id}, | ||
allow_none=True | ||
) | ||
|
||
if not res: | ||
raise SynapseError(404, "Could not find event %s" % (event_id,)) | ||
|
||
defer.returnValue((int(res["topological_ordering"]), int(res["stream_ordering"]))) | ||
|
||
|
||
AllNewEventsResult = namedtuple("AllNewEventsResult", [ | ||
"new_forward_events", "new_backfill_events", | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We probably should be using a storage function that pulls out based on type too. I think there already is one?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's one for
global_account_data
but notfor_room