summary refs log tree commit diff
path: root/synapse/handlers/e2e_keys.py
diff options
context:
space:
mode:
authorRichard van der Hoff <github@rvanderhoff.org.uk>2016-08-03 17:11:27 +0100
committerGitHub <noreply@github.com>2016-08-03 17:11:27 +0100
commit05e335404735e6e36897cd53d6c02be9530310d7 (patch)
tree5d26a5e3d6033a1304c3d44dcf315dabd29059d0 /synapse/handlers/e2e_keys.py
parentMerge pull request #977 from matrix-org/rav/return_all_devices (diff)
parentPEP8 (diff)
downloadsynapse-05e335404735e6e36897cd53d6c02be9530310d7.tar.xz
Merge pull request #978 from matrix-org/rav/device_name_in_e2e_devices
Include device name in /keys/query response
Diffstat (limited to 'synapse/handlers/e2e_keys.py')
-rw-r--r--synapse/handlers/e2e_keys.py11
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)