2021-01-18 10:47:59 -05:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
|
|
|
# Copyright (C) 2023 New Vector, Ltd
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# See the GNU Affero General Public License for more details:
|
|
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
|
|
#
|
|
|
|
# Originally licensed under the Apache License, Version 2.0:
|
|
|
|
# <http://www.apache.org/licenses/LICENSE-2.0>.
|
|
|
|
#
|
|
|
|
# [This file includes modifications made by New Vector Limited]
|
2021-01-18 10:47:59 -05:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
import logging
|
2022-02-08 07:44:39 -05:00
|
|
|
from typing import TYPE_CHECKING, Tuple
|
2021-01-18 10:47:59 -05:00
|
|
|
|
2022-02-08 07:44:39 -05:00
|
|
|
from twisted.web.server import Request
|
|
|
|
|
|
|
|
from synapse.http.server import HttpServer
|
2021-01-18 10:47:59 -05:00
|
|
|
from synapse.replication.http._base import ReplicationEndpoint
|
2022-02-08 07:44:39 -05:00
|
|
|
from synapse.types import JsonDict
|
2021-01-18 10:47:59 -05:00
|
|
|
|
2021-10-22 13:15:41 -04:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2021-01-18 10:47:59 -05:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2022-12-31 22:40:46 -05:00
|
|
|
class ReplicationAddUserAccountDataRestServlet(ReplicationEndpoint):
|
2021-01-18 10:47:59 -05:00
|
|
|
"""Add user account data on the appropriate account data worker.
|
|
|
|
|
|
|
|
Request format:
|
|
|
|
|
|
|
|
POST /_synapse/replication/add_user_account_data/:user_id/:type
|
|
|
|
|
|
|
|
{
|
|
|
|
"content": { ... },
|
|
|
|
}
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
NAME = "add_user_account_data"
|
|
|
|
PATH_ARGS = ("user_id", "account_data_type")
|
|
|
|
CACHE = False
|
|
|
|
|
2021-10-22 13:15:41 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2021-01-18 10:47:59 -05:00
|
|
|
super().__init__(hs)
|
|
|
|
|
|
|
|
self.handler = hs.get_account_data_handler()
|
|
|
|
|
|
|
|
@staticmethod
|
2022-02-08 07:44:39 -05:00
|
|
|
async def _serialize_payload( # type: ignore[override]
|
|
|
|
user_id: str, account_data_type: str, content: JsonDict
|
|
|
|
) -> JsonDict:
|
2021-01-18 10:47:59 -05:00
|
|
|
payload = {
|
|
|
|
"content": content,
|
|
|
|
}
|
|
|
|
|
|
|
|
return payload
|
|
|
|
|
2022-02-08 07:44:39 -05:00
|
|
|
async def _handle_request( # type: ignore[override]
|
2023-01-18 14:35:29 -05:00
|
|
|
self, request: Request, content: JsonDict, user_id: str, account_data_type: str
|
2022-02-08 07:44:39 -05:00
|
|
|
) -> Tuple[int, JsonDict]:
|
2021-01-18 10:47:59 -05:00
|
|
|
max_stream_id = await self.handler.add_account_data_for_user(
|
|
|
|
user_id, account_data_type, content["content"]
|
|
|
|
)
|
|
|
|
|
|
|
|
return 200, {"max_stream_id": max_stream_id}
|
|
|
|
|
|
|
|
|
2022-12-31 22:40:46 -05:00
|
|
|
class ReplicationRemoveUserAccountDataRestServlet(ReplicationEndpoint):
|
|
|
|
"""Remove user account data on the appropriate account data worker.
|
|
|
|
|
|
|
|
Request format:
|
|
|
|
|
|
|
|
POST /_synapse/replication/remove_user_account_data/:user_id/:type
|
|
|
|
|
|
|
|
{
|
|
|
|
"content": { ... },
|
|
|
|
}
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
NAME = "remove_user_account_data"
|
|
|
|
PATH_ARGS = ("user_id", "account_data_type")
|
|
|
|
CACHE = False
|
|
|
|
|
|
|
|
def __init__(self, hs: "HomeServer"):
|
|
|
|
super().__init__(hs)
|
|
|
|
|
|
|
|
self.handler = hs.get_account_data_handler()
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
async def _serialize_payload( # type: ignore[override]
|
|
|
|
user_id: str, account_data_type: str
|
|
|
|
) -> JsonDict:
|
|
|
|
return {}
|
|
|
|
|
|
|
|
async def _handle_request( # type: ignore[override]
|
2023-01-18 14:35:29 -05:00
|
|
|
self, request: Request, content: JsonDict, user_id: str, account_data_type: str
|
2022-12-31 22:40:46 -05:00
|
|
|
) -> Tuple[int, JsonDict]:
|
|
|
|
max_stream_id = await self.handler.remove_account_data_for_user(
|
|
|
|
user_id, account_data_type
|
|
|
|
)
|
|
|
|
|
|
|
|
return 200, {"max_stream_id": max_stream_id}
|
|
|
|
|
|
|
|
|
|
|
|
class ReplicationAddRoomAccountDataRestServlet(ReplicationEndpoint):
|
2021-01-18 10:47:59 -05:00
|
|
|
"""Add room account data on the appropriate account data worker.
|
|
|
|
|
|
|
|
Request format:
|
|
|
|
|
|
|
|
POST /_synapse/replication/add_room_account_data/:user_id/:room_id/:account_data_type
|
|
|
|
|
|
|
|
{
|
|
|
|
"content": { ... },
|
|
|
|
}
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
NAME = "add_room_account_data"
|
|
|
|
PATH_ARGS = ("user_id", "room_id", "account_data_type")
|
|
|
|
CACHE = False
|
|
|
|
|
2021-10-22 13:15:41 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2021-01-18 10:47:59 -05:00
|
|
|
super().__init__(hs)
|
|
|
|
|
|
|
|
self.handler = hs.get_account_data_handler()
|
|
|
|
|
|
|
|
@staticmethod
|
2022-02-08 07:44:39 -05:00
|
|
|
async def _serialize_payload( # type: ignore[override]
|
|
|
|
user_id: str, room_id: str, account_data_type: str, content: JsonDict
|
|
|
|
) -> JsonDict:
|
2021-01-18 10:47:59 -05:00
|
|
|
payload = {
|
|
|
|
"content": content,
|
|
|
|
}
|
|
|
|
|
|
|
|
return payload
|
|
|
|
|
2022-02-08 07:44:39 -05:00
|
|
|
async def _handle_request( # type: ignore[override]
|
2023-01-18 14:35:29 -05:00
|
|
|
self,
|
|
|
|
request: Request,
|
|
|
|
content: JsonDict,
|
|
|
|
user_id: str,
|
|
|
|
room_id: str,
|
|
|
|
account_data_type: str,
|
2022-02-08 07:44:39 -05:00
|
|
|
) -> Tuple[int, JsonDict]:
|
2021-01-18 10:47:59 -05:00
|
|
|
max_stream_id = await self.handler.add_account_data_to_room(
|
|
|
|
user_id, room_id, account_data_type, content["content"]
|
|
|
|
)
|
|
|
|
|
|
|
|
return 200, {"max_stream_id": max_stream_id}
|
|
|
|
|
|
|
|
|
2022-12-31 22:40:46 -05:00
|
|
|
class ReplicationRemoveRoomAccountDataRestServlet(ReplicationEndpoint):
|
|
|
|
"""Remove room account data on the appropriate account data worker.
|
|
|
|
|
|
|
|
Request format:
|
|
|
|
|
|
|
|
POST /_synapse/replication/remove_room_account_data/:user_id/:room_id/:account_data_type
|
|
|
|
|
|
|
|
{
|
|
|
|
"content": { ... },
|
|
|
|
}
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
NAME = "remove_room_account_data"
|
|
|
|
PATH_ARGS = ("user_id", "room_id", "account_data_type")
|
|
|
|
CACHE = False
|
|
|
|
|
|
|
|
def __init__(self, hs: "HomeServer"):
|
|
|
|
super().__init__(hs)
|
|
|
|
|
|
|
|
self.handler = hs.get_account_data_handler()
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
async def _serialize_payload( # type: ignore[override]
|
|
|
|
user_id: str, room_id: str, account_data_type: str, content: JsonDict
|
|
|
|
) -> JsonDict:
|
|
|
|
return {}
|
|
|
|
|
|
|
|
async def _handle_request( # type: ignore[override]
|
2023-01-18 14:35:29 -05:00
|
|
|
self,
|
|
|
|
request: Request,
|
|
|
|
content: JsonDict,
|
|
|
|
user_id: str,
|
|
|
|
room_id: str,
|
|
|
|
account_data_type: str,
|
2022-12-31 22:40:46 -05:00
|
|
|
) -> Tuple[int, JsonDict]:
|
|
|
|
max_stream_id = await self.handler.remove_account_data_for_room(
|
|
|
|
user_id, room_id, account_data_type
|
|
|
|
)
|
|
|
|
|
|
|
|
return 200, {"max_stream_id": max_stream_id}
|
|
|
|
|
|
|
|
|
2021-01-18 10:47:59 -05:00
|
|
|
class ReplicationAddTagRestServlet(ReplicationEndpoint):
|
|
|
|
"""Add tag on the appropriate account data worker.
|
|
|
|
|
|
|
|
Request format:
|
|
|
|
|
|
|
|
POST /_synapse/replication/add_tag/:user_id/:room_id/:tag
|
|
|
|
|
|
|
|
{
|
|
|
|
"content": { ... },
|
|
|
|
}
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
NAME = "add_tag"
|
|
|
|
PATH_ARGS = ("user_id", "room_id", "tag")
|
|
|
|
CACHE = False
|
|
|
|
|
2021-10-22 13:15:41 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2021-01-18 10:47:59 -05:00
|
|
|
super().__init__(hs)
|
|
|
|
|
|
|
|
self.handler = hs.get_account_data_handler()
|
|
|
|
|
|
|
|
@staticmethod
|
2022-02-08 07:44:39 -05:00
|
|
|
async def _serialize_payload( # type: ignore[override]
|
|
|
|
user_id: str, room_id: str, tag: str, content: JsonDict
|
|
|
|
) -> JsonDict:
|
2021-01-18 10:47:59 -05:00
|
|
|
payload = {
|
|
|
|
"content": content,
|
|
|
|
}
|
|
|
|
|
|
|
|
return payload
|
|
|
|
|
2022-02-08 07:44:39 -05:00
|
|
|
async def _handle_request( # type: ignore[override]
|
2023-01-18 14:35:29 -05:00
|
|
|
self, request: Request, content: JsonDict, user_id: str, room_id: str, tag: str
|
2022-02-08 07:44:39 -05:00
|
|
|
) -> Tuple[int, JsonDict]:
|
2021-01-18 10:47:59 -05:00
|
|
|
max_stream_id = await self.handler.add_tag_to_room(
|
|
|
|
user_id, room_id, tag, content["content"]
|
|
|
|
)
|
|
|
|
|
|
|
|
return 200, {"max_stream_id": max_stream_id}
|
|
|
|
|
|
|
|
|
|
|
|
class ReplicationRemoveTagRestServlet(ReplicationEndpoint):
|
|
|
|
"""Remove tag on the appropriate account data worker.
|
|
|
|
|
|
|
|
Request format:
|
|
|
|
|
|
|
|
POST /_synapse/replication/remove_tag/:user_id/:room_id/:tag
|
|
|
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
NAME = "remove_tag"
|
|
|
|
PATH_ARGS = (
|
|
|
|
"user_id",
|
|
|
|
"room_id",
|
|
|
|
"tag",
|
|
|
|
)
|
|
|
|
CACHE = False
|
|
|
|
|
2021-10-22 13:15:41 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2021-01-18 10:47:59 -05:00
|
|
|
super().__init__(hs)
|
|
|
|
|
|
|
|
self.handler = hs.get_account_data_handler()
|
|
|
|
|
|
|
|
@staticmethod
|
2022-02-08 07:44:39 -05:00
|
|
|
async def _serialize_payload(user_id: str, room_id: str, tag: str) -> JsonDict: # type: ignore[override]
|
2021-01-18 10:47:59 -05:00
|
|
|
return {}
|
|
|
|
|
2022-02-08 07:44:39 -05:00
|
|
|
async def _handle_request( # type: ignore[override]
|
2023-01-18 14:35:29 -05:00
|
|
|
self, request: Request, content: JsonDict, user_id: str, room_id: str, tag: str
|
2022-02-08 07:44:39 -05:00
|
|
|
) -> Tuple[int, JsonDict]:
|
2021-01-18 10:47:59 -05:00
|
|
|
max_stream_id = await self.handler.remove_tag_from_room(
|
|
|
|
user_id,
|
|
|
|
room_id,
|
|
|
|
tag,
|
|
|
|
)
|
|
|
|
|
|
|
|
return 200, {"max_stream_id": max_stream_id}
|
|
|
|
|
|
|
|
|
2022-02-08 07:44:39 -05:00
|
|
|
def register_servlets(hs: "HomeServer", http_server: HttpServer) -> None:
|
2022-12-31 22:40:46 -05:00
|
|
|
ReplicationAddUserAccountDataRestServlet(hs).register(http_server)
|
|
|
|
ReplicationAddRoomAccountDataRestServlet(hs).register(http_server)
|
2021-01-18 10:47:59 -05:00
|
|
|
ReplicationAddTagRestServlet(hs).register(http_server)
|
|
|
|
ReplicationRemoveTagRestServlet(hs).register(http_server)
|
2022-12-31 22:40:46 -05:00
|
|
|
|
|
|
|
if hs.config.experimental.msc3391_enabled:
|
|
|
|
ReplicationRemoveUserAccountDataRestServlet(hs).register(http_server)
|
|
|
|
ReplicationRemoveRoomAccountDataRestServlet(hs).register(http_server)
|