summary refs log tree commit diff
path: root/synapse/rest/room.py
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <paul@matrix.org>2014-11-10 19:02:19 +0000
committerPaul "LeoNerd" Evans <paul@matrix.org>2014-11-10 19:02:19 +0000
commit269f80bf8ecc4a89c2bb71f0872893bb53a252ca (patch)
tree5fd5bae78cabeec6604ffa6b0c0d76ac81774b8a /synapse/rest/room.py
parentInitial (empty) test that room initialSync at least returns 200 OK (diff)
downloadsynapse-269f80bf8ecc4a89c2bb71f0872893bb53a252ca.tar.xz
Have room initialSync return the room's room_id
Diffstat (limited to 'synapse/rest/room.py')
-rw-r--r--synapse/rest/room.py27
1 files changed, 6 insertions, 21 deletions
diff --git a/synapse/rest/room.py b/synapse/rest/room.py
index 7724967061..b762de1cb3 100644
--- a/synapse/rest/room.py
+++ b/synapse/rest/room.py
@@ -353,27 +353,12 @@ class RoomInitialSyncRestServlet(RestServlet):
 
     @defer.inlineCallbacks
     def on_GET(self, request, room_id):
-        yield self.auth.get_user_by_req(request)
-        # TODO: Get all the initial sync data for this room and return in the
-        # same format as initial sync, that is:
-        # {
-        #   membership: join,
-        #   messages: [
-        #       chunk: [ msg events ],
-        #       start: s_tok,
-        #       end: e_tok
-        #   ],
-        #   room_id: foo,
-        #   state: [
-        #       { state event } , { state event }
-        #   ]
-        # }
-        # Probably worth keeping the keys room_id and membership for parity
-        # with /initialSync even though they must be joined to sync this and
-        # know the room ID, so clients can reuse the same code (room_id and
-        # membership are MANDATORY for /initialSync, so the code will expect
-        # it to be there)
-        defer.returnValue((200, {}))
+        user = yield self.auth.get_user_by_req(request)
+        events = yield self.handlers.message_handler.snapshot_room(
+            room_id=room_id,
+            user_id=user.to_string(),
+        )
+        defer.returnValue((200, events))
 
 
 class RoomTriggerBackfill(RestServlet):