2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-08-12 10:10:52 -04:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2014-08-12 22:14:34 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
from twisted.internet import defer
|
|
|
|
|
2014-08-26 13:57:46 -04:00
|
|
|
from synapse.streams.config import PaginationConfig
|
2016-03-08 06:45:50 -05:00
|
|
|
from .base import ClientV1RestServlet, client_path_patterns
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
2014-08-26 12:54:18 -04:00
|
|
|
# TODO: Needs unit testing
|
2015-01-23 09:09:51 -05:00
|
|
|
class InitialSyncRestServlet(ClientV1RestServlet):
|
2015-12-01 12:34:32 -05:00
|
|
|
PATTERNS = client_path_patterns("/initialSync$")
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2016-08-12 05:03:19 -04:00
|
|
|
def __init__(self, hs):
|
|
|
|
super(InitialSyncRestServlet, self).__init__(hs)
|
2016-09-21 06:46:28 -04:00
|
|
|
self.initial_sync_handler = hs.get_initial_sync_handler()
|
2016-08-12 05:03:19 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
@defer.inlineCallbacks
|
|
|
|
def on_GET(self, request):
|
2016-01-11 10:29:57 -05:00
|
|
|
requester = yield self.auth.get_user_by_req(request)
|
2015-01-08 09:27:04 -05:00
|
|
|
as_client_event = "raw" not in request.args
|
2014-08-12 10:10:52 -04:00
|
|
|
pagination_config = PaginationConfig.from_request(request)
|
2015-10-08 13:13:02 -04:00
|
|
|
include_archived = request.args.get("archived", None) == ["true"]
|
2016-09-21 06:46:28 -04:00
|
|
|
content = yield self.initial_sync_handler.snapshot_all_rooms(
|
2016-01-11 10:29:57 -05:00
|
|
|
user_id=requester.user.to_string(),
|
2014-08-12 10:10:52 -04:00
|
|
|
pagin_config=pagination_config,
|
2015-10-08 12:19:42 -04:00
|
|
|
as_client_event=as_client_event,
|
|
|
|
include_archived=include_archived,
|
2015-01-08 08:57:29 -05:00
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
defer.returnValue((200, content))
|
|
|
|
|
|
|
|
|
|
|
|
def register_servlets(hs, http_server):
|
2014-08-26 11:19:17 -04:00
|
|
|
InitialSyncRestServlet(hs).register(http_server)
|