2016-08-17 13:46:49 +02:00
|
|
|
# Copyright 2015, 2016 OpenMarket 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.
|
|
|
|
|
|
|
|
import logging
|
2021-08-23 14:14:17 +02:00
|
|
|
from typing import TYPE_CHECKING, Dict, List, Tuple
|
2016-08-17 13:46:49 +02:00
|
|
|
|
2016-08-25 19:34:47 +02:00
|
|
|
from synapse.api.constants import ThirdPartyEntityKind
|
2021-08-23 14:14:17 +02:00
|
|
|
from synapse.http.server import HttpServer
|
2016-08-17 13:46:49 +02:00
|
|
|
from synapse.http.servlet import RestServlet
|
2021-08-23 14:14:17 +02:00
|
|
|
from synapse.http.site import SynapseRequest
|
|
|
|
from synapse.types import JsonDict
|
2018-07-09 08:09:20 +02:00
|
|
|
|
2019-06-03 13:28:59 +02:00
|
|
|
from ._base import client_patterns
|
2016-08-17 13:46:49 +02:00
|
|
|
|
2021-08-23 14:14:17 +02:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2016-08-17 13:46:49 +02:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2016-08-24 13:33:01 +02:00
|
|
|
class ThirdPartyProtocolsServlet(RestServlet):
|
2019-06-03 13:28:59 +02:00
|
|
|
PATTERNS = client_patterns("/thirdparty/protocols")
|
2016-08-24 13:33:01 +02:00
|
|
|
|
2021-08-23 14:14:17 +02:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 15:56:44 +02:00
|
|
|
super().__init__()
|
2016-08-24 13:33:01 +02:00
|
|
|
|
|
|
|
self.auth = hs.get_auth()
|
|
|
|
self.appservice_handler = hs.get_application_service_handler()
|
|
|
|
|
2021-08-23 14:14:17 +02:00
|
|
|
async def on_GET(self, request: SynapseRequest) -> Tuple[int, JsonDict]:
|
2019-12-05 17:46:37 +01:00
|
|
|
await self.auth.get_user_by_req(request, allow_guest=True)
|
2017-03-31 14:54:26 +02:00
|
|
|
|
2019-12-05 17:46:37 +01:00
|
|
|
protocols = await self.appservice_handler.get_3pe_protocols()
|
2019-08-30 17:28:26 +02:00
|
|
|
return 200, protocols
|
2016-08-24 13:33:01 +02:00
|
|
|
|
|
|
|
|
2016-09-09 14:19:04 +02:00
|
|
|
class ThirdPartyProtocolServlet(RestServlet):
|
2019-06-03 13:28:59 +02:00
|
|
|
PATTERNS = client_patterns("/thirdparty/protocol/(?P<protocol>[^/]+)$")
|
2016-09-09 14:19:04 +02:00
|
|
|
|
2021-08-23 14:14:17 +02:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 15:56:44 +02:00
|
|
|
super().__init__()
|
2016-09-09 14:19:04 +02:00
|
|
|
|
|
|
|
self.auth = hs.get_auth()
|
|
|
|
self.appservice_handler = hs.get_application_service_handler()
|
|
|
|
|
2021-08-23 14:14:17 +02:00
|
|
|
async def on_GET(
|
|
|
|
self, request: SynapseRequest, protocol: str
|
|
|
|
) -> Tuple[int, JsonDict]:
|
2019-12-05 17:46:37 +01:00
|
|
|
await self.auth.get_user_by_req(request, allow_guest=True)
|
2017-03-31 14:54:26 +02:00
|
|
|
|
2019-12-05 17:46:37 +01:00
|
|
|
protocols = await self.appservice_handler.get_3pe_protocols(
|
2019-06-20 11:32:02 +02:00
|
|
|
only_protocol=protocol
|
2016-09-09 14:25:02 +02:00
|
|
|
)
|
2016-09-09 14:19:04 +02:00
|
|
|
if protocol in protocols:
|
2019-08-30 17:28:26 +02:00
|
|
|
return 200, protocols[protocol]
|
2016-09-09 14:19:04 +02:00
|
|
|
else:
|
2019-08-30 17:28:26 +02:00
|
|
|
return 404, {"error": "Unknown protocol"}
|
2016-09-09 14:19:04 +02:00
|
|
|
|
|
|
|
|
2016-08-17 13:46:49 +02:00
|
|
|
class ThirdPartyUserServlet(RestServlet):
|
2019-06-03 13:28:59 +02:00
|
|
|
PATTERNS = client_patterns("/thirdparty/user(/(?P<protocol>[^/]+))?$")
|
2016-08-17 13:46:49 +02:00
|
|
|
|
2021-08-23 14:14:17 +02:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 15:56:44 +02:00
|
|
|
super().__init__()
|
2016-08-17 13:46:49 +02:00
|
|
|
|
2016-08-18 17:19:23 +02:00
|
|
|
self.auth = hs.get_auth()
|
2016-08-17 14:15:06 +02:00
|
|
|
self.appservice_handler = hs.get_application_service_handler()
|
|
|
|
|
2021-08-23 14:14:17 +02:00
|
|
|
async def on_GET(
|
|
|
|
self, request: SynapseRequest, protocol: str
|
|
|
|
) -> Tuple[int, List[JsonDict]]:
|
2019-12-05 17:46:37 +01:00
|
|
|
await self.auth.get_user_by_req(request, allow_guest=True)
|
2017-03-31 14:54:26 +02:00
|
|
|
|
2021-08-23 14:14:17 +02:00
|
|
|
fields: Dict[bytes, List[bytes]] = request.args # type: ignore[assignment]
|
2018-09-12 12:41:31 +02:00
|
|
|
fields.pop(b"access_token", None)
|
2016-08-18 15:06:02 +02:00
|
|
|
|
2019-12-05 17:46:37 +01:00
|
|
|
results = await self.appservice_handler.query_3pe(
|
2016-08-18 18:19:55 +02:00
|
|
|
ThirdPartyEntityKind.USER, protocol, fields
|
|
|
|
)
|
2016-08-17 14:15:06 +02:00
|
|
|
|
2019-08-30 17:28:26 +02:00
|
|
|
return 200, results
|
2016-08-17 13:46:49 +02:00
|
|
|
|
|
|
|
|
2016-08-18 17:09:50 +02:00
|
|
|
class ThirdPartyLocationServlet(RestServlet):
|
2019-06-03 13:28:59 +02:00
|
|
|
PATTERNS = client_patterns("/thirdparty/location(/(?P<protocol>[^/]+))?$")
|
2016-08-18 17:09:50 +02:00
|
|
|
|
2021-08-23 14:14:17 +02:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 15:56:44 +02:00
|
|
|
super().__init__()
|
2016-08-18 17:09:50 +02:00
|
|
|
|
2016-08-18 17:19:23 +02:00
|
|
|
self.auth = hs.get_auth()
|
2016-08-18 17:09:50 +02:00
|
|
|
self.appservice_handler = hs.get_application_service_handler()
|
|
|
|
|
2021-08-23 14:14:17 +02:00
|
|
|
async def on_GET(
|
|
|
|
self, request: SynapseRequest, protocol: str
|
|
|
|
) -> Tuple[int, List[JsonDict]]:
|
2019-12-05 17:46:37 +01:00
|
|
|
await self.auth.get_user_by_req(request, allow_guest=True)
|
2017-03-31 14:54:26 +02:00
|
|
|
|
2021-08-23 14:14:17 +02:00
|
|
|
fields: Dict[bytes, List[bytes]] = request.args # type: ignore[assignment]
|
2018-09-12 12:41:31 +02:00
|
|
|
fields.pop(b"access_token", None)
|
2016-08-18 17:09:50 +02:00
|
|
|
|
2019-12-05 17:46:37 +01:00
|
|
|
results = await self.appservice_handler.query_3pe(
|
2016-08-18 18:19:55 +02:00
|
|
|
ThirdPartyEntityKind.LOCATION, protocol, fields
|
|
|
|
)
|
2016-08-18 17:09:50 +02:00
|
|
|
|
2019-08-30 17:28:26 +02:00
|
|
|
return 200, results
|
2016-08-18 17:09:50 +02:00
|
|
|
|
|
|
|
|
2021-08-23 14:14:17 +02:00
|
|
|
def register_servlets(hs: "HomeServer", http_server: HttpServer) -> None:
|
2016-08-24 13:33:01 +02:00
|
|
|
ThirdPartyProtocolsServlet(hs).register(http_server)
|
2016-09-09 14:19:04 +02:00
|
|
|
ThirdPartyProtocolServlet(hs).register(http_server)
|
2016-08-17 13:46:49 +02:00
|
|
|
ThirdPartyUserServlet(hs).register(http_server)
|
2016-08-18 17:09:50 +02:00
|
|
|
ThirdPartyLocationServlet(hs).register(http_server)
|