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]:
|
2019-06-20 05:32:02 -04:00
|
|
|
return (
|
|
|
|
200,
|
|
|
|
{
|
|
|
|
"versions": [
|
|
|
|
# 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.
|
|
|
|
"r0.0.1",
|
|
|
|
"r0.1.0",
|
|
|
|
"r0.2.0",
|
|
|
|
"r0.3.0",
|
|
|
|
"r0.4.0",
|
|
|
|
"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",
|
2019-06-20 05:32:02 -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
|
|
|
|
"uk.half-shot.msc2666": 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,
|
2021-07-28 04:05:11 -04:00
|
|
|
# Supports receiving hidden read receipts as per MSC2285
|
|
|
|
"org.matrix.msc2285": self.config.experimental.msc2285_enabled,
|
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,
|
2019-09-23 13:52:43 -04:00
|
|
|
},
|
2019-06-20 05:32:02 -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)
|