Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Matrix
Commits
e5991af6
Commit
e5991af6
authored
9 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Comments
parent
ed887209
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
synapse/handlers/receipts.py
+12
-4
12 additions, 4 deletions
synapse/handlers/receipts.py
synapse/storage/receipts.py
+11
-0
11 additions, 0 deletions
synapse/storage/receipts.py
with
23 additions
and
4 deletions
synapse/handlers/receipts.py
+
12
−
4
View file @
e5991af6
...
...
@@ -41,10 +41,9 @@ class ReceiptsHandler(BaseHandler):
@defer.inlineCallbacks
def
received_client_receipt
(
self
,
room_id
,
receipt_type
,
user_id
,
event_id
):
# 1. Persist.
# 2. Notify local clients
# 3. Notify remote servers
"""
Called when a client tells us a local user has read up to the given
event_id in the room.
"""
receipt
=
{
"
room_id
"
:
room_id
,
"
receipt_type
"
:
receipt_type
,
...
...
@@ -62,6 +61,8 @@ class ReceiptsHandler(BaseHandler):
@defer.inlineCallbacks
def
_received_remote_receipt
(
self
,
origin
,
content
):
"""
Called when we receive an EDU of type m.receipt from a remote HS.
"""
receipts
=
[
{
"
room_id
"
:
room_id
,
...
...
@@ -79,6 +80,8 @@ class ReceiptsHandler(BaseHandler):
@defer.inlineCallbacks
def
_handle_new_receipts
(
self
,
receipts
):
"""
Takes a list of receipts, stores them and informs the notifier.
"""
for
receipt
in
receipts
:
room_id
=
receipt
[
"
room_id
"
]
receipt_type
=
receipt
[
"
receipt_type
"
]
...
...
@@ -105,6 +108,9 @@ class ReceiptsHandler(BaseHandler):
@defer.inlineCallbacks
def
_push_remotes
(
self
,
receipts
):
"""
Given a list of receipts, works out which remote servers should be
poked and pokes them.
"""
# TODO: Some of this stuff should be coallesced.
for
receipt
in
receipts
:
room_id
=
receipt
[
"
room_id
"
]
...
...
@@ -140,6 +146,8 @@ class ReceiptsHandler(BaseHandler):
@defer.inlineCallbacks
def
get_receipts_for_room
(
self
,
room_id
,
to_key
):
"""
Gets all receipts for a room, upto the given key.
"""
result
=
yield
self
.
store
.
get_linearized_receipts_for_room
(
room_id
,
None
,
to_key
)
...
...
This diff is collapsed.
Click to expand it.
synapse/storage/receipts.py
+
11
−
0
View file @
e5991af6
...
...
@@ -35,6 +35,8 @@ class ReceiptsStore(SQLBaseStore):
@defer.inlineCallbacks
def
get_linearized_receipts_for_rooms
(
self
,
room_ids
,
from_key
,
to_key
):
"""
Get receipts for multiple rooms for sending to clients.
"""
room_ids
=
set
(
room_ids
)
if
from_key
:
...
...
@@ -54,6 +56,8 @@ class ReceiptsStore(SQLBaseStore):
@defer.inlineCallbacks
def
get_linearized_receipts_for_room
(
self
,
room_id
,
from_key
,
to_key
):
"""
Get receipts for a single room for sending to clients.
"""
def
f
(
txn
):
if
from_key
:
sql
=
(
...
...
@@ -107,6 +111,8 @@ class ReceiptsStore(SQLBaseStore):
@cached
@defer.inlineCallbacks
def
get_graph_receipts_for_room
(
self
,
room_id
):
"""
Get receipts for sending to remote servers.
"""
rows
=
yield
self
.
_simple_select_list
(
table
=
"
receipts_graph
"
,
keyvalues
=
{
"
room_id
"
:
room_id
},
...
...
@@ -181,6 +187,11 @@ class ReceiptsStore(SQLBaseStore):
@defer.inlineCallbacks
def
insert_receipt
(
self
,
room_id
,
receipt_type
,
user_id
,
event_ids
,
data
):
"""
Insert a receipt, either from local client or remote server.
Automatically does conversion between linearized and graph
representations.
"""
if
not
event_ids
:
return
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment