2018-02-05 18:22:16 +01:00
|
|
|
# Copyright 2018 New Vector Ltd
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2021-10-22 19:15:41 +02:00
|
|
|
from typing import TYPE_CHECKING
|
|
|
|
|
2018-02-05 18:22:16 +01:00
|
|
|
from synapse.http.server import JsonResource
|
2019-11-05 16:49:43 +01:00
|
|
|
from synapse.replication.http import (
|
2021-01-18 16:47:59 +01:00
|
|
|
account_data,
|
2019-11-05 16:49:43 +01:00
|
|
|
devices,
|
|
|
|
federation,
|
|
|
|
login,
|
|
|
|
membership,
|
2020-05-22 17:11:35 +02:00
|
|
|
presence,
|
2021-02-22 22:14:42 +01:00
|
|
|
push,
|
2019-11-05 16:49:43 +01:00
|
|
|
register,
|
|
|
|
send_event,
|
2022-09-28 12:11:48 +02:00
|
|
|
send_events,
|
2022-07-07 14:19:31 +02:00
|
|
|
state,
|
2020-03-25 15:54:01 +01:00
|
|
|
streams,
|
2019-11-05 16:49:43 +01:00
|
|
|
)
|
2018-02-05 18:22:16 +01:00
|
|
|
|
2021-10-22 19:15:41 +02:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2018-02-05 18:22:16 +01:00
|
|
|
REPLICATION_PREFIX = "/_synapse/replication"
|
|
|
|
|
|
|
|
|
|
|
|
class ReplicationRestResource(JsonResource):
|
2021-10-22 19:15:41 +02:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-07-03 20:02:19 +02:00
|
|
|
# We enable extracting jaeger contexts here as these are internal APIs.
|
|
|
|
super().__init__(hs, canonical_json=False, extract_context=True)
|
2018-02-05 18:22:16 +01:00
|
|
|
self.register_servlets(hs)
|
|
|
|
|
2022-02-08 13:44:39 +01:00
|
|
|
def register_servlets(self, hs: "HomeServer") -> None:
|
2018-02-05 18:22:16 +01:00
|
|
|
send_event.register_servlets(hs, self)
|
2022-09-28 12:11:48 +02:00
|
|
|
send_events.register_servlets(hs, self)
|
2018-07-25 17:32:05 +02:00
|
|
|
federation.register_servlets(hs, self)
|
2020-05-22 17:11:35 +02:00
|
|
|
presence.register_servlets(hs, self)
|
|
|
|
membership.register_servlets(hs, self)
|
2020-07-28 12:04:53 +02:00
|
|
|
streams.register_servlets(hs, self)
|
2021-01-18 16:47:59 +01:00
|
|
|
account_data.register_servlets(hs, self)
|
2021-02-22 22:14:42 +01:00
|
|
|
push.register_servlets(hs, self)
|
2022-07-07 14:19:31 +02:00
|
|
|
state.register_servlets(hs, self)
|
2020-05-18 13:24:48 +02:00
|
|
|
|
|
|
|
# The following can't currently be instantiated on workers.
|
|
|
|
if hs.config.worker.worker_app is None:
|
|
|
|
login.register_servlets(hs, self)
|
|
|
|
register.register_servlets(hs, self)
|
|
|
|
devices.register_servlets(hs, self)
|