summary refs log tree commit diff
path: root/synapse/storage/receipts.py
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2016-08-22 18:23:24 +0100
committerGitHub <noreply@github.com>2016-08-22 18:23:24 +0100
commitd143f211c8c16117f6a2c9afe2b8c5746c5e186e (patch)
tree25b73acdb9f999f3274c29f6fa7c6bb70907b36f /synapse/storage/receipts.py
parentMerge pull request #1037 from matrix-org/markjh/add_stats_to_prometheus (diff)
parentMerge branch 'develop' into dbkr/notifications_api (diff)
downloadsynapse-d143f211c8c16117f6a2c9afe2b8c5746c5e186e.tar.xz
Merge pull request #1028 from matrix-org/dbkr/notifications_api
Add the Notifications API
Diffstat (limited to 'synapse/storage/receipts.py')
-rw-r--r--synapse/storage/receipts.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/synapse/storage/receipts.py b/synapse/storage/receipts.py
index 3ad916103f..ccc3811e84 100644
--- a/synapse/storage/receipts.py
+++ b/synapse/storage/receipts.py
@@ -95,6 +95,31 @@ class ReceiptsStore(SQLBaseStore):
         defer.returnValue({row["room_id"]: row["event_id"] for row in rows})
 
     @defer.inlineCallbacks
+    def get_receipts_for_user_with_orderings(self, user_id, receipt_type):
+        def f(txn):
+            sql = (
+                "SELECT rl.room_id, rl.event_id,"
+                " e.topological_ordering, e.stream_ordering"
+                " FROM receipts_linearized AS rl"
+                " INNER JOIN events AS e USING (room_id, event_id)"
+                " WHERE rl.room_id = e.room_id"
+                " AND rl.event_id = e.event_id"
+                " AND user_id = ?"
+            )
+            txn.execute(sql, (user_id,))
+            return txn.fetchall()
+        rows = yield self.runInteraction(
+            "get_receipts_for_user_with_orderings", f
+        )
+        defer.returnValue({
+            row[0]: {
+                "event_id": row[1],
+                "topological_ordering": row[2],
+                "stream_ordering": row[3],
+            } for row in rows
+        })
+
+    @defer.inlineCallbacks
     def get_linearized_receipts_for_rooms(self, room_ids, to_key, from_key=None):
         """Get receipts for multiple rooms for sending to clients.