forked-synapse/synapse/storage/end_to_end_keys.py

166 lines
6.1 KiB
Python
Raw Normal View History

2015-07-06 17:46:47 +00:00
# -*- coding: utf-8 -*-
2016-01-07 04:26:29 +00:00
# Copyright 2015, 2016 OpenMarket Ltd
2015-07-06 17:46:47 +00: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 twisted.internet import defer
2016-07-27 11:18:03 +00:00
from ._base import SQLBaseStore
2015-07-06 17:46:47 +00:00
class EndToEndKeyStore(SQLBaseStore):
def set_e2e_device_keys(self, user_id, device_id, time_now, json_bytes):
return self._simple_upsert(
table="e2e_device_keys_json",
keyvalues={
"user_id": user_id,
"device_id": device_id,
},
values={
"ts_added_ms": time_now,
"key_json": json_bytes,
}
)
def get_e2e_device_keys(self, query_list, include_all_devices=False):
2015-07-06 17:46:47 +00:00
"""Fetch a list of device keys.
Args:
query_list(list): List of pairs of user_ids and device_ids.
Returns:
Dict mapping from user-id to dict mapping from device_id to
dict containing "key_json", "device_display_name".
2015-07-06 17:46:47 +00:00
"""
if not query_list:
return {}
return self.runInteraction(
"get_e2e_device_keys", self._get_e2e_device_keys_txn,
query_list, include_all_devices,
)
def _get_e2e_device_keys_txn(self, txn, query_list, include_all_devices):
query_clauses = []
query_params = []
for (user_id, device_id) in query_list:
query_clause = "k.user_id = ?"
query_params.append(user_id)
if device_id:
query_clause += " AND k.device_id = ?"
query_params.append(device_id)
query_clauses.append(query_clause)
sql = (
"SELECT user_id, device_id, "
2016-08-03 13:57:46 +00:00
" d.display_name AS device_display_name, "
" k.key_json"
" FROM e2e_device_keys_json k"
" %s JOIN devices d USING (user_id, device_id)"
2016-08-03 13:57:46 +00:00
" WHERE %s"
) % (
"FULL OUTER" if include_all_devices else "LEFT",
2016-08-03 13:57:46 +00:00
" OR ".join("(" + q + ")" for q in query_clauses)
)
txn.execute(sql, query_params)
rows = self.cursor_to_dict(txn)
result = {}
for row in rows:
result.setdefault(row["user_id"], {})[row["device_id"]] = row
return result
2015-07-06 17:46:47 +00:00
def add_e2e_one_time_keys(self, user_id, device_id, time_now, key_list):
2015-07-06 17:46:47 +00:00
def _add_e2e_one_time_keys(txn):
for (algorithm, key_id, json_bytes) in key_list:
self._simple_upsert_txn(
txn, table="e2e_one_time_keys_json",
keyvalues={
"user_id": user_id,
"device_id": device_id,
"algorithm": algorithm,
"key_id": key_id,
},
values={
"ts_added_ms": time_now,
"key_json": json_bytes,
}
)
return self.runInteraction(
"add_e2e_one_time_keys", _add_e2e_one_time_keys
)
def count_e2e_one_time_keys(self, user_id, device_id):
2015-07-06 17:46:47 +00:00
""" Count the number of one time keys the server has for a device
Returns:
Dict mapping from algorithm to number of keys for that algorithm.
"""
def _count_e2e_one_time_keys(txn):
sql = (
"SELECT algorithm, COUNT(key_id) FROM e2e_one_time_keys_json"
" WHERE user_id = ? AND device_id = ?"
2015-07-06 17:46:47 +00:00
" GROUP BY algorithm"
)
txn.execute(sql, (user_id, device_id))
2015-07-06 17:46:47 +00:00
result = {}
for algorithm, key_count in txn.fetchall():
result[algorithm] = key_count
return result
return self.runInteraction(
"count_e2e_one_time_keys", _count_e2e_one_time_keys
)
2015-07-14 12:08:33 +00:00
def claim_e2e_one_time_keys(self, query_list):
2015-07-06 17:46:47 +00:00
"""Take a list of one time keys out of the database"""
2015-07-14 12:08:33 +00:00
def _claim_e2e_one_time_keys(txn):
2015-07-06 17:46:47 +00:00
sql = (
"SELECT key_id, key_json FROM e2e_one_time_keys_json"
" WHERE user_id = ? AND device_id = ? AND algorithm = ?"
" LIMIT 1"
)
result = {}
delete = []
for user_id, device_id, algorithm in query_list:
user_result = result.setdefault(user_id, {})
device_result = user_result.setdefault(device_id, {})
txn.execute(sql, (user_id, device_id, algorithm))
2015-07-06 17:46:47 +00:00
for key_id, key_json in txn.fetchall():
device_result[algorithm + ":" + key_id] = key_json
delete.append((user_id, device_id, algorithm, key_id))
sql = (
"DELETE FROM e2e_one_time_keys_json"
" WHERE user_id = ? AND device_id = ? AND algorithm = ?"
" AND key_id = ?"
)
for user_id, device_id, algorithm, key_id in delete:
txn.execute(sql, (user_id, device_id, algorithm, key_id))
return result
return self.runInteraction(
2015-07-14 12:08:33 +00:00
"claim_e2e_one_time_keys", _claim_e2e_one_time_keys
2015-07-06 17:46:47 +00:00
)
2016-07-27 11:18:03 +00:00
@defer.inlineCallbacks
2016-07-27 11:18:03 +00:00
def delete_e2e_keys_by_device(self, user_id, device_id):
yield self._simple_delete(
table="e2e_device_keys_json",
keyvalues={"user_id": user_id, "device_id": device_id},
desc="delete_e2e_device_keys_by_device"
)
yield self._simple_delete(
table="e2e_one_time_keys_json",
keyvalues={"user_id": user_id, "device_id": device_id},
desc="delete_e2e_one_time_keys_by_device"
)