2018-03-13 12:32:37 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# 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.
|
2018-03-14 10:19:23 -04:00
|
|
|
import logging
|
2020-11-27 05:49:38 -05:00
|
|
|
from typing import TYPE_CHECKING, List, Optional, Tuple
|
|
|
|
|
|
|
|
from twisted.web.http import Request
|
2018-03-14 10:19:23 -04:00
|
|
|
|
2018-07-31 09:31:51 -04:00
|
|
|
from synapse.http.servlet import parse_json_object_from_request
|
|
|
|
from synapse.replication.http._base import ReplicationEndpoint
|
2020-07-09 05:40:19 -04:00
|
|
|
from synapse.types import JsonDict, Requester, UserID
|
2020-09-09 12:22:00 -04:00
|
|
|
from synapse.util.distributor import user_left_room
|
2018-03-13 12:32:37 -04:00
|
|
|
|
2020-05-22 11:11:35 -04:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2018-03-13 12:32:37 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2018-07-31 09:31:51 -04:00
|
|
|
class ReplicationRemoteJoinRestServlet(ReplicationEndpoint):
|
|
|
|
"""Does a remote join for the given user to the given room
|
2018-08-08 05:29:58 -04:00
|
|
|
|
|
|
|
Request format:
|
|
|
|
|
|
|
|
POST /_synapse/replication/remote_join/:room_id/:user_id
|
|
|
|
|
|
|
|
{
|
|
|
|
"requester": ...,
|
|
|
|
"remote_room_hosts": [...],
|
|
|
|
"content": { ... }
|
|
|
|
}
|
2018-03-13 12:32:37 -04:00
|
|
|
"""
|
|
|
|
|
2018-07-31 09:31:51 -04:00
|
|
|
NAME = "remote_join"
|
2019-06-20 05:32:02 -04:00
|
|
|
PATH_ARGS = ("room_id", "user_id")
|
2018-03-13 12:32:37 -04:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__(hs)
|
2018-03-13 12:32:37 -04:00
|
|
|
|
2020-10-09 07:24:34 -04:00
|
|
|
self.federation_handler = hs.get_federation_handler()
|
2018-03-13 12:32:37 -04:00
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.clock = hs.get_clock()
|
|
|
|
|
2018-07-31 09:31:51 -04:00
|
|
|
@staticmethod
|
2020-11-27 05:49:38 -05:00
|
|
|
async def _serialize_payload( # type: ignore
|
|
|
|
requester: Requester,
|
|
|
|
room_id: str,
|
|
|
|
user_id: str,
|
|
|
|
remote_room_hosts: List[str],
|
|
|
|
content: JsonDict,
|
|
|
|
) -> JsonDict:
|
2018-07-31 09:31:51 -04:00
|
|
|
"""
|
|
|
|
Args:
|
2020-11-27 05:49:38 -05:00
|
|
|
requester: The user making the request according to the access token
|
|
|
|
room_id: The ID of the room.
|
|
|
|
user_id: The ID of the user.
|
|
|
|
remote_room_hosts: Servers to try and join via
|
|
|
|
content: The event content to use for the join event
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A dict representing the payload of the request.
|
2018-07-31 09:31:51 -04:00
|
|
|
"""
|
|
|
|
return {
|
|
|
|
"requester": requester.serialize(),
|
|
|
|
"remote_room_hosts": remote_room_hosts,
|
|
|
|
"content": content,
|
|
|
|
}
|
|
|
|
|
2020-11-27 05:49:38 -05:00
|
|
|
async def _handle_request( # type: ignore
|
|
|
|
self, request: Request, room_id: str, user_id: str
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2018-03-13 12:32:37 -04:00
|
|
|
content = parse_json_object_from_request(request)
|
|
|
|
|
|
|
|
remote_room_hosts = content["remote_room_hosts"]
|
|
|
|
event_content = content["content"]
|
|
|
|
|
|
|
|
requester = Requester.deserialize(self.store, content["requester"])
|
|
|
|
|
2020-10-29 11:58:44 -04:00
|
|
|
request.requester = requester
|
2018-03-13 12:32:37 -04:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
logger.info("remote_join: %s into room: %s", user_id, room_id)
|
2018-03-13 12:32:37 -04:00
|
|
|
|
2020-05-22 09:21:54 -04:00
|
|
|
event_id, stream_id = await self.federation_handler.do_invite_join(
|
2019-06-20 05:32:02 -04:00
|
|
|
remote_room_hosts, room_id, user_id, event_content
|
2018-03-13 12:32:37 -04:00
|
|
|
)
|
|
|
|
|
2020-05-22 09:21:54 -04:00
|
|
|
return 200, {"event_id": event_id, "stream_id": stream_id}
|
2018-03-13 12:32:37 -04:00
|
|
|
|
|
|
|
|
2018-07-31 09:31:51 -04:00
|
|
|
class ReplicationRemoteRejectInviteRestServlet(ReplicationEndpoint):
|
2020-07-09 05:40:19 -04:00
|
|
|
"""Rejects an out-of-band invite we have received from a remote server
|
2018-08-08 05:29:58 -04:00
|
|
|
|
|
|
|
Request format:
|
|
|
|
|
2020-07-09 05:40:19 -04:00
|
|
|
POST /_synapse/replication/remote_reject_invite/:event_id
|
2018-08-08 05:29:58 -04:00
|
|
|
|
|
|
|
{
|
2020-07-09 05:40:19 -04:00
|
|
|
"txn_id": ...,
|
2018-08-08 05:29:58 -04:00
|
|
|
"requester": ...,
|
2019-11-28 06:31:56 -05:00
|
|
|
"content": { ... }
|
2018-08-08 05:29:58 -04:00
|
|
|
}
|
2018-07-31 09:31:51 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
NAME = "remote_reject_invite"
|
2020-07-09 05:40:19 -04:00
|
|
|
PATH_ARGS = ("invite_event_id",)
|
2018-03-13 12:32:37 -04:00
|
|
|
|
2020-07-09 05:40:19 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__(hs)
|
2018-03-13 12:32:37 -04:00
|
|
|
|
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.clock = hs.get_clock()
|
2020-05-22 11:11:35 -04:00
|
|
|
self.member_handler = hs.get_room_member_handler()
|
2018-03-13 12:32:37 -04:00
|
|
|
|
2018-07-31 09:31:51 -04:00
|
|
|
@staticmethod
|
2020-08-03 07:12:55 -04:00
|
|
|
async def _serialize_payload( # type: ignore
|
2020-07-09 05:40:19 -04:00
|
|
|
invite_event_id: str,
|
|
|
|
txn_id: Optional[str],
|
|
|
|
requester: Requester,
|
|
|
|
content: JsonDict,
|
2020-11-27 05:49:38 -05:00
|
|
|
) -> JsonDict:
|
2018-07-31 09:31:51 -04:00
|
|
|
"""
|
|
|
|
Args:
|
2020-11-27 05:49:38 -05:00
|
|
|
invite_event_id: The ID of the invite to be rejected.
|
|
|
|
txn_id: Optional transaction ID supplied by the client
|
|
|
|
requester: User making the rejection request, according to the access token
|
|
|
|
content: Additional content to include in the rejection event.
|
2020-07-09 05:40:19 -04:00
|
|
|
Normally an empty dict.
|
2020-11-27 05:49:38 -05:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
A dict representing the payload of the request.
|
2018-07-31 09:31:51 -04:00
|
|
|
"""
|
|
|
|
return {
|
2020-07-09 05:40:19 -04:00
|
|
|
"txn_id": txn_id,
|
2018-07-31 09:31:51 -04:00
|
|
|
"requester": requester.serialize(),
|
2019-11-28 06:31:56 -05:00
|
|
|
"content": content,
|
2018-07-31 09:31:51 -04:00
|
|
|
}
|
|
|
|
|
2020-11-27 05:49:38 -05:00
|
|
|
async def _handle_request( # type: ignore
|
|
|
|
self, request: Request, invite_event_id: str
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2018-03-13 12:32:37 -04:00
|
|
|
content = parse_json_object_from_request(request)
|
|
|
|
|
2020-07-09 05:40:19 -04:00
|
|
|
txn_id = content["txn_id"]
|
2019-11-28 06:31:56 -05:00
|
|
|
event_content = content["content"]
|
2018-03-13 12:32:37 -04:00
|
|
|
|
|
|
|
requester = Requester.deserialize(self.store, content["requester"])
|
|
|
|
|
2020-10-29 11:58:44 -04:00
|
|
|
request.requester = requester
|
2018-03-13 12:32:37 -04:00
|
|
|
|
2020-07-09 05:40:19 -04:00
|
|
|
# hopefully we're now on the master, so this won't recurse!
|
|
|
|
event_id, stream_id = await self.member_handler.remote_reject_invite(
|
|
|
|
invite_event_id, txn_id, requester, event_content,
|
|
|
|
)
|
2018-03-13 12:32:37 -04:00
|
|
|
|
2020-05-22 09:21:54 -04:00
|
|
|
return 200, {"event_id": event_id, "stream_id": stream_id}
|
2018-03-13 12:32:37 -04:00
|
|
|
|
|
|
|
|
2018-07-31 09:31:51 -04:00
|
|
|
class ReplicationUserJoinedLeftRoomRestServlet(ReplicationEndpoint):
|
|
|
|
"""Notifies that a user has joined or left the room
|
2018-08-08 05:29:58 -04:00
|
|
|
|
|
|
|
Request format:
|
|
|
|
|
|
|
|
POST /_synapse/replication/membership_change/:room_id/:user_id/:change
|
|
|
|
|
|
|
|
{}
|
2018-07-31 09:31:51 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
NAME = "membership_change"
|
|
|
|
PATH_ARGS = ("room_id", "user_id", "change")
|
|
|
|
CACHE = False # No point caching as should return instantly.
|
2018-03-13 12:32:37 -04:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__(hs)
|
2018-03-13 12:32:37 -04:00
|
|
|
|
2019-02-20 02:47:31 -05:00
|
|
|
self.registeration_handler = hs.get_registration_handler()
|
2018-03-13 12:32:37 -04:00
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.clock = hs.get_clock()
|
|
|
|
self.distributor = hs.get_distributor()
|
|
|
|
|
2018-07-31 09:31:51 -04:00
|
|
|
@staticmethod
|
2020-11-27 05:49:38 -05:00
|
|
|
async def _serialize_payload( # type: ignore
|
|
|
|
room_id: str, user_id: str, change: str
|
|
|
|
) -> JsonDict:
|
2018-07-31 09:31:51 -04:00
|
|
|
"""
|
|
|
|
Args:
|
2020-11-27 05:49:38 -05:00
|
|
|
room_id: The ID of the room.
|
|
|
|
user_id: The ID of the user.
|
|
|
|
change: "left"
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A dict representing the payload of the request.
|
2018-07-31 09:31:51 -04:00
|
|
|
"""
|
2020-09-09 12:22:00 -04:00
|
|
|
assert change == "left"
|
2018-03-13 12:32:37 -04:00
|
|
|
|
2018-07-31 09:31:51 -04:00
|
|
|
return {}
|
2018-03-13 12:32:37 -04:00
|
|
|
|
2020-11-27 05:49:38 -05:00
|
|
|
def _handle_request( # type: ignore
|
|
|
|
self, request: Request, room_id: str, user_id: str, change: str
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2018-03-13 12:32:37 -04:00
|
|
|
logger.info("user membership change: %s in %s", user_id, room_id)
|
|
|
|
|
|
|
|
user = UserID.from_string(user_id)
|
|
|
|
|
2020-09-09 12:22:00 -04:00
|
|
|
if change == "left":
|
2018-03-13 12:32:37 -04:00
|
|
|
user_left_room(self.distributor, user, room_id)
|
|
|
|
else:
|
|
|
|
raise Exception("Unrecognized change: %r", change)
|
|
|
|
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, {}
|
2018-03-13 12:32:37 -04:00
|
|
|
|
|
|
|
|
|
|
|
def register_servlets(hs, http_server):
|
|
|
|
ReplicationRemoteJoinRestServlet(hs).register(http_server)
|
|
|
|
ReplicationRemoteRejectInviteRestServlet(hs).register(http_server)
|
|
|
|
ReplicationUserJoinedLeftRoomRestServlet(hs).register(http_server)
|