2021-06-09 20:39:51 +02:00
|
|
|
# Copyright 2018-2021 The Matrix.org Foundation C.I.C.
|
2018-03-14 12:41:45 +01: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.
|
|
|
|
|
|
|
|
import logging
|
2021-03-17 12:14:39 +01:00
|
|
|
from typing import TYPE_CHECKING, List, Optional, Tuple
|
2018-03-14 12:41:45 +01:00
|
|
|
|
2023-02-11 00:31:05 +01:00
|
|
|
from synapse.handlers.room_member import NoKnownServersError, RoomMemberHandler
|
2018-03-14 12:41:45 +01:00
|
|
|
from synapse.replication.http.membership import (
|
2018-07-31 15:31:51 +02:00
|
|
|
ReplicationRemoteJoinRestServlet as ReplRemoteJoin,
|
2021-06-09 20:39:51 +02:00
|
|
|
ReplicationRemoteKnockRestServlet as ReplRemoteKnock,
|
2018-07-31 15:31:51 +02:00
|
|
|
ReplicationRemoteRejectInviteRestServlet as ReplRejectInvite,
|
2021-06-09 20:39:51 +02:00
|
|
|
ReplicationRemoteRescindKnockRestServlet as ReplRescindKnock,
|
2018-07-31 15:31:51 +02:00
|
|
|
ReplicationUserJoinedLeftRoomRestServlet as ReplJoinedLeft,
|
2018-03-14 12:41:45 +01:00
|
|
|
)
|
2021-06-09 20:39:51 +02:00
|
|
|
from synapse.types import JsonDict, Requester, UserID
|
2018-03-14 12:41:45 +01:00
|
|
|
|
2021-03-17 12:14:39 +01:00
|
|
|
if TYPE_CHECKING:
|
2021-03-23 12:12:48 +01:00
|
|
|
from synapse.server import HomeServer
|
2021-03-17 12:14:39 +01:00
|
|
|
|
2018-03-14 12:41:45 +01:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class RoomMemberWorkerHandler(RoomMemberHandler):
|
2021-03-17 12:14:39 +01:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 15:56:44 +02:00
|
|
|
super().__init__(hs)
|
2018-07-31 15:31:51 +02:00
|
|
|
|
|
|
|
self._remote_join_client = ReplRemoteJoin.make_client(hs)
|
2021-06-09 20:39:51 +02:00
|
|
|
self._remote_knock_client = ReplRemoteKnock.make_client(hs)
|
2018-07-31 15:31:51 +02:00
|
|
|
self._remote_reject_client = ReplRejectInvite.make_client(hs)
|
2021-06-09 20:39:51 +02:00
|
|
|
self._remote_rescind_client = ReplRescindKnock.make_client(hs)
|
2018-07-31 15:31:51 +02:00
|
|
|
self._notify_change_client = ReplJoinedLeft.make_client(hs)
|
|
|
|
|
2020-05-15 21:05:25 +02:00
|
|
|
async def _remote_join(
|
|
|
|
self,
|
|
|
|
requester: Requester,
|
|
|
|
remote_room_hosts: List[str],
|
|
|
|
room_id: str,
|
|
|
|
user: UserID,
|
|
|
|
content: dict,
|
2020-05-22 15:21:54 +02:00
|
|
|
) -> Tuple[str, int]:
|
2021-02-16 23:32:34 +01:00
|
|
|
"""Implements RoomMemberHandler._remote_join"""
|
2018-03-14 12:41:45 +01:00
|
|
|
if len(remote_room_hosts) == 0:
|
2023-02-11 00:31:05 +01:00
|
|
|
raise NoKnownServersError()
|
2018-03-14 12:41:45 +01:00
|
|
|
|
2020-05-15 15:32:13 +02:00
|
|
|
ret = await self._remote_join_client(
|
2018-03-14 12:41:45 +01:00
|
|
|
requester=requester,
|
|
|
|
remote_room_hosts=remote_room_hosts,
|
|
|
|
room_id=room_id,
|
|
|
|
user_id=user.to_string(),
|
|
|
|
content=content,
|
|
|
|
)
|
|
|
|
|
2020-05-22 15:21:54 +02:00
|
|
|
return ret["event_id"], ret["stream_id"]
|
2018-03-14 12:41:45 +01:00
|
|
|
|
2020-07-09 11:40:19 +02:00
|
|
|
async def remote_reject_invite(
|
2020-05-15 21:05:25 +02:00
|
|
|
self,
|
2020-07-09 11:40:19 +02:00
|
|
|
invite_event_id: str,
|
|
|
|
txn_id: Optional[str],
|
2020-05-15 21:05:25 +02:00
|
|
|
requester: Requester,
|
|
|
|
content: dict,
|
2020-07-09 14:01:42 +02:00
|
|
|
) -> Tuple[str, int]:
|
2020-07-09 11:40:19 +02:00
|
|
|
"""
|
|
|
|
Rejects an out-of-band invite received from a remote user
|
|
|
|
|
|
|
|
Implements RoomMemberHandler.remote_reject_invite
|
2018-03-14 12:41:45 +01:00
|
|
|
"""
|
2020-05-22 15:21:54 +02:00
|
|
|
ret = await self._remote_reject_client(
|
2020-07-09 11:40:19 +02:00
|
|
|
invite_event_id=invite_event_id,
|
|
|
|
txn_id=txn_id,
|
2018-03-14 12:41:45 +01:00
|
|
|
requester=requester,
|
2019-11-28 12:31:56 +01:00
|
|
|
content=content,
|
2018-03-14 12:41:45 +01:00
|
|
|
)
|
2020-05-22 15:21:54 +02:00
|
|
|
return ret["event_id"], ret["stream_id"]
|
2018-03-14 12:41:45 +01:00
|
|
|
|
2021-06-09 20:39:51 +02:00
|
|
|
async def remote_rescind_knock(
|
|
|
|
self,
|
|
|
|
knock_event_id: str,
|
|
|
|
txn_id: Optional[str],
|
|
|
|
requester: Requester,
|
|
|
|
content: JsonDict,
|
|
|
|
) -> Tuple[str, int]:
|
|
|
|
"""
|
|
|
|
Rescinds a local knock made on a remote room
|
|
|
|
|
|
|
|
Args:
|
|
|
|
knock_event_id: the knock event
|
|
|
|
txn_id: optional transaction ID supplied by the client
|
|
|
|
requester: user making the request, according to the access token
|
|
|
|
content: additional content to include in the leave event.
|
|
|
|
Normally an empty dict.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A tuple containing (event_id, stream_id of the leave event)
|
|
|
|
"""
|
|
|
|
ret = await self._remote_rescind_client(
|
|
|
|
knock_event_id=knock_event_id,
|
|
|
|
txn_id=txn_id,
|
|
|
|
requester=requester,
|
|
|
|
content=content,
|
|
|
|
)
|
|
|
|
return ret["event_id"], ret["stream_id"]
|
|
|
|
|
|
|
|
async def remote_knock(
|
|
|
|
self,
|
2023-03-02 18:59:53 +01:00
|
|
|
requester: Requester,
|
2021-06-09 20:39:51 +02:00
|
|
|
remote_room_hosts: List[str],
|
|
|
|
room_id: str,
|
|
|
|
user: UserID,
|
|
|
|
content: dict,
|
|
|
|
) -> Tuple[str, int]:
|
|
|
|
"""Sends a knock to a room.
|
|
|
|
|
|
|
|
Implements RoomMemberHandler.remote_knock
|
|
|
|
"""
|
|
|
|
ret = await self._remote_knock_client(
|
2023-03-02 18:59:53 +01:00
|
|
|
requester=requester,
|
2021-06-09 20:39:51 +02:00
|
|
|
remote_room_hosts=remote_room_hosts,
|
|
|
|
room_id=room_id,
|
2023-03-02 18:59:53 +01:00
|
|
|
user_id=user.to_string(),
|
2021-06-09 20:39:51 +02:00
|
|
|
content=content,
|
|
|
|
)
|
|
|
|
return ret["event_id"], ret["stream_id"]
|
|
|
|
|
2020-05-15 21:05:25 +02:00
|
|
|
async def _user_left_room(self, target: UserID, room_id: str) -> None:
|
2021-02-16 23:32:34 +01:00
|
|
|
"""Implements RoomMemberHandler._user_left_room"""
|
2020-05-15 21:05:25 +02:00
|
|
|
await self._notify_change_client(
|
2019-06-20 11:32:02 +02:00
|
|
|
user_id=target.to_string(), room_id=room_id, change="left"
|
2018-03-14 12:41:45 +01:00
|
|
|
)
|