diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2019-10-11 15:19:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-11 15:19:06 -0400 |
commit | 06fc66c81e62b7fdba7bfde7a0efe535890d60a2 (patch) | |
tree | 2540e8bb2bf13eca05d738d0202f5aa5158f63d9 /synapse/storage | |
parent | Merge pull request #6189 from matrix-org/uhoreg/e2e_backup_optional_version (diff) | |
parent | expand on comment (diff) | |
download | synapse-06fc66c81e62b7fdba7bfde7a0efe535890d60a2.tar.xz |
Merge pull request #6193 from matrix-org/uhoreg/interpret_device_key_in_storage
make storage layer in charge of interpreting the device key data
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/end_to_end_keys.py | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/synapse/storage/end_to_end_keys.py b/synapse/storage/end_to_end_keys.py index 33e3a84933..872bc75490 100644 --- a/synapse/storage/end_to_end_keys.py +++ b/synapse/storage/end_to_end_keys.py @@ -40,7 +40,8 @@ class EndToEndKeyWorkerStore(SQLBaseStore): This option only takes effect if include_all_devices is true. Returns: Dict mapping from user-id to dict mapping from device_id to - dict containing "key_json", "device_display_name". + key data. The key data will be a dict in the same format as the + DeviceKeys type returned by POST /_matrix/client/r0/keys/query. """ set_tag("query_list", query_list) if not query_list: @@ -54,11 +55,20 @@ class EndToEndKeyWorkerStore(SQLBaseStore): include_deleted_devices, ) + # Build the result structure, un-jsonify the results, and add the + # "unsigned" section + rv = {} for user_id, device_keys in iteritems(results): + rv[user_id] = {} for device_id, device_info in iteritems(device_keys): - device_info["keys"] = db_to_json(device_info.pop("key_json")) - - return results + r = db_to_json(device_info.pop("key_json")) + r["unsigned"] = {} + display_name = device_info["device_display_name"] + if display_name is not None: + r["unsigned"]["device_display_name"] = display_name + rv[user_id][device_id] = r + + return rv @trace def _get_e2e_device_keys_txn( |