Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Refactor _get_e2e_device_keys_for_federation_query_txn (#8225)
Browse files Browse the repository at this point in the history
We can use the existing `_get_e2e_device_keys_and_signatures_txn` instead of
creating our own txn function
  • Loading branch information
richvdh authored Sep 2, 2020
1 parent 82c1ee1 commit 0d4f614
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
1 change: 1 addition & 0 deletions changelog.d/8225.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Refactor queries for device keys and cross-signatures.
17 changes: 6 additions & 11 deletions synapse/storage/databases/main/end_to_end_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

from synapse.logging.opentracing import log_kv, set_tag, trace
from synapse.storage._base import SQLBaseStore, db_to_json
from synapse.storage.database import LoggingTransaction, make_in_list_sql_clause
from synapse.storage.database import make_in_list_sql_clause
from synapse.types import JsonDict
from synapse.util import json_encoder
from synapse.util.caches.descriptors import cached, cachedList
Expand Down Expand Up @@ -58,18 +58,13 @@ async def get_e2e_device_keys_for_federation_query(
Returns:
(stream_id, devices)
"""
return await self.db_pool.runInteraction(
"get_e2e_device_keys_for_federation_query",
self._get_e2e_device_keys_for_federation_query_txn,
user_id,
)

def _get_e2e_device_keys_for_federation_query_txn(
self, txn: LoggingTransaction, user_id: str
) -> Tuple[int, List[JsonDict]]:
now_stream_id = self.get_device_stream_token()

devices = self._get_e2e_device_keys_and_signatures_txn(txn, [(user_id, None)])
devices = await self.db_pool.runInteraction(
"get_e2e_device_keys_and_signatures_txn",
self._get_e2e_device_keys_and_signatures_txn,
[(user_id, None)],
)

if devices:
user_devices = devices[user_id]
Expand Down

0 comments on commit 0d4f614

Please sign in to comment.