2016-01-07 05:26:29 +01:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-08-12 16:10:52 +02: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-13 04:14:34 +02:00
|
|
|
|
2021-08-26 13:53:52 +02:00
|
|
|
from typing import TYPE_CHECKING, Dict, List, Tuple
|
2014-08-12 16:10:52 +02:00
|
|
|
|
2021-08-26 13:53:52 +02:00
|
|
|
from synapse.http.server import HttpServer
|
2019-06-03 13:28:59 +02:00
|
|
|
from synapse.http.servlet import RestServlet, parse_boolean
|
2021-08-26 13:53:52 +02:00
|
|
|
from synapse.http.site import SynapseRequest
|
2021-08-17 13:57:58 +02:00
|
|
|
from synapse.rest.client._base import client_patterns
|
2018-07-16 13:46:49 +02:00
|
|
|
from synapse.streams.config import PaginationConfig
|
2021-08-26 13:53:52 +02:00
|
|
|
from synapse.types import JsonDict
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
2018-07-09 08:09:20 +02:00
|
|
|
|
2014-08-12 16:10:52 +02:00
|
|
|
|
2014-08-26 18:54:18 +02:00
|
|
|
# TODO: Needs unit testing
|
2019-06-03 13:28:59 +02:00
|
|
|
class InitialSyncRestServlet(RestServlet):
|
|
|
|
PATTERNS = client_patterns("/initialSync$", v1=True)
|
2023-03-23 13:11:14 +01:00
|
|
|
CATEGORY = "Sync requests"
|
2014-08-12 16:10:52 +02:00
|
|
|
|
2021-08-26 13:53:52 +02:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 15:56:44 +02:00
|
|
|
super().__init__()
|
2016-09-21 12:46:28 +02:00
|
|
|
self.initial_sync_handler = hs.get_initial_sync_handler()
|
2019-06-03 13:28:59 +02:00
|
|
|
self.auth = hs.get_auth()
|
2022-02-23 12:04:02 +01:00
|
|
|
self.store = hs.get_datastores().main
|
2016-08-12 11:03:19 +02:00
|
|
|
|
2021-08-26 13:53:52 +02:00
|
|
|
async def on_GET(self, request: SynapseRequest) -> Tuple[int, JsonDict]:
|
2019-12-05 16:53:06 +01:00
|
|
|
requester = await self.auth.get_user_by_req(request)
|
2021-08-26 13:53:52 +02:00
|
|
|
args: Dict[bytes, List[bytes]] = request.args # type: ignore
|
|
|
|
as_client_event = b"raw" not in args
|
2022-10-14 14:30:05 +02:00
|
|
|
pagination_config = await PaginationConfig.from_request(
|
|
|
|
self.store, request, default_limit=10
|
|
|
|
)
|
2018-07-13 21:40:14 +02:00
|
|
|
include_archived = parse_boolean(request, "archived", default=False)
|
2019-12-05 16:53:06 +01:00
|
|
|
content = await self.initial_sync_handler.snapshot_all_rooms(
|
2016-01-11 16:29:57 +01:00
|
|
|
user_id=requester.user.to_string(),
|
2014-08-12 16:10:52 +02:00
|
|
|
pagin_config=pagination_config,
|
2015-10-08 18:19:42 +02:00
|
|
|
as_client_event=as_client_event,
|
|
|
|
include_archived=include_archived,
|
2015-01-08 14:57:29 +01:00
|
|
|
)
|
2014-08-12 16:10:52 +02:00
|
|
|
|
2019-08-30 17:28:26 +02:00
|
|
|
return 200, content
|
2014-08-12 16:10:52 +02:00
|
|
|
|
|
|
|
|
2021-08-26 13:53:52 +02:00
|
|
|
def register_servlets(hs: "HomeServer", http_server: HttpServer) -> None:
|
2014-08-26 17:19:17 +02:00
|
|
|
InitialSyncRestServlet(hs).register(http_server)
|