2016-07-15 08:19:07 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2016 OpenMarket 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.
|
|
|
|
import logging
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from six import iteritems, itervalues
|
|
|
|
|
|
|
|
from canonicaljson import json
|
|
|
|
|
2016-07-15 08:19:07 -04:00
|
|
|
from twisted.internet import defer
|
|
|
|
|
|
|
|
from synapse.api.errors import StoreError
|
2018-07-25 04:41:12 -04:00
|
|
|
from synapse.metrics.background_process_metrics import run_as_background_process
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.util.caches.descriptors import cached, cachedInlineCallbacks, cachedList
|
2018-06-28 09:49:57 -04:00
|
|
|
|
2018-08-30 10:19:58 -04:00
|
|
|
from ._base import Cache, SQLBaseStore, db_to_json
|
2016-07-15 08:19:07 -04:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class DeviceStore(SQLBaseStore):
|
2017-11-09 13:51:27 -05:00
|
|
|
def __init__(self, db_conn, hs):
|
|
|
|
super(DeviceStore, self).__init__(db_conn, hs)
|
2017-01-30 05:12:00 -05:00
|
|
|
|
2017-05-08 10:33:57 -04:00
|
|
|
# Map of (user_id, device_id) -> bool. If there is an entry that implies
|
|
|
|
# the device exists.
|
2017-05-08 10:32:18 -04:00
|
|
|
self.device_id_exists_cache = Cache(
|
|
|
|
name="device_id_exists",
|
|
|
|
keylen=2,
|
|
|
|
max_entries=10000,
|
|
|
|
)
|
|
|
|
|
2017-06-07 06:16:56 -04:00
|
|
|
self._clock.looping_call(
|
|
|
|
self._prune_old_outbound_device_pokes, 60 * 60 * 1000
|
|
|
|
)
|
|
|
|
|
2017-03-01 10:56:30 -05:00
|
|
|
self.register_background_index_update(
|
2017-03-03 10:29:13 -05:00
|
|
|
"device_lists_stream_idx",
|
|
|
|
index_name="device_lists_stream_user_id",
|
|
|
|
table="device_lists_stream",
|
|
|
|
columns=["user_id", "device_id"],
|
2017-03-01 10:56:30 -05:00
|
|
|
)
|
|
|
|
|
2016-07-15 08:19:07 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def store_device(self, user_id, device_id,
|
2017-01-27 05:27:39 -05:00
|
|
|
initial_device_display_name):
|
2016-07-15 08:19:07 -04:00
|
|
|
"""Ensure the given device is known; add it to the store if not
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str): id of user associated with the device
|
|
|
|
device_id (str): id of device
|
|
|
|
initial_device_display_name (str): initial displayname of the
|
2017-01-25 09:27:27 -05:00
|
|
|
device. Ignored if device exists.
|
2016-07-15 08:19:07 -04:00
|
|
|
Returns:
|
2017-01-25 09:27:27 -05:00
|
|
|
defer.Deferred: boolean whether the device was inserted or an
|
|
|
|
existing device existed with that ID.
|
2016-07-15 08:19:07 -04:00
|
|
|
"""
|
2017-05-08 10:32:18 -04:00
|
|
|
key = (user_id, device_id)
|
|
|
|
if self.device_id_exists_cache.get(key, None):
|
|
|
|
defer.returnValue(False)
|
|
|
|
|
2016-07-15 08:19:07 -04:00
|
|
|
try:
|
2017-01-25 09:27:27 -05:00
|
|
|
inserted = yield self._simple_insert(
|
2016-07-15 08:19:07 -04:00
|
|
|
"devices",
|
|
|
|
values={
|
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": device_id,
|
|
|
|
"display_name": initial_device_display_name
|
|
|
|
},
|
|
|
|
desc="store_device",
|
2017-01-25 09:27:27 -05:00
|
|
|
or_ignore=True,
|
2016-07-15 08:19:07 -04:00
|
|
|
)
|
2017-05-08 10:32:18 -04:00
|
|
|
self.device_id_exists_cache.prefill(key, True)
|
2017-01-25 09:27:27 -05:00
|
|
|
defer.returnValue(inserted)
|
2016-07-15 08:19:07 -04:00
|
|
|
except Exception as e:
|
2016-09-07 12:19:18 -04:00
|
|
|
logger.error("store_device with device_id=%s(%r) user_id=%s(%r)"
|
|
|
|
" display_name=%s(%r) failed: %s",
|
|
|
|
type(device_id).__name__, device_id,
|
|
|
|
type(user_id).__name__, user_id,
|
|
|
|
type(initial_device_display_name).__name__,
|
|
|
|
initial_device_display_name, e)
|
2016-07-15 08:19:07 -04:00
|
|
|
raise StoreError(500, "Problem storing device.")
|
|
|
|
|
|
|
|
def get_device(self, user_id, device_id):
|
|
|
|
"""Retrieve a device.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str): The ID of the user which owns the device
|
|
|
|
device_id (str): The ID of the device to retrieve
|
|
|
|
Returns:
|
2016-07-20 11:34:00 -04:00
|
|
|
defer.Deferred for a dict containing the device information
|
2016-07-15 08:19:07 -04:00
|
|
|
Raises:
|
|
|
|
StoreError: if the device is not found
|
|
|
|
"""
|
|
|
|
return self._simple_select_one(
|
|
|
|
table="devices",
|
|
|
|
keyvalues={"user_id": user_id, "device_id": device_id},
|
|
|
|
retcols=("user_id", "device_id", "display_name"),
|
|
|
|
desc="get_device",
|
|
|
|
)
|
2016-07-20 11:34:00 -04:00
|
|
|
|
2017-05-08 11:10:51 -04:00
|
|
|
@defer.inlineCallbacks
|
2016-07-22 09:52:53 -04:00
|
|
|
def delete_device(self, user_id, device_id):
|
|
|
|
"""Delete a device.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str): The ID of the user which owns the device
|
2016-07-25 12:51:24 -04:00
|
|
|
device_id (str): The ID of the device to delete
|
2016-07-22 09:52:53 -04:00
|
|
|
Returns:
|
|
|
|
defer.Deferred
|
|
|
|
"""
|
2017-05-08 11:10:51 -04:00
|
|
|
yield self._simple_delete_one(
|
2016-07-22 09:52:53 -04:00
|
|
|
table="devices",
|
|
|
|
keyvalues={"user_id": user_id, "device_id": device_id},
|
|
|
|
desc="delete_device",
|
|
|
|
)
|
|
|
|
|
2017-05-08 10:55:59 -04:00
|
|
|
self.device_id_exists_cache.invalidate((user_id, device_id))
|
|
|
|
|
2017-05-08 11:10:51 -04:00
|
|
|
@defer.inlineCallbacks
|
2017-03-13 13:53:23 -04:00
|
|
|
def delete_devices(self, user_id, device_ids):
|
|
|
|
"""Deletes several devices.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str): The ID of the user which owns the devices
|
|
|
|
device_ids (list): The IDs of the devices to delete
|
|
|
|
Returns:
|
|
|
|
defer.Deferred
|
|
|
|
"""
|
2017-05-08 11:10:51 -04:00
|
|
|
yield self._simple_delete_many(
|
2017-03-13 13:53:23 -04:00
|
|
|
table="devices",
|
|
|
|
column="device_id",
|
|
|
|
iterable=device_ids,
|
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
desc="delete_devices",
|
|
|
|
)
|
2017-05-08 10:55:59 -04:00
|
|
|
for device_id in device_ids:
|
|
|
|
self.device_id_exists_cache.invalidate((user_id, device_id))
|
2017-03-13 13:53:23 -04:00
|
|
|
|
2016-07-25 12:51:24 -04:00
|
|
|
def update_device(self, user_id, device_id, new_display_name=None):
|
|
|
|
"""Update a device.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str): The ID of the user which owns the device
|
|
|
|
device_id (str): The ID of the device to update
|
|
|
|
new_display_name (str|None): new displayname for device; None
|
|
|
|
to leave unchanged
|
|
|
|
Raises:
|
|
|
|
StoreError: if the device is not found
|
|
|
|
Returns:
|
|
|
|
defer.Deferred
|
|
|
|
"""
|
|
|
|
updates = {}
|
|
|
|
if new_display_name is not None:
|
|
|
|
updates["display_name"] = new_display_name
|
|
|
|
if not updates:
|
|
|
|
return defer.succeed(None)
|
|
|
|
return self._simple_update_one(
|
|
|
|
table="devices",
|
|
|
|
keyvalues={"user_id": user_id, "device_id": device_id},
|
|
|
|
updatevalues=updates,
|
|
|
|
desc="update_device",
|
|
|
|
)
|
|
|
|
|
2016-07-20 11:34:00 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_devices_by_user(self, user_id):
|
|
|
|
"""Retrieve all of a user's registered devices.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
user_id (str):
|
|
|
|
Returns:
|
|
|
|
defer.Deferred: resolves to a dict from device_id to a dict
|
|
|
|
containing "device_id", "user_id" and "display_name" for each
|
|
|
|
device.
|
|
|
|
"""
|
|
|
|
devices = yield self._simple_select_list(
|
|
|
|
table="devices",
|
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
retcols=("user_id", "device_id", "display_name"),
|
|
|
|
desc="get_devices_by_user"
|
|
|
|
)
|
|
|
|
|
|
|
|
defer.returnValue({d["device_id"]: d for d in devices})
|
2017-01-25 09:27:27 -05:00
|
|
|
|
2017-02-27 11:22:12 -05:00
|
|
|
@cached(max_entries=10000)
|
2017-01-27 05:29:47 -05:00
|
|
|
def get_device_list_last_stream_id_for_remote(self, user_id):
|
2017-01-26 11:30:37 -05:00
|
|
|
"""Get the last stream_id we got for a user. May be None if we haven't
|
|
|
|
got any information for them.
|
|
|
|
"""
|
2017-01-26 11:06:54 -05:00
|
|
|
return self._simple_select_one_onecol(
|
|
|
|
table="device_lists_remote_extremeties",
|
|
|
|
keyvalues={"user_id": user_id},
|
|
|
|
retcol="stream_id",
|
|
|
|
desc="get_device_list_remote_extremity",
|
|
|
|
allow_none=True,
|
|
|
|
)
|
|
|
|
|
2017-02-27 11:22:12 -05:00
|
|
|
@cachedList(cached_method_name="get_device_list_last_stream_id_for_remote",
|
|
|
|
list_name="user_ids", inlineCallbacks=True)
|
|
|
|
def get_device_list_last_stream_id_for_remotes(self, user_ids):
|
|
|
|
rows = yield self._simple_select_many_batch(
|
|
|
|
table="device_lists_remote_extremeties",
|
|
|
|
column="user_id",
|
|
|
|
iterable=user_ids,
|
|
|
|
retcols=("user_id", "stream_id",),
|
|
|
|
desc="get_user_devices_from_cache",
|
|
|
|
)
|
|
|
|
|
|
|
|
results = {user_id: None for user_id in user_ids}
|
|
|
|
results.update({
|
|
|
|
row["user_id"]: row["stream_id"] for row in rows
|
|
|
|
})
|
|
|
|
|
|
|
|
defer.returnValue(results)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2017-01-26 11:39:33 -05:00
|
|
|
def mark_remote_user_device_list_as_unsubscribed(self, user_id):
|
2017-01-27 05:31:06 -05:00
|
|
|
"""Mark that we no longer track device lists for remote user.
|
|
|
|
"""
|
2017-02-27 11:22:12 -05:00
|
|
|
yield self._simple_delete(
|
2017-01-26 11:39:33 -05:00
|
|
|
table="device_lists_remote_extremeties",
|
|
|
|
keyvalues={
|
|
|
|
"user_id": user_id,
|
|
|
|
},
|
2017-01-30 11:55:04 -05:00
|
|
|
desc="mark_remote_user_device_list_as_unsubscribed",
|
2017-01-26 11:39:33 -05:00
|
|
|
)
|
2017-02-27 11:22:12 -05:00
|
|
|
self.get_device_list_last_stream_id_for_remote.invalidate((user_id,))
|
2017-01-26 11:39:33 -05:00
|
|
|
|
2017-01-26 11:06:54 -05:00
|
|
|
def update_remote_device_list_cache_entry(self, user_id, device_id, content,
|
|
|
|
stream_id):
|
2017-01-26 11:30:37 -05:00
|
|
|
"""Updates a single user's device in the cache.
|
|
|
|
"""
|
2017-01-26 11:06:54 -05:00
|
|
|
return self.runInteraction(
|
|
|
|
"update_remote_device_list_cache_entry",
|
|
|
|
self._update_remote_device_list_cache_entry_txn,
|
|
|
|
user_id, device_id, content, stream_id,
|
|
|
|
)
|
|
|
|
|
|
|
|
def _update_remote_device_list_cache_entry_txn(self, txn, user_id, device_id,
|
|
|
|
content, stream_id):
|
2018-07-12 06:39:43 -04:00
|
|
|
if content.get("deleted"):
|
2018-07-11 20:32:39 -04:00
|
|
|
self._simple_delete_txn(
|
|
|
|
txn,
|
|
|
|
table="device_lists_remote_cache",
|
|
|
|
keyvalues={
|
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": device_id,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
txn.call_after(
|
|
|
|
self.device_id_exists_cache.invalidate, (user_id, device_id,)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
self._simple_upsert_txn(
|
|
|
|
txn,
|
|
|
|
table="device_lists_remote_cache",
|
|
|
|
keyvalues={
|
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": device_id,
|
|
|
|
},
|
|
|
|
values={
|
|
|
|
"content": json.dumps(content),
|
|
|
|
}
|
|
|
|
)
|
2017-01-26 11:06:54 -05:00
|
|
|
|
2017-02-27 11:22:12 -05:00
|
|
|
txn.call_after(self._get_cached_user_device.invalidate, (user_id, device_id,))
|
|
|
|
txn.call_after(self._get_cached_devices_for_user.invalidate, (user_id,))
|
|
|
|
txn.call_after(
|
|
|
|
self.get_device_list_last_stream_id_for_remote.invalidate, (user_id,)
|
|
|
|
)
|
|
|
|
|
2017-01-26 11:06:54 -05:00
|
|
|
self._simple_upsert_txn(
|
|
|
|
txn,
|
|
|
|
table="device_lists_remote_extremeties",
|
|
|
|
keyvalues={
|
|
|
|
"user_id": user_id,
|
|
|
|
},
|
|
|
|
values={
|
|
|
|
"stream_id": stream_id,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
def update_remote_device_list_cache(self, user_id, devices, stream_id):
|
2017-01-26 11:30:37 -05:00
|
|
|
"""Replace the cache of the remote user's devices.
|
|
|
|
"""
|
2017-01-26 11:06:54 -05:00
|
|
|
return self.runInteraction(
|
|
|
|
"update_remote_device_list_cache",
|
|
|
|
self._update_remote_device_list_cache_txn,
|
|
|
|
user_id, devices, stream_id,
|
|
|
|
)
|
|
|
|
|
|
|
|
def _update_remote_device_list_cache_txn(self, txn, user_id, devices,
|
|
|
|
stream_id):
|
|
|
|
self._simple_delete_txn(
|
|
|
|
txn,
|
|
|
|
table="device_lists_remote_cache",
|
|
|
|
keyvalues={
|
|
|
|
"user_id": user_id,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
self._simple_insert_many_txn(
|
|
|
|
txn,
|
|
|
|
table="device_lists_remote_cache",
|
|
|
|
values=[
|
|
|
|
{
|
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": content["device_id"],
|
|
|
|
"content": json.dumps(content),
|
|
|
|
}
|
|
|
|
for content in devices
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2017-02-27 11:22:12 -05:00
|
|
|
txn.call_after(self._get_cached_devices_for_user.invalidate, (user_id,))
|
|
|
|
txn.call_after(self._get_cached_user_device.invalidate_many, (user_id,))
|
|
|
|
txn.call_after(
|
|
|
|
self.get_device_list_last_stream_id_for_remote.invalidate, (user_id,)
|
|
|
|
)
|
|
|
|
|
2017-01-26 11:06:54 -05:00
|
|
|
self._simple_upsert_txn(
|
|
|
|
txn,
|
|
|
|
table="device_lists_remote_extremeties",
|
|
|
|
keyvalues={
|
|
|
|
"user_id": user_id,
|
|
|
|
},
|
|
|
|
values={
|
|
|
|
"stream_id": stream_id,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2017-01-25 09:27:27 -05:00
|
|
|
def get_devices_by_remote(self, destination, from_stream_id):
|
2017-01-26 11:30:37 -05:00
|
|
|
"""Get stream of updates to send to remote servers
|
|
|
|
|
|
|
|
Returns:
|
2017-03-15 08:16:55 -04:00
|
|
|
(int, list[dict]): current stream id and list of updates
|
2017-01-26 11:30:37 -05:00
|
|
|
"""
|
2017-01-25 09:27:27 -05:00
|
|
|
now_stream_id = self._device_list_id_gen.get_current_token()
|
|
|
|
|
2017-01-25 11:55:21 -05:00
|
|
|
has_changed = self._device_list_federation_stream_cache.has_entity_changed(
|
2017-01-25 09:27:27 -05:00
|
|
|
destination, int(from_stream_id)
|
|
|
|
)
|
|
|
|
if not has_changed:
|
2017-01-25 11:55:21 -05:00
|
|
|
return (now_stream_id, [])
|
2017-01-25 09:27:27 -05:00
|
|
|
|
|
|
|
return self.runInteraction(
|
|
|
|
"get_devices_by_remote", self._get_devices_by_remote_txn,
|
|
|
|
destination, from_stream_id, now_stream_id,
|
|
|
|
)
|
|
|
|
|
|
|
|
def _get_devices_by_remote_txn(self, txn, destination, from_stream_id,
|
|
|
|
now_stream_id):
|
|
|
|
sql = """
|
|
|
|
SELECT user_id, device_id, max(stream_id) FROM device_lists_outbound_pokes
|
2017-01-27 05:31:29 -05:00
|
|
|
WHERE destination = ? AND ? < stream_id AND stream_id <= ? AND sent = ?
|
2017-01-25 09:27:27 -05:00
|
|
|
GROUP BY user_id, device_id
|
2017-03-24 10:44:49 -04:00
|
|
|
LIMIT 20
|
2017-01-25 09:27:27 -05:00
|
|
|
"""
|
|
|
|
txn.execute(
|
|
|
|
sql, (destination, from_stream_id, now_stream_id, False)
|
|
|
|
)
|
|
|
|
|
2017-03-23 13:53:49 -04:00
|
|
|
# maps (user_id, device_id) -> stream_id
|
|
|
|
query_map = {(r[0], r[1]): r[2] for r in txn}
|
|
|
|
if not query_map:
|
2017-01-25 11:55:21 -05:00
|
|
|
return (now_stream_id, [])
|
2017-01-25 09:27:27 -05:00
|
|
|
|
2017-03-24 10:44:49 -04:00
|
|
|
if len(query_map) >= 20:
|
2018-04-28 07:19:12 -04:00
|
|
|
now_stream_id = max(stream_id for stream_id in itervalues(query_map))
|
2017-03-24 10:44:49 -04:00
|
|
|
|
2017-01-25 09:27:27 -05:00
|
|
|
devices = self._get_e2e_device_keys_txn(
|
2018-07-11 20:32:39 -04:00
|
|
|
txn, query_map.keys(), include_all_devices=True, include_deleted_devices=True
|
2017-01-25 09:27:27 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
prev_sent_id_sql = """
|
|
|
|
SELECT coalesce(max(stream_id), 0) as stream_id
|
2017-06-07 06:02:38 -04:00
|
|
|
FROM device_lists_outbound_last_success
|
2017-01-30 05:11:46 -05:00
|
|
|
WHERE destination = ? AND user_id = ? AND stream_id <= ?
|
2017-01-25 09:27:27 -05:00
|
|
|
"""
|
|
|
|
|
|
|
|
results = []
|
2018-04-28 07:19:12 -04:00
|
|
|
for user_id, user_devices in iteritems(devices):
|
2017-01-30 05:11:46 -05:00
|
|
|
# The prev_id for the first row is always the last row before
|
|
|
|
# `from_stream_id`
|
|
|
|
txn.execute(prev_sent_id_sql, (destination, user_id, from_stream_id))
|
2017-01-25 09:27:27 -05:00
|
|
|
rows = txn.fetchall()
|
|
|
|
prev_id = rows[0][0]
|
2018-04-28 07:19:12 -04:00
|
|
|
for device_id, device in iteritems(user_devices):
|
2017-01-25 09:27:27 -05:00
|
|
|
stream_id = query_map[(user_id, device_id)]
|
|
|
|
result = {
|
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": device_id,
|
2017-01-25 11:55:21 -05:00
|
|
|
"prev_id": [prev_id] if prev_id else [],
|
2017-01-25 09:27:27 -05:00
|
|
|
"stream_id": stream_id,
|
|
|
|
}
|
|
|
|
|
|
|
|
prev_id = stream_id
|
|
|
|
|
2018-07-12 06:39:43 -04:00
|
|
|
if device is not None:
|
|
|
|
key_json = device.get("key_json", None)
|
|
|
|
if key_json:
|
2018-08-30 10:19:58 -04:00
|
|
|
result["keys"] = db_to_json(key_json)
|
2018-07-12 06:39:43 -04:00
|
|
|
device_display_name = device.get("device_display_name", None)
|
|
|
|
if device_display_name:
|
|
|
|
result["device_display_name"] = device_display_name
|
|
|
|
else:
|
|
|
|
result["deleted"] = True
|
2017-01-25 09:27:27 -05:00
|
|
|
|
2017-01-25 11:55:21 -05:00
|
|
|
results.append(result)
|
2017-01-25 09:27:27 -05:00
|
|
|
|
2017-01-25 11:55:21 -05:00
|
|
|
return (now_stream_id, results)
|
2017-01-25 09:27:27 -05:00
|
|
|
|
2017-02-27 11:22:12 -05:00
|
|
|
@defer.inlineCallbacks
|
2017-01-26 11:06:54 -05:00
|
|
|
def get_user_devices_from_cache(self, query_list):
|
2017-01-26 11:30:37 -05:00
|
|
|
"""Get the devices (and keys if any) for remote users from the cache.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
query_list(list): List of (user_id, device_ids), if device_ids is
|
|
|
|
falsey then return all device ids for that user.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
(user_ids_not_in_cache, results_map), where user_ids_not_in_cache is
|
|
|
|
a set of user_ids and results_map is a mapping of
|
|
|
|
user_id -> device_id -> device_info
|
|
|
|
"""
|
2017-02-27 11:22:12 -05:00
|
|
|
user_ids = set(user_id for user_id, _ in query_list)
|
|
|
|
user_map = yield self.get_device_list_last_stream_id_for_remotes(list(user_ids))
|
|
|
|
user_ids_in_cache = set(
|
|
|
|
user_id for user_id, stream_id in user_map.items() if stream_id
|
2017-01-26 11:06:54 -05:00
|
|
|
)
|
|
|
|
user_ids_not_in_cache = user_ids - user_ids_in_cache
|
|
|
|
|
|
|
|
results = {}
|
|
|
|
for user_id, device_id in query_list:
|
|
|
|
if user_id not in user_ids_in_cache:
|
|
|
|
continue
|
|
|
|
|
|
|
|
if device_id:
|
2017-02-27 11:22:12 -05:00
|
|
|
device = yield self._get_cached_user_device(user_id, device_id)
|
|
|
|
results.setdefault(user_id, {})[device_id] = device
|
2017-01-26 11:06:54 -05:00
|
|
|
else:
|
2017-02-27 11:22:12 -05:00
|
|
|
results[user_id] = yield self._get_cached_devices_for_user(user_id)
|
2017-01-26 11:06:54 -05:00
|
|
|
|
2017-02-27 11:22:12 -05:00
|
|
|
defer.returnValue((user_ids_not_in_cache, results))
|
|
|
|
|
|
|
|
@cachedInlineCallbacks(num_args=2, tree=True)
|
|
|
|
def _get_cached_user_device(self, user_id, device_id):
|
|
|
|
content = yield self._simple_select_one_onecol(
|
|
|
|
table="device_lists_remote_cache",
|
|
|
|
keyvalues={
|
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": device_id,
|
|
|
|
},
|
|
|
|
retcol="content",
|
|
|
|
desc="_get_cached_user_device",
|
|
|
|
)
|
2018-08-30 10:19:58 -04:00
|
|
|
defer.returnValue(db_to_json(content))
|
2017-02-27 11:22:12 -05:00
|
|
|
|
|
|
|
@cachedInlineCallbacks()
|
|
|
|
def _get_cached_devices_for_user(self, user_id):
|
|
|
|
devices = yield self._simple_select_list(
|
|
|
|
table="device_lists_remote_cache",
|
|
|
|
keyvalues={
|
|
|
|
"user_id": user_id,
|
|
|
|
},
|
|
|
|
retcols=("device_id", "content"),
|
|
|
|
desc="_get_cached_devices_for_user",
|
|
|
|
)
|
|
|
|
defer.returnValue({
|
2018-08-30 10:19:58 -04:00
|
|
|
device["device_id"]: db_to_json(device["content"])
|
2017-02-27 11:22:12 -05:00
|
|
|
for device in devices
|
|
|
|
})
|
2017-01-26 11:06:54 -05:00
|
|
|
|
|
|
|
def get_devices_with_keys_by_user(self, user_id):
|
2017-01-26 11:30:37 -05:00
|
|
|
"""Get all devices (with any device keys) for a user
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
(stream_id, devices)
|
|
|
|
"""
|
2017-01-26 11:06:54 -05:00
|
|
|
return self.runInteraction(
|
|
|
|
"get_devices_with_keys_by_user",
|
|
|
|
self._get_devices_with_keys_by_user_txn, user_id,
|
|
|
|
)
|
|
|
|
|
|
|
|
def _get_devices_with_keys_by_user_txn(self, txn, user_id):
|
|
|
|
now_stream_id = self._device_list_id_gen.get_current_token()
|
|
|
|
|
|
|
|
devices = self._get_e2e_device_keys_txn(
|
|
|
|
txn, [(user_id, None)], include_all_devices=True
|
|
|
|
)
|
|
|
|
|
2017-01-27 05:31:06 -05:00
|
|
|
if devices:
|
|
|
|
user_devices = devices[user_id]
|
2017-01-26 11:06:54 -05:00
|
|
|
results = []
|
2018-04-28 07:19:12 -04:00
|
|
|
for device_id, device in iteritems(user_devices):
|
2017-01-26 11:06:54 -05:00
|
|
|
result = {
|
|
|
|
"device_id": device_id,
|
|
|
|
}
|
|
|
|
|
|
|
|
key_json = device.get("key_json", None)
|
|
|
|
if key_json:
|
2018-08-30 10:19:58 -04:00
|
|
|
result["keys"] = db_to_json(key_json)
|
2017-01-26 11:06:54 -05:00
|
|
|
device_display_name = device.get("device_display_name", None)
|
|
|
|
if device_display_name:
|
|
|
|
result["device_display_name"] = device_display_name
|
|
|
|
|
|
|
|
results.append(result)
|
|
|
|
|
|
|
|
return now_stream_id, results
|
|
|
|
|
|
|
|
return now_stream_id, []
|
|
|
|
|
2017-01-25 09:27:27 -05:00
|
|
|
def mark_as_sent_devices_by_remote(self, destination, stream_id):
|
2017-01-26 11:30:37 -05:00
|
|
|
"""Mark that updates have successfully been sent to the destination.
|
|
|
|
"""
|
2017-01-25 09:27:27 -05:00
|
|
|
return self.runInteraction(
|
|
|
|
"mark_as_sent_devices_by_remote", self._mark_as_sent_devices_by_remote_txn,
|
|
|
|
destination, stream_id,
|
|
|
|
)
|
|
|
|
|
|
|
|
def _mark_as_sent_devices_by_remote_txn(self, txn, destination, stream_id):
|
2017-06-07 06:02:38 -04:00
|
|
|
# We update the device_lists_outbound_last_success with the successfully
|
|
|
|
# poked users. We do the join to see which users need to be inserted and
|
|
|
|
# which updated.
|
2017-01-31 08:22:41 -05:00
|
|
|
sql = """
|
2017-06-07 06:02:38 -04:00
|
|
|
SELECT user_id, coalesce(max(o.stream_id), 0), (max(s.stream_id) IS NOT NULL)
|
|
|
|
FROM device_lists_outbound_pokes as o
|
|
|
|
LEFT JOIN device_lists_outbound_last_success as s
|
|
|
|
USING (destination, user_id)
|
|
|
|
WHERE destination = ? AND o.stream_id <= ?
|
2017-01-31 08:22:41 -05:00
|
|
|
GROUP BY user_id
|
|
|
|
"""
|
|
|
|
txn.execute(sql, (destination, stream_id,))
|
|
|
|
rows = txn.fetchall()
|
|
|
|
|
2017-01-25 09:27:27 -05:00
|
|
|
sql = """
|
2017-06-07 06:02:38 -04:00
|
|
|
UPDATE device_lists_outbound_last_success
|
|
|
|
SET stream_id = ?
|
|
|
|
WHERE destination = ? AND user_id = ?
|
2017-01-25 09:27:27 -05:00
|
|
|
"""
|
2017-01-31 08:22:41 -05:00
|
|
|
txn.executemany(
|
2017-06-07 06:02:38 -04:00
|
|
|
sql, ((row[1], destination, row[0],) for row in rows if row[2])
|
2017-01-31 08:22:41 -05:00
|
|
|
)
|
2017-01-25 09:27:27 -05:00
|
|
|
|
|
|
|
sql = """
|
2017-06-07 06:02:38 -04:00
|
|
|
INSERT INTO device_lists_outbound_last_success
|
|
|
|
(destination, user_id, stream_id) VALUES (?, ?, ?)
|
|
|
|
"""
|
|
|
|
txn.executemany(
|
|
|
|
sql, ((destination, row[0], row[1],) for row in rows if not row[2])
|
|
|
|
)
|
|
|
|
|
|
|
|
# Delete all sent outbound pokes
|
|
|
|
sql = """
|
|
|
|
DELETE FROM device_lists_outbound_pokes
|
2017-01-25 09:27:27 -05:00
|
|
|
WHERE destination = ? AND stream_id <= ?
|
|
|
|
"""
|
2017-06-07 06:02:38 -04:00
|
|
|
txn.execute(sql, (destination, stream_id,))
|
2017-01-25 11:55:21 -05:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def get_user_whose_devices_changed(self, from_key):
|
2017-01-26 11:30:37 -05:00
|
|
|
"""Get set of users whose devices have changed since `from_key`.
|
|
|
|
"""
|
2017-01-25 11:55:21 -05:00
|
|
|
from_key = int(from_key)
|
|
|
|
changed = self._device_list_stream_cache.get_all_entities_changed(from_key)
|
|
|
|
if changed is not None:
|
|
|
|
defer.returnValue(set(changed))
|
|
|
|
|
|
|
|
sql = """
|
2017-03-06 06:10:10 -05:00
|
|
|
SELECT DISTINCT user_id FROM device_lists_stream WHERE stream_id > ?
|
2017-01-25 11:55:21 -05:00
|
|
|
"""
|
|
|
|
rows = yield self._execute("get_user_whose_devices_changed", None, sql, from_key)
|
2017-01-30 11:38:20 -05:00
|
|
|
defer.returnValue(set(row[0] for row in rows))
|
2017-01-25 09:27:27 -05:00
|
|
|
|
2017-03-27 09:03:38 -04:00
|
|
|
def get_all_device_list_changes_for_remotes(self, from_key, to_key):
|
2017-01-27 08:36:39 -05:00
|
|
|
"""Return a list of `(stream_id, user_id, destination)` which is the
|
|
|
|
combined list of changes to devices, and which destinations need to be
|
|
|
|
poked. `destination` may be None if no destinations need to be poked.
|
|
|
|
"""
|
|
|
|
sql = """
|
|
|
|
SELECT stream_id, user_id, destination FROM device_lists_stream
|
|
|
|
LEFT JOIN device_lists_outbound_pokes USING (stream_id, user_id, device_id)
|
2017-03-27 09:03:38 -04:00
|
|
|
WHERE ? < stream_id AND stream_id <= ?
|
2017-01-27 08:36:39 -05:00
|
|
|
"""
|
|
|
|
return self._execute(
|
2017-02-28 05:15:50 -05:00
|
|
|
"get_all_device_list_changes_for_remotes", None,
|
2017-03-27 09:03:38 -04:00
|
|
|
sql, from_key, to_key
|
2017-01-27 08:36:39 -05:00
|
|
|
)
|
|
|
|
|
2017-01-25 09:27:27 -05:00
|
|
|
@defer.inlineCallbacks
|
2017-01-26 11:06:54 -05:00
|
|
|
def add_device_change_to_streams(self, user_id, device_ids, hosts):
|
2017-01-26 11:30:37 -05:00
|
|
|
"""Persist that a user's devices have been updated, and which hosts
|
|
|
|
(if any) should be poked.
|
|
|
|
"""
|
2017-01-25 09:27:27 -05:00
|
|
|
with self._device_list_id_gen.get_next() as stream_id:
|
|
|
|
yield self.runInteraction(
|
|
|
|
"add_device_change_to_streams", self._add_device_change_txn,
|
2017-01-26 11:06:54 -05:00
|
|
|
user_id, device_ids, hosts, stream_id,
|
2017-01-25 09:27:27 -05:00
|
|
|
)
|
|
|
|
defer.returnValue(stream_id)
|
|
|
|
|
2017-01-26 11:06:54 -05:00
|
|
|
def _add_device_change_txn(self, txn, user_id, device_ids, hosts, stream_id):
|
2017-01-27 10:23:48 -05:00
|
|
|
now = self._clock.time_msec()
|
|
|
|
|
2017-01-25 09:27:27 -05:00
|
|
|
txn.call_after(
|
|
|
|
self._device_list_stream_cache.entity_has_changed,
|
|
|
|
user_id, stream_id,
|
|
|
|
)
|
|
|
|
for host in hosts:
|
|
|
|
txn.call_after(
|
|
|
|
self._device_list_federation_stream_cache.entity_has_changed,
|
|
|
|
host, stream_id,
|
|
|
|
)
|
|
|
|
|
2017-03-01 05:21:30 -05:00
|
|
|
# Delete older entries in the table, as we really only care about
|
|
|
|
# when the latest change happened.
|
|
|
|
txn.executemany(
|
|
|
|
"""
|
|
|
|
DELETE FROM device_lists_stream
|
|
|
|
WHERE user_id = ? AND device_id = ? AND stream_id < ?
|
|
|
|
""",
|
|
|
|
[(user_id, device_id, stream_id) for device_id in device_ids]
|
|
|
|
)
|
|
|
|
|
2017-01-26 11:06:54 -05:00
|
|
|
self._simple_insert_many_txn(
|
2017-01-25 09:27:27 -05:00
|
|
|
txn,
|
|
|
|
table="device_lists_stream",
|
2017-01-26 11:06:54 -05:00
|
|
|
values=[
|
|
|
|
{
|
|
|
|
"stream_id": stream_id,
|
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": device_id,
|
|
|
|
}
|
|
|
|
for device_id in device_ids
|
|
|
|
]
|
2017-01-25 09:27:27 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
self._simple_insert_many_txn(
|
|
|
|
txn,
|
|
|
|
table="device_lists_outbound_pokes",
|
|
|
|
values=[
|
|
|
|
{
|
|
|
|
"destination": destination,
|
|
|
|
"stream_id": stream_id,
|
|
|
|
"user_id": user_id,
|
|
|
|
"device_id": device_id,
|
|
|
|
"sent": False,
|
2017-01-27 10:23:48 -05:00
|
|
|
"ts": now,
|
2017-01-25 09:27:27 -05:00
|
|
|
}
|
|
|
|
for destination in hosts
|
2017-01-26 11:06:54 -05:00
|
|
|
for device_id in device_ids
|
2017-01-25 09:27:27 -05:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
def get_device_stream_token(self):
|
|
|
|
return self._device_list_id_gen.get_current_token()
|
2017-06-07 06:16:56 -04:00
|
|
|
|
|
|
|
def _prune_old_outbound_device_pokes(self):
|
|
|
|
"""Delete old entries out of the device_lists_outbound_pokes to ensure
|
|
|
|
that we don't fill up due to dead servers. We keep one entry per
|
|
|
|
(destination, user_id) tuple to ensure that the prev_ids remain correct
|
|
|
|
if the server does come back.
|
|
|
|
"""
|
|
|
|
yesterday = self._clock.time_msec() - 24 * 60 * 60 * 1000
|
|
|
|
|
|
|
|
def _prune_txn(txn):
|
|
|
|
select_sql = """
|
|
|
|
SELECT destination, user_id, max(stream_id) as stream_id
|
|
|
|
FROM device_lists_outbound_pokes
|
|
|
|
GROUP BY destination, user_id
|
|
|
|
HAVING min(ts) < ? AND count(*) > 1
|
|
|
|
"""
|
|
|
|
|
|
|
|
txn.execute(select_sql, (yesterday,))
|
|
|
|
rows = txn.fetchall()
|
|
|
|
|
|
|
|
if not rows:
|
|
|
|
return
|
|
|
|
|
|
|
|
delete_sql = """
|
|
|
|
DELETE FROM device_lists_outbound_pokes
|
|
|
|
WHERE ts < ? AND destination = ? AND user_id = ? AND stream_id < ?
|
|
|
|
"""
|
|
|
|
|
|
|
|
txn.executemany(
|
|
|
|
delete_sql,
|
|
|
|
(
|
|
|
|
(yesterday, row[0], row[1], row[2])
|
|
|
|
for row in rows
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2017-06-07 06:20:47 -04:00
|
|
|
# Since we've deleted unsent deltas, we need to remove the entry
|
|
|
|
# of last successful sent so that the prev_ids are correctly set.
|
|
|
|
sql = """
|
|
|
|
DELETE FROM device_lists_outbound_last_success
|
|
|
|
WHERE destination = ? AND user_id = ?
|
|
|
|
"""
|
|
|
|
txn.executemany(sql, ((row[0], row[1]) for row in rows))
|
|
|
|
|
2017-06-07 06:16:56 -04:00
|
|
|
logger.info("Pruned %d device list outbound pokes", txn.rowcount)
|
|
|
|
|
2018-07-26 06:44:26 -04:00
|
|
|
return run_as_background_process(
|
2018-07-25 04:41:12 -04:00
|
|
|
"prune_old_outbound_device_pokes",
|
|
|
|
self.runInteraction,
|
|
|
|
"_prune_old_outbound_device_pokes",
|
|
|
|
_prune_txn,
|
2017-06-07 06:16:56 -04:00
|
|
|
)
|