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
|
|
|
|
|
2018-03-13 12:32:37 -04:00
|
|
|
from twisted.internet import defer
|
|
|
|
|
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
|
2018-03-13 12:32:37 -04:00
|
|
|
from synapse.types import Requester, UserID
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.util.distributor import user_joined_room, user_left_room
|
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"
|
|
|
|
PATH_ARGS = ("room_id", "user_id",)
|
2018-03-13 12:32:37 -04:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
2018-07-31 09:31:51 -04:00
|
|
|
super(ReplicationRemoteJoinRestServlet, self).__init__(hs)
|
2018-03-13 12:32:37 -04:00
|
|
|
|
|
|
|
self.federation_handler = hs.get_handlers().federation_handler
|
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.clock = hs.get_clock()
|
|
|
|
|
2018-07-31 09:31:51 -04:00
|
|
|
@staticmethod
|
|
|
|
def _serialize_payload(requester, room_id, user_id, remote_room_hosts,
|
|
|
|
content):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
requester(Requester)
|
|
|
|
room_id (str)
|
|
|
|
user_id (str)
|
|
|
|
remote_room_hosts (list[str]): Servers to try and join via
|
|
|
|
content(dict): The event content to use for the join event
|
|
|
|
"""
|
|
|
|
return {
|
|
|
|
"requester": requester.serialize(),
|
|
|
|
"remote_room_hosts": remote_room_hosts,
|
|
|
|
"content": content,
|
|
|
|
}
|
|
|
|
|
2018-03-13 12:32:37 -04:00
|
|
|
@defer.inlineCallbacks
|
2018-07-31 09:31:51 -04:00
|
|
|
def _handle_request(self, request, room_id, user_id):
|
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"])
|
|
|
|
|
|
|
|
if requester.user:
|
|
|
|
request.authenticated_entity = requester.user.to_string()
|
|
|
|
|
|
|
|
logger.info(
|
|
|
|
"remote_join: %s into room: %s",
|
|
|
|
user_id, room_id,
|
|
|
|
)
|
|
|
|
|
|
|
|
yield self.federation_handler.do_invite_join(
|
|
|
|
remote_room_hosts,
|
|
|
|
room_id,
|
|
|
|
user_id,
|
|
|
|
event_content,
|
|
|
|
)
|
|
|
|
|
|
|
|
defer.returnValue((200, {}))
|
|
|
|
|
|
|
|
|
2018-07-31 09:31:51 -04:00
|
|
|
class ReplicationRemoteRejectInviteRestServlet(ReplicationEndpoint):
|
|
|
|
"""Rejects the invite for the user and room.
|
2018-08-08 05:29:58 -04:00
|
|
|
|
|
|
|
Request format:
|
|
|
|
|
|
|
|
POST /_synapse/replication/remote_reject_invite/:room_id/:user_id
|
|
|
|
|
|
|
|
{
|
|
|
|
"requester": ...,
|
|
|
|
"remote_room_hosts": [...],
|
|
|
|
}
|
2018-07-31 09:31:51 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
NAME = "remote_reject_invite"
|
|
|
|
PATH_ARGS = ("room_id", "user_id",)
|
2018-03-13 12:32:37 -04:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
2018-07-31 09:31:51 -04:00
|
|
|
super(ReplicationRemoteRejectInviteRestServlet, self).__init__(hs)
|
2018-03-13 12:32:37 -04:00
|
|
|
|
|
|
|
self.federation_handler = hs.get_handlers().federation_handler
|
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.clock = hs.get_clock()
|
|
|
|
|
2018-07-31 09:31:51 -04:00
|
|
|
@staticmethod
|
|
|
|
def _serialize_payload(requester, room_id, user_id, remote_room_hosts):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
requester(Requester)
|
|
|
|
room_id (str)
|
|
|
|
user_id (str)
|
|
|
|
remote_room_hosts (list[str]): Servers to try and reject via
|
|
|
|
"""
|
|
|
|
return {
|
|
|
|
"requester": requester.serialize(),
|
|
|
|
"remote_room_hosts": remote_room_hosts,
|
|
|
|
}
|
|
|
|
|
2018-03-13 12:32:37 -04:00
|
|
|
@defer.inlineCallbacks
|
2018-07-31 09:31:51 -04:00
|
|
|
def _handle_request(self, request, room_id, user_id):
|
2018-03-13 12:32:37 -04:00
|
|
|
content = parse_json_object_from_request(request)
|
|
|
|
|
|
|
|
remote_room_hosts = content["remote_room_hosts"]
|
|
|
|
|
|
|
|
requester = Requester.deserialize(self.store, content["requester"])
|
|
|
|
|
|
|
|
if requester.user:
|
|
|
|
request.authenticated_entity = requester.user.to_string()
|
|
|
|
|
|
|
|
logger.info(
|
|
|
|
"remote_reject_invite: %s out of room: %s",
|
|
|
|
user_id, room_id,
|
|
|
|
)
|
|
|
|
|
|
|
|
try:
|
|
|
|
event = yield self.federation_handler.do_remotely_reject_invite(
|
|
|
|
remote_room_hosts,
|
|
|
|
room_id,
|
|
|
|
user_id,
|
|
|
|
)
|
|
|
|
ret = event.get_pdu_json()
|
|
|
|
except Exception as e:
|
|
|
|
# if we were unable to reject the exception, just mark
|
|
|
|
# it as rejected on our end and plough ahead.
|
|
|
|
#
|
|
|
|
# The 'except' clause is very broad, but we need to
|
|
|
|
# capture everything from DNS failures upwards
|
|
|
|
#
|
|
|
|
logger.warn("Failed to reject invite: %s", e)
|
|
|
|
|
|
|
|
yield self.store.locally_reject_invite(
|
|
|
|
user_id, room_id
|
|
|
|
)
|
|
|
|
ret = {}
|
|
|
|
|
|
|
|
defer.returnValue((200, ret))
|
|
|
|
|
|
|
|
|
2018-07-31 09:31:51 -04:00
|
|
|
class ReplicationRegister3PIDGuestRestServlet(ReplicationEndpoint):
|
|
|
|
"""Gets/creates a guest account for given 3PID.
|
2018-08-08 05:29:58 -04:00
|
|
|
|
|
|
|
Request format:
|
|
|
|
|
|
|
|
POST /_synapse/replication/get_or_register_3pid_guest/
|
|
|
|
|
|
|
|
{
|
|
|
|
"requester": ...,
|
|
|
|
"medium": ...,
|
|
|
|
"address": ...,
|
|
|
|
"inviter_user_id": ...
|
|
|
|
}
|
2018-07-31 09:31:51 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
NAME = "get_or_register_3pid_guest"
|
|
|
|
PATH_ARGS = ()
|
2018-03-13 12:32:37 -04:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
2018-07-31 09:31:51 -04:00
|
|
|
super(ReplicationRegister3PIDGuestRestServlet, self).__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()
|
|
|
|
|
2018-07-31 09:31:51 -04:00
|
|
|
@staticmethod
|
|
|
|
def _serialize_payload(requester, medium, address, inviter_user_id):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
requester(Requester)
|
|
|
|
medium (str)
|
|
|
|
address (str)
|
|
|
|
inviter_user_id (str): The user ID who is trying to invite the
|
|
|
|
3PID
|
|
|
|
"""
|
|
|
|
return {
|
|
|
|
"requester": requester.serialize(),
|
|
|
|
"medium": medium,
|
|
|
|
"address": address,
|
|
|
|
"inviter_user_id": inviter_user_id,
|
|
|
|
}
|
|
|
|
|
2018-03-13 12:32:37 -04:00
|
|
|
@defer.inlineCallbacks
|
2018-07-31 09:31:51 -04:00
|
|
|
def _handle_request(self, request):
|
2018-03-13 12:32:37 -04:00
|
|
|
content = parse_json_object_from_request(request)
|
|
|
|
|
|
|
|
medium = content["medium"]
|
|
|
|
address = content["address"]
|
|
|
|
inviter_user_id = content["inviter_user_id"]
|
|
|
|
|
|
|
|
requester = Requester.deserialize(self.store, content["requester"])
|
|
|
|
|
|
|
|
if requester.user:
|
|
|
|
request.authenticated_entity = requester.user.to_string()
|
|
|
|
|
|
|
|
logger.info("get_or_register_3pid_guest: %r", content)
|
|
|
|
|
|
|
|
ret = yield self.registeration_handler.get_or_register_3pid_guest(
|
|
|
|
medium, address, inviter_user_id,
|
|
|
|
)
|
|
|
|
|
|
|
|
defer.returnValue((200, ret))
|
|
|
|
|
|
|
|
|
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):
|
2018-07-31 09:31:51 -04:00
|
|
|
super(ReplicationUserJoinedLeftRoomRestServlet, self).__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
|
|
|
|
def _serialize_payload(room_id, user_id, change):
|
|
|
|
"""
|
|
|
|
Args:
|
|
|
|
room_id (str)
|
|
|
|
user_id (str)
|
|
|
|
change (str): Either "joined" or "left"
|
|
|
|
"""
|
|
|
|
assert change in ("joined", "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
|
|
|
|
2018-07-31 09:31:51 -04:00
|
|
|
def _handle_request(self, request, room_id, user_id, change):
|
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)
|
|
|
|
|
2018-03-14 10:15:49 -04:00
|
|
|
if change == "joined":
|
2018-03-13 12:32:37 -04:00
|
|
|
user_joined_room(self.distributor, user, room_id)
|
|
|
|
elif change == "left":
|
|
|
|
user_left_room(self.distributor, user, room_id)
|
|
|
|
else:
|
|
|
|
raise Exception("Unrecognized change: %r", change)
|
|
|
|
|
|
|
|
return (200, {})
|
|
|
|
|
|
|
|
|
|
|
|
def register_servlets(hs, http_server):
|
|
|
|
ReplicationRemoteJoinRestServlet(hs).register(http_server)
|
|
|
|
ReplicationRemoteRejectInviteRestServlet(hs).register(http_server)
|
|
|
|
ReplicationRegister3PIDGuestRestServlet(hs).register(http_server)
|
|
|
|
ReplicationUserJoinedLeftRoomRestServlet(hs).register(http_server)
|