2019-01-25 06:16:29 -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]
|
2019-01-25 06:16:29 -05:00
|
|
|
#
|
|
|
|
#
|
2019-01-29 10:58:37 -05:00
|
|
|
import logging
|
2022-02-11 04:32:11 -05:00
|
|
|
from http import HTTPStatus
|
2021-03-16 11:44:25 -04:00
|
|
|
from typing import TYPE_CHECKING, Tuple
|
2019-01-29 10:58:37 -05:00
|
|
|
|
2021-07-20 07:59:23 -04:00
|
|
|
from synapse.api.room_versions import KNOWN_ROOM_VERSIONS, MSC3244_CAPABILITIES
|
2021-08-23 08:14:17 -04:00
|
|
|
from synapse.http.server import HttpServer
|
2019-01-25 06:16:29 -05:00
|
|
|
from synapse.http.servlet import RestServlet
|
2021-03-16 11:44:25 -04:00
|
|
|
from synapse.http.site import SynapseRequest
|
|
|
|
from synapse.types import JsonDict
|
2019-01-25 06:16:29 -05:00
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
from ._base import client_patterns
|
2019-01-25 06:16:29 -05:00
|
|
|
|
2021-03-16 11:44:25 -04:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2019-01-29 10:58:37 -05:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
2019-01-25 06:16:29 -05:00
|
|
|
|
|
|
|
class CapabilitiesRestServlet(RestServlet):
|
2019-01-29 10:58:37 -05:00
|
|
|
"""End point to expose the capabilities of the server."""
|
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
PATTERNS = client_patterns("/capabilities$")
|
2023-04-14 12:26:07 -04:00
|
|
|
CATEGORY = "Client API requests"
|
2019-01-25 06:16:29 -05:00
|
|
|
|
2021-03-16 11:44:25 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2019-01-25 06:16:29 -05:00
|
|
|
self.hs = hs
|
2019-05-23 10:00:20 -04:00
|
|
|
self.config = hs.config
|
2019-01-29 06:37:56 -05:00
|
|
|
self.auth = hs.get_auth()
|
2021-03-16 11:44:25 -04:00
|
|
|
self.auth_handler = hs.get_auth_handler()
|
2019-01-25 06:16:29 -05:00
|
|
|
|
2021-03-16 11:44:25 -04:00
|
|
|
async def on_GET(self, request: SynapseRequest) -> Tuple[int, JsonDict]:
|
|
|
|
await self.auth.get_user_by_req(request, allow_guest=True)
|
|
|
|
change_password = self.auth_handler.can_change_password()
|
2019-01-29 06:37:56 -05:00
|
|
|
|
2021-09-29 06:44:15 -04:00
|
|
|
response: JsonDict = {
|
2019-01-30 05:23:26 -05:00
|
|
|
"capabilities": {
|
|
|
|
"m.room_versions": {
|
2021-09-29 06:44:15 -04:00
|
|
|
"default": self.config.server.default_room_version.identifier,
|
2019-01-30 05:23:26 -05:00
|
|
|
"available": {
|
2019-04-01 05:24:38 -04:00
|
|
|
v.identifier: v.disposition
|
|
|
|
for v in KNOWN_ROOM_VERSIONS.values()
|
2019-01-29 13:04:56 -05:00
|
|
|
},
|
2019-01-30 05:23:26 -05:00
|
|
|
},
|
|
|
|
"m.change_password": {"enabled": change_password},
|
2022-02-11 04:32:11 -05:00
|
|
|
"m.set_displayname": {
|
|
|
|
"enabled": self.config.registration.enable_set_displayname
|
|
|
|
},
|
|
|
|
"m.set_avatar_url": {
|
|
|
|
"enabled": self.config.registration.enable_set_avatar_url
|
|
|
|
},
|
|
|
|
"m.3pid_changes": {
|
|
|
|
"enabled": self.config.registration.enable_3pid_changes
|
|
|
|
},
|
2023-06-01 08:52:51 -04:00
|
|
|
"m.get_login_token": {
|
|
|
|
"enabled": self.config.auth.login_via_existing_enabled,
|
|
|
|
},
|
2019-01-30 05:23:26 -05:00
|
|
|
}
|
|
|
|
}
|
2021-07-20 07:59:23 -04:00
|
|
|
|
|
|
|
if self.config.experimental.msc3244_enabled:
|
|
|
|
response["capabilities"]["m.room_versions"][
|
|
|
|
"org.matrix.msc3244.room_capabilities"
|
|
|
|
] = MSC3244_CAPABILITIES
|
|
|
|
|
2022-02-22 10:10:10 -05:00
|
|
|
if self.config.experimental.msc3720_enabled:
|
|
|
|
response["capabilities"]["org.matrix.msc3720.account_status"] = {
|
|
|
|
"enabled": True,
|
|
|
|
}
|
|
|
|
|
2022-10-25 09:38:01 -04:00
|
|
|
if self.config.experimental.msc3664_enabled:
|
|
|
|
response["capabilities"]["im.nheko.msc3664.related_event_match"] = {
|
|
|
|
"enabled": self.config.experimental.msc3664_enabled,
|
|
|
|
}
|
|
|
|
|
2022-02-11 04:32:11 -05:00
|
|
|
return HTTPStatus.OK, response
|
2019-01-25 06:16:29 -05:00
|
|
|
|
|
|
|
|
2021-08-23 08:14:17 -04:00
|
|
|
def register_servlets(hs: "HomeServer", http_server: HttpServer) -> None:
|
2019-01-25 06:16:29 -05:00
|
|
|
CapabilitiesRestServlet(hs).register(http_server)
|