2016-01-06 13:08:52 -05:00
|
|
|
# Copyright 2016 OpenMarket Ltd
|
2019-11-05 05:56:39 -05:00
|
|
|
# Copyright 2017 Vector Creations Ltd
|
|
|
|
# Copyright 2018-2019 New Vector Ltd
|
|
|
|
# Copyright 2019 The Matrix.org Foundation C.I.C.
|
2016-01-06 13:08:52 -05:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
import re
|
2021-08-23 08:14:17 -04:00
|
|
|
from typing import TYPE_CHECKING, Tuple
|
|
|
|
|
|
|
|
from twisted.web.server import Request
|
2016-01-06 13:08:52 -05:00
|
|
|
|
2020-09-18 07:56:20 -04:00
|
|
|
from synapse.api.constants import RoomCreationPreset
|
2021-08-23 08:14:17 -04:00
|
|
|
from synapse.http.server import HttpServer
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.http.servlet import RestServlet
|
2021-08-23 08:14:17 -04:00
|
|
|
from synapse.types import JsonDict
|
|
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2016-01-06 13:08:52 -05:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
class VersionsRestServlet(RestServlet):
|
|
|
|
PATTERNS = [re.compile("^/_matrix/client/versions$")]
|
|
|
|
|
2021-08-23 08:14:17 -04:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2019-09-06 06:35:28 -04:00
|
|
|
self.config = hs.config
|
|
|
|
|
2020-09-18 07:56:20 -04:00
|
|
|
# Calculate these once since they shouldn't change after start-up.
|
|
|
|
self.e2ee_forced_public = (
|
|
|
|
RoomCreationPreset.PUBLIC_CHAT
|
2021-09-24 07:25:21 -04:00
|
|
|
in self.config.room.encryption_enabled_by_default_for_room_presets
|
2020-09-18 07:56:20 -04:00
|
|
|
)
|
|
|
|
self.e2ee_forced_private = (
|
|
|
|
RoomCreationPreset.PRIVATE_CHAT
|
2021-09-24 07:25:21 -04:00
|
|
|
in self.config.room.encryption_enabled_by_default_for_room_presets
|
2020-09-18 07:56:20 -04:00
|
|
|
)
|
|
|
|
self.e2ee_forced_trusted_private = (
|
|
|
|
RoomCreationPreset.TRUSTED_PRIVATE_CHAT
|
2021-09-24 07:25:21 -04:00
|
|
|
in self.config.room.encryption_enabled_by_default_for_room_presets
|
2020-09-18 07:56:20 -04:00
|
|
|
)
|
|
|
|
|
2021-08-23 08:14:17 -04:00
|
|
|
def on_GET(self, request: Request) -> Tuple[int, JsonDict]:
|
2016-01-06 13:08:52 -05:00
|
|
|
return (
|
|
|
|
200,
|
|
|
|
{
|
2016-07-28 04:14:21 -04:00
|
|
|
"versions": [
|
2018-08-16 09:22:47 -04:00
|
|
|
# XXX: at some point we need to decide whether we need to include
|
|
|
|
# the previous version numbers, given we've defined r0.3.0 to be
|
|
|
|
# backwards compatible with r0.2.0. But need to check how
|
|
|
|
# conscientious we've been in compatibility, and decide whether the
|
|
|
|
# middle number is the major revision when at 0.X.Y (as opposed to
|
|
|
|
# X.Y.Z). And we need to decide whether it's fair to make clients
|
|
|
|
# parse the version string to figure out what's going on.
|
2016-07-28 04:14:21 -04:00
|
|
|
"r0.0.1",
|
2016-07-28 05:14:07 -04:00
|
|
|
"r0.1.0",
|
2016-07-28 04:14:21 -04:00
|
|
|
"r0.2.0",
|
2017-11-15 11:24:22 -05:00
|
|
|
"r0.3.0",
|
2019-02-08 16:09:56 -05:00
|
|
|
"r0.4.0",
|
2019-06-05 11:11:31 -04:00
|
|
|
"r0.5.0",
|
2020-06-05 07:27:37 -04:00
|
|
|
"r0.6.0",
|
2021-11-01 09:28:39 -04:00
|
|
|
"r0.6.1",
|
2022-02-18 07:49:53 -05:00
|
|
|
"v1.1",
|
2022-02-21 10:59:29 -05:00
|
|
|
"v1.2",
|
2022-10-04 10:21:16 -04:00
|
|
|
"v1.3",
|
2022-10-14 09:21:55 -04:00
|
|
|
"v1.4",
|
2018-08-16 09:22:47 -04:00
|
|
|
],
|
|
|
|
# as per MSC1497:
|
2019-09-23 13:52:43 -04:00
|
|
|
"unstable_features": {
|
2019-11-01 06:41:23 -04:00
|
|
|
# Implements support for label-based filtering as described in
|
|
|
|
# MSC2326.
|
|
|
|
"org.matrix.label_based_filtering": True,
|
2020-01-16 04:46:14 -05:00
|
|
|
# Implements support for cross signing as described in MSC1756
|
|
|
|
"org.matrix.e2e_cross_signing": True,
|
2020-02-19 05:40:27 -05:00
|
|
|
# Implements additional endpoints as described in MSC2432
|
|
|
|
"org.matrix.msc2432": True,
|
2020-09-02 08:18:40 -04:00
|
|
|
# Implements additional endpoints as described in MSC2666
|
2022-04-13 05:32:44 -04:00
|
|
|
"uk.half-shot.msc2666.mutual_rooms": True,
|
2020-09-18 07:56:20 -04:00
|
|
|
# Whether new rooms will be set to encrypted or not (based on presets).
|
|
|
|
"io.element.e2ee_forced.public": self.e2ee_forced_public,
|
|
|
|
"io.element.e2ee_forced.private": self.e2ee_forced_private,
|
|
|
|
"io.element.e2ee_forced.trusted_private": self.e2ee_forced_trusted_private,
|
2021-03-18 11:34:47 -04:00
|
|
|
# Supports the busy presence state described in MSC3026.
|
2021-03-19 13:19:50 -04:00
|
|
|
"org.matrix.msc3026.busy_presence": self.config.experimental.msc3026_enabled,
|
2022-05-05 08:31:25 -04:00
|
|
|
# Supports receiving private read receipts as per MSC2285
|
2022-08-05 11:09:33 -04:00
|
|
|
"org.matrix.msc2285.stable": True, # TODO: Remove when MSC2285 becomes a part of the spec
|
2022-07-27 14:46:57 -04:00
|
|
|
# Supports filtering of /publicRooms by room type as per MSC3827
|
|
|
|
"org.matrix.msc3827.stable": True,
|
2021-12-16 12:25:37 -05:00
|
|
|
# Adds support for importing historical messages as per MSC2716
|
|
|
|
"org.matrix.msc2716": self.config.experimental.msc2716_enabled,
|
|
|
|
# Adds support for jump to date endpoints (/timestamp_to_event) as per MSC3030
|
|
|
|
"org.matrix.msc3030": self.config.experimental.msc3030_enabled,
|
2022-02-28 13:29:09 -05:00
|
|
|
# Adds support for thread relations, per MSC3440.
|
2022-03-10 10:36:13 -05:00
|
|
|
"org.matrix.msc3440.stable": True, # TODO: remove when "v1.3" is added above
|
2022-10-04 09:47:04 -04:00
|
|
|
# Support for thread read receipts & notification counts.
|
2022-10-07 09:26:40 -04:00
|
|
|
"org.matrix.msc3771": True,
|
2022-10-04 09:47:04 -04:00
|
|
|
"org.matrix.msc3773": self.config.experimental.msc3773_enabled,
|
2022-04-20 07:57:39 -04:00
|
|
|
# Allows moderators to fetch redacted event content as described in MSC2815
|
|
|
|
"fi.mau.msc2815": self.config.experimental.msc2815_enabled,
|
2022-09-21 11:12:29 -04:00
|
|
|
# Adds support for login token requests as per MSC3882
|
|
|
|
"org.matrix.msc3882": self.config.experimental.msc3882_enabled,
|
2022-09-21 12:18:44 -04:00
|
|
|
# Adds support for remotely enabling/disabling pushers, as per MSC3881
|
|
|
|
"org.matrix.msc3881": self.config.experimental.msc3881_enabled,
|
2022-10-17 11:32:11 -04:00
|
|
|
# Adds support for filtering /messages by event relation.
|
|
|
|
"org.matrix.msc3874": self.config.experimental.msc3874_enabled,
|
2022-10-18 11:52:25 -04:00
|
|
|
# Adds support for simple HTTP rendezvous as per MSC3886
|
|
|
|
"org.matrix.msc3886": self.config.experimental.msc3886_endpoint
|
|
|
|
is not None,
|
2022-11-03 12:21:31 -04:00
|
|
|
# Adds support for relation-based redactions as per MSC3912.
|
|
|
|
"org.matrix.msc3912": self.config.experimental.msc3912_enabled,
|
2019-09-23 13:52:43 -04:00
|
|
|
},
|
2018-08-16 09:22:47 -04:00
|
|
|
},
|
2016-01-06 13:08:52 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2021-08-23 08:14:17 -04:00
|
|
|
def register_servlets(hs: "HomeServer", http_server: HttpServer) -> None:
|
2019-09-06 06:35:28 -04:00
|
|
|
VersionsRestServlet(hs).register(http_server)
|