2015-12-10 12:51:15 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-04 08:39:29 -05:00
|
|
|
# Copyright 2015 OpenMarket Ltd
|
2015-12-10 12:51:15 -05: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.
|
|
|
|
|
|
|
|
from ._base import SQLBaseStore
|
|
|
|
from twisted.internet import defer
|
2016-01-21 10:02:07 -05:00
|
|
|
from synapse.util.caches.descriptors import cachedInlineCallbacks
|
2015-12-10 12:51:15 -05:00
|
|
|
|
|
|
|
import logging
|
2016-01-19 06:35:50 -05:00
|
|
|
import ujson as json
|
2015-12-10 12:51:15 -05:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2016-01-04 09:05:37 -05:00
|
|
|
class EventPushActionsStore(SQLBaseStore):
|
2016-02-10 06:09:56 -05:00
|
|
|
def _set_push_actions_for_event_and_users_txn(self, txn, event, tuples):
|
2015-12-22 12:04:31 -05:00
|
|
|
"""
|
2016-04-01 11:08:59 -04:00
|
|
|
Args:
|
|
|
|
event: the event set actions for
|
|
|
|
tuples: list of tuples of (user_id, actions)
|
2015-12-22 12:04:31 -05:00
|
|
|
"""
|
|
|
|
values = []
|
2016-02-18 11:05:13 -05:00
|
|
|
for uid, actions in tuples:
|
2015-12-22 12:04:31 -05:00
|
|
|
values.append({
|
2016-01-06 06:38:09 -05:00
|
|
|
'room_id': event.room_id,
|
|
|
|
'event_id': event.event_id,
|
2015-12-22 12:04:31 -05:00
|
|
|
'user_id': uid,
|
2016-02-03 05:50:49 -05:00
|
|
|
'actions': json.dumps(actions),
|
|
|
|
'stream_ordering': event.internal_metadata.stream_ordering,
|
|
|
|
'topological_ordering': event.depth,
|
|
|
|
'notif': 1,
|
|
|
|
'highlight': 1 if _action_has_highlight(actions) else 0,
|
2015-12-22 12:04:31 -05:00
|
|
|
})
|
|
|
|
|
2016-02-18 11:05:13 -05:00
|
|
|
for uid, __ in tuples:
|
2016-02-09 11:19:15 -05:00
|
|
|
txn.call_after(
|
|
|
|
self.get_unread_event_push_actions_by_room_for_user.invalidate_many,
|
|
|
|
(event.room_id, uid)
|
|
|
|
)
|
|
|
|
self._simple_insert_many_txn(txn, "event_push_actions", values)
|
2015-12-10 12:51:15 -05:00
|
|
|
|
2016-03-22 10:18:21 -04:00
|
|
|
@cachedInlineCallbacks(num_args=3, lru=True, tree=True, max_entries=5000)
|
2016-01-04 09:05:37 -05:00
|
|
|
def get_unread_event_push_actions_by_room_for_user(
|
2015-12-18 12:47:00 -05:00
|
|
|
self, room_id, user_id, last_read_event_id
|
|
|
|
):
|
2016-01-04 09:05:37 -05:00
|
|
|
def _get_unread_event_push_actions_by_room(txn):
|
2015-12-16 13:42:09 -05:00
|
|
|
sql = (
|
|
|
|
"SELECT stream_ordering, topological_ordering"
|
|
|
|
" FROM events"
|
|
|
|
" WHERE room_id = ? AND event_id = ?"
|
|
|
|
)
|
|
|
|
txn.execute(
|
|
|
|
sql, (room_id, last_read_event_id)
|
|
|
|
)
|
|
|
|
results = txn.fetchall()
|
|
|
|
if len(results) == 0:
|
2016-02-03 11:35:00 -05:00
|
|
|
return {"notify_count": 0, "highlight_count": 0}
|
2015-12-16 13:42:09 -05:00
|
|
|
|
|
|
|
stream_ordering = results[0][0]
|
|
|
|
topological_ordering = results[0][1]
|
|
|
|
|
|
|
|
sql = (
|
2016-02-03 05:50:49 -05:00
|
|
|
"SELECT sum(notif), sum(highlight)"
|
|
|
|
" FROM event_push_actions ea"
|
|
|
|
" WHERE"
|
|
|
|
" user_id = ?"
|
|
|
|
" AND room_id = ?"
|
2015-12-16 13:42:09 -05:00
|
|
|
" AND ("
|
2016-02-03 05:50:49 -05:00
|
|
|
" topological_ordering > ?"
|
|
|
|
" OR (topological_ordering = ? AND stream_ordering > ?)"
|
2015-12-16 13:42:09 -05:00
|
|
|
")"
|
|
|
|
)
|
2015-12-21 05:14:57 -05:00
|
|
|
txn.execute(sql, (
|
|
|
|
user_id, room_id,
|
|
|
|
topological_ordering, topological_ordering, stream_ordering
|
2016-02-03 05:50:49 -05:00
|
|
|
))
|
|
|
|
row = txn.fetchone()
|
|
|
|
if row:
|
|
|
|
return {
|
|
|
|
"notify_count": row[0] or 0,
|
|
|
|
"highlight_count": row[1] or 0,
|
|
|
|
}
|
|
|
|
else:
|
|
|
|
return {"notify_count": 0, "highlight_count": 0}
|
2015-12-16 13:42:09 -05:00
|
|
|
|
|
|
|
ret = yield self.runInteraction(
|
2016-01-04 09:05:37 -05:00
|
|
|
"get_unread_event_push_actions_by_room",
|
|
|
|
_get_unread_event_push_actions_by_room
|
2015-12-16 13:42:09 -05:00
|
|
|
)
|
|
|
|
defer.returnValue(ret)
|
2015-12-10 12:51:15 -05:00
|
|
|
|
2016-04-06 10:42:15 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_push_action_users_in_range(self, min_stream_ordering, max_stream_ordering):
|
|
|
|
def f(txn):
|
|
|
|
sql = (
|
|
|
|
"SELECT DISTINCT(user_id) FROM event_push_actions WHERE"
|
2016-04-07 12:33:37 -04:00
|
|
|
" stream_ordering >= ? AND stream_ordering <= ?"
|
2016-04-06 10:42:15 -04:00
|
|
|
)
|
|
|
|
txn.execute(sql, (min_stream_ordering, max_stream_ordering))
|
|
|
|
return [r[0] for r in txn.fetchall()]
|
|
|
|
ret = yield self.runInteraction("get_push_action_users_in_range", f)
|
|
|
|
defer.returnValue(ret)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_unread_push_actions_for_user_in_range(self, user_id,
|
|
|
|
min_stream_ordering,
|
|
|
|
max_stream_ordering=None):
|
2016-04-13 09:16:45 -04:00
|
|
|
def get_after_receipt(txn):
|
2016-04-06 10:42:15 -04:00
|
|
|
sql = (
|
2016-04-19 09:24:36 -04:00
|
|
|
"SELECT ep.event_id, ep.room_id, ep.stream_ordering, ep.actions, "
|
|
|
|
"e.received_ts "
|
2016-04-13 09:16:45 -04:00
|
|
|
"FROM event_push_actions AS ep, ("
|
2016-04-19 09:24:36 -04:00
|
|
|
" SELECT room_id, user_id, "
|
|
|
|
" max(topological_ordering) as topological_ordering, "
|
|
|
|
" max(stream_ordering) as stream_ordering "
|
2016-04-13 09:16:45 -04:00
|
|
|
" FROM events"
|
|
|
|
" NATURAL JOIN receipts_linearized WHERE receipt_type = 'm.read'"
|
|
|
|
" GROUP BY room_id, user_id"
|
|
|
|
") AS rl "
|
2016-04-19 09:24:36 -04:00
|
|
|
"NATURAL JOIN events e "
|
2016-04-13 09:16:45 -04:00
|
|
|
"WHERE"
|
|
|
|
" ep.room_id = rl.room_id"
|
|
|
|
" AND ("
|
|
|
|
" ep.topological_ordering > rl.topological_ordering"
|
|
|
|
" OR ("
|
|
|
|
" ep.topological_ordering = rl.topological_ordering"
|
2016-04-14 06:08:31 -04:00
|
|
|
" AND ep.stream_ordering > rl.stream_ordering"
|
2016-04-13 09:16:45 -04:00
|
|
|
" )"
|
|
|
|
" )"
|
2016-04-14 06:08:31 -04:00
|
|
|
" AND ep.stream_ordering > ?"
|
2016-04-13 09:16:45 -04:00
|
|
|
" AND ep.user_id = ?"
|
|
|
|
" AND ep.user_id = rl.user_id"
|
2016-04-06 10:42:15 -04:00
|
|
|
)
|
2016-04-13 09:16:45 -04:00
|
|
|
args = [min_stream_ordering, user_id]
|
2016-04-06 10:42:15 -04:00
|
|
|
if max_stream_ordering is not None:
|
2016-04-13 09:16:45 -04:00
|
|
|
sql += " AND ep.stream_ordering <= ?"
|
2016-04-06 10:42:15 -04:00
|
|
|
args.append(max_stream_ordering)
|
2016-04-13 09:16:45 -04:00
|
|
|
sql += " ORDER BY ep.stream_ordering ASC"
|
2016-04-06 10:42:15 -04:00
|
|
|
txn.execute(sql, args)
|
|
|
|
return txn.fetchall()
|
2016-04-13 09:16:45 -04:00
|
|
|
after_read_receipt = yield self.runInteraction(
|
|
|
|
"get_unread_push_actions_for_user_in_range", get_after_receipt
|
|
|
|
)
|
|
|
|
|
|
|
|
def get_no_receipt(txn):
|
|
|
|
sql = (
|
2016-04-19 09:24:36 -04:00
|
|
|
"SELECT ep.event_id, ep.room_id, ep.stream_ordering, ep.actions, "
|
|
|
|
"e.received_ts "
|
2016-04-13 09:16:45 -04:00
|
|
|
"FROM event_push_actions AS ep "
|
2016-04-19 09:24:36 -04:00
|
|
|
"JOIN events e ON ep.room_id = e.room_id AND ep.event_id = e.event_id "
|
2016-04-13 09:16:45 -04:00
|
|
|
"WHERE ep.room_id not in ("
|
|
|
|
" SELECT room_id FROM events NATURAL JOIN receipts_linearized"
|
|
|
|
" WHERE receipt_type = 'm.read' AND user_id = ? "
|
|
|
|
" GROUP BY room_id"
|
|
|
|
") AND ep.user_id = ? AND ep.stream_ordering > ?"
|
|
|
|
)
|
|
|
|
args = [user_id, user_id, min_stream_ordering]
|
|
|
|
if max_stream_ordering is not None:
|
|
|
|
sql += " AND ep.stream_ordering <= ?"
|
|
|
|
args.append(max_stream_ordering)
|
|
|
|
sql += " ORDER BY ep.stream_ordering ASC"
|
|
|
|
txn.execute(sql, args)
|
|
|
|
return txn.fetchall()
|
|
|
|
no_read_receipt = yield self.runInteraction(
|
|
|
|
"get_unread_push_actions_for_user_in_range", get_no_receipt
|
|
|
|
)
|
|
|
|
|
2016-04-06 10:42:15 -04:00
|
|
|
defer.returnValue([
|
|
|
|
{
|
|
|
|
"event_id": row[0],
|
2016-04-19 09:24:36 -04:00
|
|
|
"room_id": row[1],
|
|
|
|
"stream_ordering": row[2],
|
|
|
|
"actions": json.loads(row[3]),
|
|
|
|
"received_ts": row[4],
|
2016-04-13 09:23:27 -04:00
|
|
|
} for row in after_read_receipt + no_read_receipt
|
2016-04-06 10:42:15 -04:00
|
|
|
])
|
|
|
|
|
2016-04-19 09:24:36 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_time_of_last_push_action_before(self, stream_ordering):
|
|
|
|
def f(txn):
|
|
|
|
sql = (
|
|
|
|
"SELECT e.received_ts "
|
|
|
|
"FROM event_push_actions AS ep "
|
|
|
|
"JOIN events e ON ep.room_id = e.room_id AND ep.event_id = e.event_id "
|
|
|
|
"WHERE ep.stream_ordering > ? "
|
|
|
|
"ORDER BY ep.stream_ordering ASC "
|
|
|
|
"LIMIT 1"
|
|
|
|
)
|
|
|
|
txn.execute(sql, (stream_ordering,))
|
|
|
|
return txn.fetchone()
|
|
|
|
result = yield self.runInteraction("get_time_of_last_push_action_before", f)
|
|
|
|
defer.returnValue(result[0] if result is not None else None)
|
|
|
|
|
2016-04-06 10:42:15 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_latest_push_action_stream_ordering(self):
|
|
|
|
def f(txn):
|
|
|
|
txn.execute("SELECT MAX(stream_ordering) FROM event_push_actions")
|
|
|
|
return txn.fetchone()
|
|
|
|
result = yield self.runInteraction(
|
2016-04-06 11:50:47 -04:00
|
|
|
"get_latest_push_action_stream_ordering", f
|
2016-04-06 10:42:15 -04:00
|
|
|
)
|
|
|
|
defer.returnValue(result[0] or 0)
|
|
|
|
|
2016-04-19 09:24:36 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_time_of_latest_push_action_by_room_for_user(self, user_id):
|
|
|
|
"""
|
|
|
|
Returns only the received_ts of the last notification in each of the
|
|
|
|
user's rooms, in a dict by room_id
|
|
|
|
"""
|
|
|
|
def f(txn):
|
|
|
|
txn.execute(
|
|
|
|
"SELECT ep.room_id, MAX(e.received_ts) "
|
|
|
|
"FROM event_push_actions AS ep "
|
|
|
|
"JOIN events e ON ep.room_id = e.room_id AND ep.event_id = e.event_id "
|
|
|
|
"GROUP BY ep.room_id"
|
|
|
|
)
|
|
|
|
return txn.fetchall()
|
|
|
|
result = yield self.runInteraction(
|
|
|
|
"get_time_of_latest_push_action_by_room_for_user", f
|
|
|
|
)
|
|
|
|
|
|
|
|
defer.returnValue({row[0]: row[1] for row in result})
|
|
|
|
|
2016-02-10 06:09:56 -05:00
|
|
|
def _remove_push_actions_for_event_id_txn(self, txn, room_id, event_id):
|
2016-02-09 11:19:15 -05:00
|
|
|
# Sad that we have to blow away the cache for the whole room here
|
|
|
|
txn.call_after(
|
|
|
|
self.get_unread_event_push_actions_by_room_for_user.invalidate_many,
|
|
|
|
(room_id,)
|
|
|
|
)
|
|
|
|
txn.execute(
|
|
|
|
"DELETE FROM event_push_actions WHERE room_id = ? AND event_id = ?",
|
|
|
|
(room_id, event_id)
|
2016-01-06 06:58:46 -05:00
|
|
|
)
|
2016-02-03 05:50:49 -05:00
|
|
|
|
|
|
|
|
|
|
|
def _action_has_highlight(actions):
|
|
|
|
for action in actions:
|
|
|
|
try:
|
|
|
|
if action.get("set_tweak", None) == "highlight":
|
|
|
|
return action.get("value", True)
|
|
|
|
except AttributeError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
return False
|