diff options
author | Richard van der Hoff <richard@matrix.org> | 2016-08-03 07:46:57 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2016-08-03 15:42:08 +0100 |
commit | 68264d7404214d30d32310991c89ea4a234c319a (patch) | |
tree | b7bb5aaac832e45fc19bde0204039c80bb82bbe0 /synapse/handlers | |
parent | keys/query: return all users which were asked for (diff) | |
download | synapse-68264d7404214d30d32310991c89ea4a234c319a.tar.xz |
Include device name in /keys/query response
Add an 'unsigned' section which includes the device display name.
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/e2e_keys.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/synapse/handlers/e2e_keys.py b/synapse/handlers/e2e_keys.py index 950fc927b1..bb69089b91 100644 --- a/synapse/handlers/e2e_keys.py +++ b/synapse/handlers/e2e_keys.py @@ -117,10 +117,15 @@ class E2eKeysHandler(object): results = yield self.store.get_e2e_device_keys(local_query) - # un-jsonify the results + # Build the result structure, un-jsonify the results, and add the + # "unsigned" section for user_id, device_keys in results.items(): - for device_id, json_bytes in device_keys.items(): - result_dict[user_id][device_id] = json.loads(json_bytes) + for device_id, device_info in device_keys.items(): + r = json.loads(device_info["key_json"]) + r["unsigned"] = { + "device_display_name": device_info["device_display_name"], + } + result_dict[user_id][device_id] = r defer.returnValue(result_dict) |