2016-08-25 12:35:37 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
2024-01-23 06:26:48 -05:00
|
|
|
# Copyright 2016 OpenMarket Ltd
|
2023-11-21 15:29:58 -05:00
|
|
|
# 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]
|
2016-08-25 12:35:37 -04:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
import logging
|
2023-03-07 11:05:22 -05:00
|
|
|
from typing import TYPE_CHECKING, Tuple
|
2016-08-25 12:35:37 -04:00
|
|
|
|
|
|
|
from synapse.http import servlet
|
2021-09-01 11:59:32 -04:00
|
|
|
from synapse.http.server import HttpServer
|
2020-12-29 12:47:45 -05:00
|
|
|
from synapse.http.servlet import assert_params_in_dict, parse_json_object_from_request
|
2021-09-01 11:59:32 -04:00
|
|
|
from synapse.http.site import SynapseRequest
|
2022-08-22 05:03:11 -04:00
|
|
|
from synapse.logging.opentracing import set_tag
|
2016-11-11 12:47:03 -05:00
|
|
|
from synapse.rest.client.transactions import HttpTransactionCache
|
2023-03-07 11:05:22 -05:00
|
|
|
from synapse.types import JsonDict, Requester
|
2016-09-06 13:16:20 -04:00
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
from ._base import client_patterns
|
2016-08-25 12:35:37 -04:00
|
|
|
|
2021-09-01 11:59:32 -04:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2016-08-25 12:35:37 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class SendToDeviceRestServlet(servlet.RestServlet):
|
2019-06-03 07:28:59 -04:00
|
|
|
PATTERNS = client_patterns(
|
2016-08-25 12:35:37 -04:00
|
|
|
"/sendToDevice/(?P<message_type>[^/]*)/(?P<txn_id>[^/]*)$"
|
|
|
|
)
|
2023-03-23 08:11:14 -04:00
|
|
|
CATEGORY = "The to_device stream"
|
2016-08-25 12:35:37 -04:00
|
|
|
|
2021-09-01 11:59:32 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2016-08-25 12:35:37 -04:00
|
|
|
self.hs = hs
|
|
|
|
self.auth = hs.get_auth()
|
2018-07-13 17:34:49 -04:00
|
|
|
self.txns = HttpTransactionCache(hs)
|
2016-09-06 13:16:20 -04:00
|
|
|
self.device_message_handler = hs.get_device_message_handler()
|
2016-08-25 12:35:37 -04:00
|
|
|
|
2023-03-07 11:05:22 -05:00
|
|
|
async def on_PUT(
|
2021-09-01 11:59:32 -04:00
|
|
|
self, request: SynapseRequest, message_type: str, txn_id: str
|
2023-03-07 11:05:22 -05:00
|
|
|
) -> Tuple[int, JsonDict]:
|
|
|
|
requester = await self.auth.get_user_by_req(request, allow_guest=True)
|
2019-09-03 05:21:30 -04:00
|
|
|
set_tag("txn_id", txn_id)
|
2023-03-07 11:05:22 -05:00
|
|
|
return await self.txns.fetch_or_execute_request(
|
|
|
|
request,
|
|
|
|
requester,
|
|
|
|
self._put,
|
|
|
|
request,
|
|
|
|
requester,
|
|
|
|
message_type,
|
2016-11-11 12:47:03 -05:00
|
|
|
)
|
2016-08-25 13:14:02 -04:00
|
|
|
|
2021-09-01 11:59:32 -04:00
|
|
|
async def _put(
|
2023-03-07 11:05:22 -05:00
|
|
|
self,
|
|
|
|
request: SynapseRequest,
|
|
|
|
requester: Requester,
|
|
|
|
message_type: str,
|
2021-09-01 11:59:32 -04:00
|
|
|
) -> Tuple[int, JsonDict]:
|
2016-08-25 12:35:37 -04:00
|
|
|
content = parse_json_object_from_request(request)
|
2020-12-29 12:47:45 -05:00
|
|
|
assert_params_in_dict(content, ("messages",))
|
2016-08-25 12:35:37 -04:00
|
|
|
|
2019-12-05 11:46:37 -05:00
|
|
|
await self.device_message_handler.send_device_message(
|
2021-02-19 13:20:34 -05:00
|
|
|
requester, message_type, content["messages"]
|
2016-08-31 05:38:58 -04:00
|
|
|
)
|
2016-08-25 12:35:37 -04:00
|
|
|
|
2021-09-01 11:59:32 -04:00
|
|
|
return 200, {}
|
2016-08-25 12:35:37 -04:00
|
|
|
|
|
|
|
|
2021-09-01 11:59:32 -04:00
|
|
|
def register_servlets(hs: "HomeServer", http_server: HttpServer) -> None:
|
2016-08-25 12:35:37 -04:00
|
|
|
SendToDeviceRestServlet(hs).register(http_server)
|