2015-07-01 06:41:55 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2018-02-16 07:17:14 -05:00
|
|
|
# Copyright 2018 New Vector Ltd
|
2015-07-01 06:41:55 -04: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-06-01 09:01:43 -04:00
|
|
|
|
2015-08-11 12:59:32 -04:00
|
|
|
from ._base import SQLBaseStore
|
2018-02-16 07:17:14 -05:00
|
|
|
from .util.id_generators import StreamIdGenerator
|
2016-01-19 11:01:05 -05:00
|
|
|
from synapse.util.caches.descriptors import cachedInlineCallbacks, cachedList, cached
|
2016-01-28 11:37:41 -05:00
|
|
|
from synapse.util.caches.stream_change_cache import StreamChangeCache
|
2015-07-01 06:41:55 -04:00
|
|
|
|
|
|
|
from twisted.internet import defer
|
|
|
|
|
2018-02-20 12:33:18 -05:00
|
|
|
import abc
|
2015-07-07 10:25:30 -04:00
|
|
|
import logging
|
2018-03-15 19:43:31 -04:00
|
|
|
import simplejson as json
|
2015-07-07 10:25:30 -04:00
|
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2015-07-01 06:41:55 -04:00
|
|
|
|
2018-02-16 07:17:14 -05:00
|
|
|
class ReceiptsWorkerStore(SQLBaseStore):
|
2018-02-20 12:33:18 -05:00
|
|
|
"""This is an abstract base class where subclasses must implement
|
|
|
|
`get_max_receipt_stream_id` which can be called in the initializer.
|
|
|
|
"""
|
2018-02-16 07:17:14 -05:00
|
|
|
|
2018-02-20 12:33:18 -05:00
|
|
|
# This ABCMeta metaclass ensures that we cannot be instantiated without
|
|
|
|
# the abstract methods being implemented.
|
|
|
|
__metaclass__ = abc.ABCMeta
|
|
|
|
|
|
|
|
def __init__(self, db_conn, hs):
|
|
|
|
super(ReceiptsWorkerStore, self).__init__(db_conn, hs)
|
2015-07-08 10:35:00 -04:00
|
|
|
|
2016-01-28 11:37:41 -05:00
|
|
|
self._receipts_stream_cache = StreamChangeCache(
|
2018-02-20 12:33:18 -05:00
|
|
|
"ReceiptsRoomChangeCache", self.get_max_receipt_stream_id()
|
2016-01-26 10:51:06 -05:00
|
|
|
)
|
2015-07-08 10:35:00 -04:00
|
|
|
|
2018-02-20 12:33:18 -05:00
|
|
|
@abc.abstractmethod
|
|
|
|
def get_max_receipt_stream_id(self):
|
|
|
|
"""Get the current max stream ID for receipts stream
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
int
|
|
|
|
"""
|
2018-02-20 12:59:23 -05:00
|
|
|
raise NotImplementedError()
|
2018-02-20 12:33:18 -05:00
|
|
|
|
2016-06-01 05:31:09 -04:00
|
|
|
@cachedInlineCallbacks()
|
|
|
|
def get_users_with_read_receipts_in_room(self, room_id):
|
|
|
|
receipts = yield self.get_receipts_for_room(room_id, "m.read")
|
|
|
|
defer.returnValue(set(r['user_id'] for r in receipts))
|
|
|
|
|
2016-01-19 11:01:05 -05:00
|
|
|
@cached(num_args=2)
|
|
|
|
def get_receipts_for_room(self, room_id, receipt_type):
|
|
|
|
return self._simple_select_list(
|
|
|
|
table="receipts_linearized",
|
|
|
|
keyvalues={
|
|
|
|
"room_id": room_id,
|
|
|
|
"receipt_type": receipt_type,
|
|
|
|
},
|
|
|
|
retcols=("user_id", "event_id"),
|
|
|
|
desc="get_receipts_for_room",
|
|
|
|
)
|
|
|
|
|
2016-02-09 08:55:59 -05:00
|
|
|
@cached(num_args=3)
|
|
|
|
def get_last_receipt_event_id_for_user(self, user_id, room_id, receipt_type):
|
|
|
|
return self._simple_select_one_onecol(
|
|
|
|
table="receipts_linearized",
|
|
|
|
keyvalues={
|
|
|
|
"room_id": room_id,
|
|
|
|
"receipt_type": receipt_type,
|
|
|
|
"user_id": user_id
|
|
|
|
},
|
|
|
|
retcol="event_id",
|
|
|
|
desc="get_own_receipt_for_user",
|
|
|
|
allow_none=True,
|
|
|
|
)
|
|
|
|
|
2016-01-20 10:30:31 -05:00
|
|
|
@cachedInlineCallbacks(num_args=2)
|
|
|
|
def get_receipts_for_user(self, user_id, receipt_type):
|
2016-03-23 12:13:05 -04:00
|
|
|
rows = yield self._simple_select_list(
|
|
|
|
table="receipts_linearized",
|
|
|
|
keyvalues={
|
|
|
|
"user_id": user_id,
|
|
|
|
"receipt_type": receipt_type,
|
|
|
|
},
|
|
|
|
retcols=("room_id", "event_id"),
|
|
|
|
desc="get_receipts_for_user",
|
|
|
|
)
|
2016-01-20 10:30:31 -05:00
|
|
|
|
2016-03-23 12:13:05 -04:00
|
|
|
defer.returnValue({row["room_id"]: row["event_id"] for row in rows})
|
2016-01-20 10:30:31 -05:00
|
|
|
|
2016-05-23 13:33:51 -04:00
|
|
|
@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"
|
2016-08-18 12:53:44 -04:00
|
|
|
" FROM receipts_linearized AS rl"
|
|
|
|
" INNER JOIN events AS e USING (room_id, event_id)"
|
2016-05-23 13:33:51 -04:00
|
|
|
" 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
|
|
|
|
})
|
|
|
|
|
2015-07-08 10:35:00 -04:00
|
|
|
@defer.inlineCallbacks
|
2015-07-14 05:19:07 -04:00
|
|
|
def get_linearized_receipts_for_rooms(self, room_ids, to_key, from_key=None):
|
2015-07-13 08:30:43 -04:00
|
|
|
"""Get receipts for multiple rooms for sending to clients.
|
2015-07-14 05:19:07 -04:00
|
|
|
|
|
|
|
Args:
|
|
|
|
room_ids (list): List of room_ids.
|
|
|
|
to_key (int): Max stream id to fetch receipts upto.
|
|
|
|
from_key (int): Min stream id to fetch receipts from. None fetches
|
|
|
|
from the start.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
list: A list of receipts.
|
2015-07-13 08:30:43 -04:00
|
|
|
"""
|
2015-07-08 10:35:00 -04:00
|
|
|
room_ids = set(room_ids)
|
|
|
|
|
|
|
|
if from_key:
|
2016-01-28 11:37:41 -05:00
|
|
|
room_ids = yield self._receipts_stream_cache.get_entities_changed(
|
2016-01-28 10:02:37 -05:00
|
|
|
room_ids, from_key
|
2015-07-08 10:35:00 -04:00
|
|
|
)
|
|
|
|
|
2015-08-14 10:06:22 -04:00
|
|
|
results = yield self._get_linearized_receipts_for_rooms(
|
|
|
|
room_ids, to_key, from_key=from_key
|
|
|
|
)
|
2015-07-08 10:35:00 -04:00
|
|
|
|
2015-08-14 10:06:22 -04:00
|
|
|
defer.returnValue([ev for res in results.values() for ev in res])
|
2015-07-01 06:41:55 -04:00
|
|
|
|
2016-08-31 11:19:36 -04:00
|
|
|
@cachedInlineCallbacks(num_args=3, tree=True)
|
2015-07-14 05:19:07 -04:00
|
|
|
def get_linearized_receipts_for_room(self, room_id, to_key, from_key=None):
|
2015-07-13 08:30:43 -04:00
|
|
|
"""Get receipts for a single room for sending to clients.
|
2015-07-14 05:19:07 -04:00
|
|
|
|
|
|
|
Args:
|
|
|
|
room_ids (str): The room id.
|
|
|
|
to_key (int): Max stream id to fetch receipts upto.
|
|
|
|
from_key (int): Min stream id to fetch receipts from. None fetches
|
|
|
|
from the start.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
list: A list of receipts.
|
2015-07-13 08:30:43 -04:00
|
|
|
"""
|
2015-07-07 10:25:30 -04:00
|
|
|
def f(txn):
|
2015-07-08 05:54:01 -04:00
|
|
|
if from_key:
|
|
|
|
sql = (
|
|
|
|
"SELECT * FROM receipts_linearized WHERE"
|
|
|
|
" room_id = ? AND stream_id > ? AND stream_id <= ?"
|
|
|
|
)
|
|
|
|
|
|
|
|
txn.execute(
|
|
|
|
sql,
|
|
|
|
(room_id, from_key, to_key)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
sql = (
|
|
|
|
"SELECT * FROM receipts_linearized WHERE"
|
|
|
|
" room_id = ? AND stream_id <= ?"
|
|
|
|
)
|
|
|
|
|
|
|
|
txn.execute(
|
|
|
|
sql,
|
|
|
|
(room_id, to_key)
|
|
|
|
)
|
2015-07-07 10:25:30 -04:00
|
|
|
|
|
|
|
rows = self.cursor_to_dict(txn)
|
|
|
|
|
|
|
|
return rows
|
|
|
|
|
|
|
|
rows = yield self.runInteraction(
|
|
|
|
"get_linearized_receipts_for_room", f
|
2015-07-01 06:41:55 -04:00
|
|
|
)
|
|
|
|
|
2015-07-08 10:35:00 -04:00
|
|
|
if not rows:
|
|
|
|
defer.returnValue([])
|
|
|
|
|
|
|
|
content = {}
|
2015-07-01 06:41:55 -04:00
|
|
|
for row in rows:
|
2015-07-08 10:35:00 -04:00
|
|
|
content.setdefault(
|
2015-07-01 06:41:55 -04:00
|
|
|
row["event_id"], {}
|
|
|
|
).setdefault(
|
2015-07-09 06:39:30 -04:00
|
|
|
row["receipt_type"], {}
|
|
|
|
)[row["user_id"]] = json.loads(row["data"])
|
2015-07-01 06:41:55 -04:00
|
|
|
|
2015-07-08 10:35:00 -04:00
|
|
|
defer.returnValue([{
|
|
|
|
"type": "m.receipt",
|
|
|
|
"room_id": room_id,
|
|
|
|
"content": content,
|
|
|
|
}])
|
2015-07-01 06:41:55 -04:00
|
|
|
|
2016-04-06 08:08:05 -04:00
|
|
|
@cachedList(cached_method_name="get_linearized_receipts_for_room",
|
|
|
|
list_name="room_ids", num_args=3, inlineCallbacks=True)
|
2015-08-14 10:06:22 -04:00
|
|
|
def _get_linearized_receipts_for_rooms(self, room_ids, to_key, from_key=None):
|
|
|
|
if not room_ids:
|
|
|
|
defer.returnValue({})
|
|
|
|
|
|
|
|
def f(txn):
|
|
|
|
if from_key:
|
|
|
|
sql = (
|
|
|
|
"SELECT * FROM receipts_linearized WHERE"
|
|
|
|
" room_id IN (%s) AND stream_id > ? AND stream_id <= ?"
|
|
|
|
) % (
|
|
|
|
",".join(["?"] * len(room_ids))
|
|
|
|
)
|
|
|
|
args = list(room_ids)
|
|
|
|
args.extend([from_key, to_key])
|
|
|
|
|
|
|
|
txn.execute(sql, args)
|
|
|
|
else:
|
|
|
|
sql = (
|
|
|
|
"SELECT * FROM receipts_linearized WHERE"
|
|
|
|
" room_id IN (%s) AND stream_id <= ?"
|
|
|
|
) % (
|
|
|
|
",".join(["?"] * len(room_ids))
|
|
|
|
)
|
|
|
|
|
|
|
|
args = list(room_ids)
|
|
|
|
args.append(to_key)
|
|
|
|
|
|
|
|
txn.execute(sql, args)
|
|
|
|
|
|
|
|
return self.cursor_to_dict(txn)
|
|
|
|
|
|
|
|
txn_results = yield self.runInteraction(
|
|
|
|
"_get_linearized_receipts_for_rooms", f
|
|
|
|
)
|
|
|
|
|
|
|
|
results = {}
|
|
|
|
for row in txn_results:
|
2015-08-18 05:49:23 -04:00
|
|
|
# We want a single event per room, since we want to batch the
|
|
|
|
# receipts by room, event and type.
|
|
|
|
room_event = results.setdefault(row["room_id"], {
|
2015-08-14 10:06:22 -04:00
|
|
|
"type": "m.receipt",
|
|
|
|
"room_id": row["room_id"],
|
|
|
|
"content": {},
|
2015-08-18 05:49:23 -04:00
|
|
|
})
|
|
|
|
|
|
|
|
# The content is of the form:
|
|
|
|
# {"$foo:bar": { "read": { "@user:host": <receipt> }, .. }, .. }
|
2015-08-18 06:54:03 -04:00
|
|
|
event_entry = room_event["content"].setdefault(row["event_id"], {})
|
|
|
|
receipt_type = event_entry.setdefault(row["receipt_type"], {})
|
2015-08-18 05:49:23 -04:00
|
|
|
|
|
|
|
receipt_type[row["user_id"]] = json.loads(row["data"])
|
2015-08-14 10:06:22 -04:00
|
|
|
|
|
|
|
results = {
|
|
|
|
room_id: [results[room_id]] if room_id in results else []
|
|
|
|
for room_id in room_ids
|
|
|
|
}
|
|
|
|
defer.returnValue(results)
|
|
|
|
|
2018-02-16 07:17:14 -05:00
|
|
|
def get_all_updated_receipts(self, last_id, current_id, limit=None):
|
|
|
|
if last_id == current_id:
|
|
|
|
return defer.succeed([])
|
|
|
|
|
|
|
|
def get_all_updated_receipts_txn(txn):
|
|
|
|
sql = (
|
|
|
|
"SELECT stream_id, room_id, receipt_type, user_id, event_id, data"
|
|
|
|
" FROM receipts_linearized"
|
|
|
|
" WHERE ? < stream_id AND stream_id <= ?"
|
|
|
|
" ORDER BY stream_id ASC"
|
|
|
|
)
|
|
|
|
args = [last_id, current_id]
|
|
|
|
if limit is not None:
|
|
|
|
sql += " LIMIT ?"
|
|
|
|
args.append(limit)
|
|
|
|
txn.execute(sql, args)
|
|
|
|
|
|
|
|
return txn.fetchall()
|
|
|
|
return self.runInteraction(
|
|
|
|
"get_all_updated_receipts", get_all_updated_receipts_txn
|
|
|
|
)
|
|
|
|
|
|
|
|
def _invalidate_get_users_with_receipts_in_room(self, room_id, receipt_type,
|
|
|
|
user_id):
|
|
|
|
if receipt_type != "m.read":
|
|
|
|
return
|
|
|
|
|
2018-05-18 04:15:35 -04:00
|
|
|
# Returns either an ObservableDeferred or the raw result
|
2018-02-16 07:17:14 -05:00
|
|
|
res = self.get_users_with_read_receipts_in_room.cache.get(
|
|
|
|
room_id, None, update_metrics=False,
|
|
|
|
)
|
|
|
|
|
2018-05-18 04:15:35 -04:00
|
|
|
# first handle the Deferred case
|
|
|
|
if isinstance(res, defer.Deferred):
|
|
|
|
if res.called:
|
2018-02-16 07:17:14 -05:00
|
|
|
res = res.result
|
2018-05-18 04:15:35 -04:00
|
|
|
else:
|
|
|
|
res = None
|
|
|
|
|
|
|
|
if res and user_id in res:
|
|
|
|
# We'd only be adding to the set, so no point invalidating if the
|
|
|
|
# user is already there
|
|
|
|
return
|
2018-02-16 07:17:14 -05:00
|
|
|
|
|
|
|
self.get_users_with_read_receipts_in_room.invalidate((room_id,))
|
|
|
|
|
2018-02-21 10:19:54 -05:00
|
|
|
|
|
|
|
class ReceiptsStore(ReceiptsWorkerStore):
|
|
|
|
def __init__(self, db_conn, hs):
|
|
|
|
# We instantiate this first as the ReceiptsWorkerStore constructor
|
|
|
|
# needs to be able to call get_max_receipt_stream_id
|
|
|
|
self._receipts_id_gen = StreamIdGenerator(
|
|
|
|
db_conn, "receipts_linearized", "stream_id"
|
|
|
|
)
|
|
|
|
|
|
|
|
super(ReceiptsStore, self).__init__(db_conn, hs)
|
|
|
|
|
|
|
|
def get_max_receipt_stream_id(self):
|
|
|
|
return self._receipts_id_gen.get_current_token()
|
|
|
|
|
2015-07-01 06:41:55 -04:00
|
|
|
def insert_linearized_receipt_txn(self, txn, room_id, receipt_type,
|
2015-07-09 06:39:30 -04:00
|
|
|
user_id, event_id, data, stream_id):
|
2018-06-01 07:18:11 -04:00
|
|
|
res = self._simple_select_one_txn(
|
|
|
|
txn,
|
|
|
|
table="events",
|
|
|
|
retcols=["topological_ordering", "stream_ordering"],
|
|
|
|
keyvalues={"event_id": event_id},
|
|
|
|
allow_none=True
|
|
|
|
)
|
|
|
|
|
2018-06-01 09:01:43 -04:00
|
|
|
stream_ordering = int(res["stream_ordering"]) if res else None
|
2018-06-01 07:18:11 -04:00
|
|
|
|
|
|
|
# We don't want to clobber receipts for more recent events, so we
|
|
|
|
# have to compare orderings of existing receipts
|
2018-06-01 09:01:43 -04:00
|
|
|
if stream_ordering is not None:
|
|
|
|
sql = (
|
|
|
|
"SELECT stream_ordering, event_id FROM events"
|
|
|
|
" INNER JOIN receipts_linearized as r USING (event_id, room_id)"
|
|
|
|
" WHERE r.room_id = ? AND r.receipt_type = ? AND r.user_id = ?"
|
|
|
|
)
|
|
|
|
txn.execute(sql, (room_id, receipt_type, user_id))
|
|
|
|
|
|
|
|
for so, eid in txn:
|
|
|
|
if int(so) >= stream_ordering:
|
|
|
|
logger.debug(
|
|
|
|
"Ignoring new receipt for %s in favour of existing "
|
|
|
|
"one for later event %s",
|
|
|
|
event_id, eid,
|
|
|
|
)
|
|
|
|
return False
|
2018-06-01 07:18:11 -04:00
|
|
|
|
2016-01-20 10:30:31 -05:00
|
|
|
txn.call_after(
|
2016-01-20 11:05:09 -05:00
|
|
|
self.get_receipts_for_room.invalidate, (room_id, receipt_type)
|
2016-01-20 10:30:31 -05:00
|
|
|
)
|
2016-06-01 05:31:09 -04:00
|
|
|
txn.call_after(
|
|
|
|
self._invalidate_get_users_with_receipts_in_room,
|
|
|
|
room_id, receipt_type, user_id,
|
|
|
|
)
|
2016-01-20 10:30:31 -05:00
|
|
|
txn.call_after(
|
|
|
|
self.get_receipts_for_user.invalidate, (user_id, receipt_type)
|
|
|
|
)
|
|
|
|
# FIXME: This shouldn't invalidate the whole cache
|
2016-05-13 06:41:23 -04:00
|
|
|
txn.call_after(self.get_linearized_receipts_for_room.invalidate_many, (room_id,))
|
2015-07-07 10:25:30 -04:00
|
|
|
|
2016-01-28 10:02:37 -05:00
|
|
|
txn.call_after(
|
2016-01-28 11:37:41 -05:00
|
|
|
self._receipts_stream_cache.entity_has_changed,
|
2016-01-28 10:02:37 -05:00
|
|
|
room_id, stream_id
|
|
|
|
)
|
|
|
|
|
2016-02-09 09:27:29 -05:00
|
|
|
txn.call_after(
|
|
|
|
self.get_last_receipt_event_id_for_user.invalidate,
|
|
|
|
(user_id, room_id, receipt_type)
|
|
|
|
)
|
|
|
|
|
2015-07-01 06:41:55 -04:00
|
|
|
self._simple_delete_txn(
|
|
|
|
txn,
|
|
|
|
table="receipts_linearized",
|
|
|
|
keyvalues={
|
|
|
|
"room_id": room_id,
|
|
|
|
"receipt_type": receipt_type,
|
|
|
|
"user_id": user_id,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
self._simple_insert_txn(
|
|
|
|
txn,
|
|
|
|
table="receipts_linearized",
|
|
|
|
values={
|
2015-07-07 05:55:31 -04:00
|
|
|
"stream_id": stream_id,
|
2015-07-01 06:41:55 -04:00
|
|
|
"room_id": room_id,
|
|
|
|
"receipt_type": receipt_type,
|
|
|
|
"user_id": user_id,
|
|
|
|
"event_id": event_id,
|
2015-07-09 06:39:30 -04:00
|
|
|
"data": json.dumps(data),
|
2015-07-01 06:41:55 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2018-06-01 09:01:43 -04:00
|
|
|
if receipt_type == "m.read" and stream_ordering is not None:
|
2016-05-20 10:25:12 -04:00
|
|
|
self._remove_old_push_actions_before_txn(
|
2016-05-03 09:22:33 -04:00
|
|
|
txn,
|
|
|
|
room_id=room_id,
|
|
|
|
user_id=user_id,
|
2017-02-03 13:12:53 -05:00
|
|
|
stream_ordering=stream_ordering,
|
2016-05-03 09:22:33 -04:00
|
|
|
)
|
|
|
|
|
2015-07-07 10:25:30 -04:00
|
|
|
return True
|
|
|
|
|
2015-07-01 06:41:55 -04:00
|
|
|
@defer.inlineCallbacks
|
2015-07-09 06:39:30 -04:00
|
|
|
def insert_receipt(self, room_id, receipt_type, user_id, event_ids, data):
|
2015-07-13 08:30:43 -04:00
|
|
|
"""Insert a receipt, either from local client or remote server.
|
|
|
|
|
|
|
|
Automatically does conversion between linearized and graph
|
|
|
|
representations.
|
|
|
|
"""
|
2015-07-01 06:41:55 -04:00
|
|
|
if not event_ids:
|
|
|
|
return
|
|
|
|
|
|
|
|
if len(event_ids) == 1:
|
|
|
|
linearized_event_id = event_ids[0]
|
|
|
|
else:
|
|
|
|
# we need to points in graph -> linearized form.
|
2015-07-09 11:14:46 -04:00
|
|
|
# TODO: Make this better.
|
2015-07-01 06:41:55 -04:00
|
|
|
def graph_to_linear(txn):
|
|
|
|
query = (
|
|
|
|
"SELECT event_id WHERE room_id = ? AND stream_ordering IN ("
|
|
|
|
" SELECT max(stream_ordering) WHERE event_id IN (%s)"
|
|
|
|
")"
|
|
|
|
) % (",".join(["?"] * len(event_ids)))
|
|
|
|
|
|
|
|
txn.execute(query, [room_id] + event_ids)
|
|
|
|
rows = txn.fetchall()
|
|
|
|
if rows:
|
|
|
|
return rows[0][0]
|
|
|
|
else:
|
2015-07-09 11:14:46 -04:00
|
|
|
raise RuntimeError("Unrecognized event_ids: %r" % (event_ids,))
|
2015-07-01 06:41:55 -04:00
|
|
|
|
|
|
|
linearized_event_id = yield self.runInteraction(
|
2015-07-07 05:55:31 -04:00
|
|
|
"insert_receipt_conv", graph_to_linear
|
2015-07-01 06:41:55 -04:00
|
|
|
)
|
|
|
|
|
2016-03-01 09:32:56 -05:00
|
|
|
stream_id_manager = self._receipts_id_gen.get_next()
|
2015-07-07 05:55:31 -04:00
|
|
|
with stream_id_manager as stream_id:
|
2015-07-07 10:25:30 -04:00
|
|
|
have_persisted = yield self.runInteraction(
|
2015-07-07 05:55:31 -04:00
|
|
|
"insert_linearized_receipt",
|
2015-07-01 06:41:55 -04:00
|
|
|
self.insert_linearized_receipt_txn,
|
|
|
|
room_id, receipt_type, user_id, linearized_event_id,
|
2015-07-09 06:39:30 -04:00
|
|
|
data,
|
2015-07-01 06:41:55 -04:00
|
|
|
stream_id=stream_id,
|
|
|
|
)
|
|
|
|
|
2015-07-07 10:25:30 -04:00
|
|
|
if not have_persisted:
|
|
|
|
defer.returnValue(None)
|
|
|
|
|
2015-07-01 06:41:55 -04:00
|
|
|
yield self.insert_graph_receipt(
|
2015-07-09 06:39:30 -04:00
|
|
|
room_id, receipt_type, user_id, event_ids, data
|
2015-07-01 06:41:55 -04:00
|
|
|
)
|
|
|
|
|
2016-12-08 07:06:47 -05:00
|
|
|
max_persisted_id = self._receipts_id_gen.get_current_token()
|
2016-01-20 10:30:31 -05:00
|
|
|
|
2015-07-01 06:41:55 -04:00
|
|
|
defer.returnValue((stream_id, max_persisted_id))
|
|
|
|
|
2015-07-09 06:39:30 -04:00
|
|
|
def insert_graph_receipt(self, room_id, receipt_type, user_id, event_ids,
|
|
|
|
data):
|
2015-07-01 06:41:55 -04:00
|
|
|
return self.runInteraction(
|
2015-07-07 05:55:31 -04:00
|
|
|
"insert_graph_receipt",
|
2015-07-01 06:41:55 -04:00
|
|
|
self.insert_graph_receipt_txn,
|
2015-07-09 06:39:30 -04:00
|
|
|
room_id, receipt_type, user_id, event_ids, data
|
2015-07-01 06:41:55 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
def insert_graph_receipt_txn(self, txn, room_id, receipt_type,
|
2015-07-09 06:39:30 -04:00
|
|
|
user_id, event_ids, data):
|
2016-01-20 10:30:31 -05:00
|
|
|
txn.call_after(
|
|
|
|
self.get_receipts_for_room.invalidate, (room_id, receipt_type)
|
|
|
|
)
|
2016-06-01 05:31:09 -04:00
|
|
|
txn.call_after(
|
|
|
|
self._invalidate_get_users_with_receipts_in_room,
|
|
|
|
room_id, receipt_type, user_id,
|
|
|
|
)
|
2016-01-20 10:30:31 -05:00
|
|
|
txn.call_after(
|
|
|
|
self.get_receipts_for_user.invalidate, (user_id, receipt_type)
|
|
|
|
)
|
|
|
|
# FIXME: This shouldn't invalidate the whole cache
|
2016-05-13 06:41:23 -04:00
|
|
|
txn.call_after(self.get_linearized_receipts_for_room.invalidate_many, (room_id,))
|
2016-01-20 10:30:31 -05:00
|
|
|
|
2015-07-01 06:41:55 -04:00
|
|
|
self._simple_delete_txn(
|
|
|
|
txn,
|
|
|
|
table="receipts_graph",
|
|
|
|
keyvalues={
|
|
|
|
"room_id": room_id,
|
|
|
|
"receipt_type": receipt_type,
|
|
|
|
"user_id": user_id,
|
|
|
|
}
|
|
|
|
)
|
2015-07-09 06:39:30 -04:00
|
|
|
self._simple_insert_txn(
|
2015-07-01 06:41:55 -04:00
|
|
|
txn,
|
|
|
|
table="receipts_graph",
|
2015-07-09 06:39:30 -04:00
|
|
|
values={
|
|
|
|
"room_id": room_id,
|
|
|
|
"receipt_type": receipt_type,
|
|
|
|
"user_id": user_id,
|
|
|
|
"event_ids": json.dumps(event_ids),
|
|
|
|
"data": json.dumps(data),
|
|
|
|
}
|
2015-07-01 06:41:55 -04:00
|
|
|
)
|