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
|
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
from synapse.http.servlet import RestServlet, parse_boolean
|
|
|
|
from synapse.rest.client.v2_alpha._base import client_patterns
|
2018-07-16 07:46:49 -04:00
|
|
|
from synapse.streams.config import PaginationConfig
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-26 12:54:18 -04:00
|
|
|
# TODO: Needs unit testing
|
2019-06-03 07:28:59 -04:00
|
|
|
class InitialSyncRestServlet(RestServlet):
|
|
|
|
PATTERNS = client_patterns("/initialSync$", v1=True)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2016-08-12 05:03:19 -04:00
|
|
|
def __init__(self, hs):
|
2019-06-03 07:28:59 -04:00
|
|
|
super(InitialSyncRestServlet, self).__init__()
|
2016-09-21 06:46:28 -04:00
|
|
|
self.initial_sync_handler = hs.get_initial_sync_handler()
|
2019-06-03 07:28:59 -04:00
|
|
|
self.auth = hs.get_auth()
|
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)
|
2018-09-12 06:41:31 -04:00
|
|
|
as_client_event = b"raw" not in request.args
|
2014-08-12 10:10:52 -04:00
|
|
|
pagination_config = PaginationConfig.from_request(request)
|
2018-07-13 15:40:14 -04:00
|
|
|
include_archived = parse_boolean(request, "archived", default=False)
|
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
|
|
|
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, content
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
def register_servlets(hs, http_server):
|
2014-08-26 11:19:17 -04:00
|
|
|
InitialSyncRestServlet(hs).register(http_server)
|