2021-01-27 13:41:24 +01:00
|
|
|
# Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2022-10-18 17:52:25 +02:00
|
|
|
from typing import Any, Optional
|
2022-04-11 18:07:23 +02:00
|
|
|
|
2022-09-29 15:23:24 +02:00
|
|
|
import attr
|
|
|
|
|
2022-11-29 01:22:34 +01:00
|
|
|
from synapse.api.room_versions import KNOWN_ROOM_VERSIONS, RoomVersions
|
2023-01-13 20:32:10 +01:00
|
|
|
from synapse.config import ConfigError
|
2021-01-27 13:41:24 +01:00
|
|
|
from synapse.config._base import Config
|
|
|
|
from synapse.types import JsonDict
|
|
|
|
|
|
|
|
|
2022-09-29 15:23:24 +02:00
|
|
|
@attr.s(auto_attribs=True, frozen=True, slots=True)
|
|
|
|
class MSC3866Config:
|
|
|
|
"""Configuration for MSC3866 (mandating approval for new users)"""
|
|
|
|
|
|
|
|
# Whether the base support for the approval process is enabled. This includes the
|
|
|
|
# ability for administrators to check and update the approval of users, even if no
|
|
|
|
# approval is currently required.
|
|
|
|
enabled: bool = False
|
|
|
|
# Whether to require that new users are approved by an admin before their account
|
|
|
|
# can be used. Note that this setting is ignored if 'enabled' is false.
|
|
|
|
require_approval_for_new_accounts: bool = False
|
|
|
|
|
|
|
|
|
2021-01-27 13:41:24 +01:00
|
|
|
class ExperimentalConfig(Config):
|
|
|
|
"""Config section for enabling experimental features"""
|
|
|
|
|
|
|
|
section = "experimental"
|
|
|
|
|
2022-04-11 18:07:23 +02:00
|
|
|
def read_config(self, config: JsonDict, **kwargs: Any) -> None:
|
2021-01-27 13:41:24 +01:00
|
|
|
experimental = config.get("experimental_features") or {}
|
|
|
|
|
2021-03-18 18:37:19 +01:00
|
|
|
# MSC3026 (busy presence state)
|
2021-07-15 12:02:43 +02:00
|
|
|
self.msc3026_enabled: bool = experimental.get("msc3026_enabled", False)
|
2021-06-22 11:02:53 +02:00
|
|
|
|
2021-12-16 18:25:37 +01:00
|
|
|
# MSC2716 (importing historical messages)
|
2021-07-15 12:02:43 +02:00
|
|
|
self.msc2716_enabled: bool = experimental.get("msc2716_enabled", False)
|
2021-07-20 13:59:23 +02:00
|
|
|
|
|
|
|
# MSC3244 (room version capabilities)
|
2021-08-20 13:17:50 +02:00
|
|
|
self.msc3244_enabled: bool = experimental.get("msc3244_enabled", True)
|
2021-08-16 16:49:12 +02:00
|
|
|
|
|
|
|
# MSC3266 (room summary api)
|
|
|
|
self.msc3266_enabled: bool = experimental.get("msc3266_enabled", False)
|
2021-12-02 08:02:20 +01:00
|
|
|
|
2022-02-01 15:13:38 +01:00
|
|
|
# MSC2409 (this setting only relates to optionally sending to-device messages).
|
|
|
|
# Presence, typing and read receipt EDUs are already sent to application services that
|
|
|
|
# have opted in to receive them. If enabled, this adds to-device messages to that list.
|
|
|
|
self.msc2409_to_device_messages_enabled: bool = experimental.get(
|
|
|
|
"msc2409_to_device_messages_enabled", False
|
|
|
|
)
|
2022-02-12 11:44:16 +01:00
|
|
|
|
2022-02-24 18:55:45 +01:00
|
|
|
# The portion of MSC3202 which is related to device masquerading.
|
|
|
|
self.msc3202_device_masquerading_enabled: bool = experimental.get(
|
|
|
|
"msc3202_device_masquerading", False
|
|
|
|
)
|
|
|
|
|
2022-03-30 15:39:27 +02:00
|
|
|
# The portion of MSC3202 related to transaction extensions:
|
|
|
|
# sending device list changes, one-time key counts and fallback key
|
|
|
|
# usage to application services.
|
2022-02-24 18:55:45 +01:00
|
|
|
self.msc3202_transaction_extensions: bool = experimental.get(
|
|
|
|
"msc3202_transaction_extensions", False
|
|
|
|
)
|
|
|
|
|
2023-03-28 20:26:27 +02:00
|
|
|
# MSC3983: Proxying OTK claim requests to exclusive ASes.
|
|
|
|
self.msc3983_appservice_otk_claims: bool = experimental.get(
|
|
|
|
"msc3983_appservice_otk_claims", False
|
|
|
|
)
|
|
|
|
|
2023-03-30 14:39:38 +02:00
|
|
|
# MSC3984: Proxying key queries to exclusive ASes.
|
|
|
|
self.msc3984_appservice_key_query: bool = experimental.get(
|
|
|
|
"msc3984_appservice_key_query", False
|
|
|
|
)
|
|
|
|
|
2022-02-12 11:44:16 +01:00
|
|
|
# MSC3706 (server-side support for partial state in /send_join responses)
|
2023-01-17 13:44:15 +01:00
|
|
|
# Synapse will always serve partial state responses to requests using the stable
|
|
|
|
# query parameter `omit_members`. If this flag is set, Synapse will also serve
|
|
|
|
# partial state responses to requests using the unstable query parameter
|
|
|
|
# `org.matrix.msc3706.partial_state`.
|
2022-02-12 11:44:16 +01:00
|
|
|
self.msc3706_enabled: bool = experimental.get("msc3706_enabled", False)
|
2022-02-17 17:11:59 +01:00
|
|
|
|
2022-09-23 12:47:16 +02:00
|
|
|
# experimental support for faster joins over federation
|
|
|
|
# (MSC2775, MSC3706, MSC3895)
|
2023-01-17 13:44:15 +01:00
|
|
|
# requires a target server that can provide a partial join response (MSC3706)
|
2023-01-24 16:28:20 +01:00
|
|
|
self.faster_joins_enabled: bool = experimental.get("faster_joins", True)
|
2022-02-22 16:10:10 +01:00
|
|
|
|
|
|
|
# MSC3720 (Account status endpoint)
|
|
|
|
self.msc3720_enabled: bool = experimental.get("msc3720_enabled", False)
|
2022-03-12 19:23:37 +01:00
|
|
|
|
2022-03-31 21:05:13 +02:00
|
|
|
# MSC2654: Unread counts
|
2022-09-01 18:52:03 +02:00
|
|
|
#
|
|
|
|
# Note that enabling this will result in an incorrect unread count for
|
|
|
|
# previously calculated push actions.
|
2022-03-31 21:05:13 +02:00
|
|
|
self.msc2654_enabled: bool = experimental.get("msc2654_enabled", False)
|
2022-04-20 13:57:39 +02:00
|
|
|
|
|
|
|
# MSC2815 (allow room moderators to view redacted event content)
|
|
|
|
self.msc2815_enabled: bool = experimental.get("msc2815_enabled", False)
|
2022-05-10 09:57:36 +02:00
|
|
|
|
2023-01-13 20:32:10 +01:00
|
|
|
# MSC3391: Removing account data.
|
|
|
|
self.msc3391_enabled = experimental.get("msc3391_enabled", False)
|
|
|
|
|
2022-10-04 15:47:04 +02:00
|
|
|
# MSC3773: Thread notifications
|
|
|
|
self.msc3773_enabled: bool = experimental.get("msc3773_enabled", False)
|
2022-06-29 19:12:45 +02:00
|
|
|
|
2022-10-25 15:38:01 +02:00
|
|
|
# MSC3664: Pushrules to match on related events
|
|
|
|
self.msc3664_enabled: bool = experimental.get("msc3664_enabled", False)
|
|
|
|
|
2022-07-27 14:44:40 +02:00
|
|
|
# MSC3848: Introduce errcodes for specific event sending failures
|
|
|
|
self.msc3848_enabled: bool = experimental.get("msc3848_enabled", False)
|
2022-08-19 18:17:10 +02:00
|
|
|
|
|
|
|
# MSC3852: Expose last seen user agent field on /_matrix/client/v3/devices.
|
|
|
|
self.msc3852_enabled: bool = experimental.get("msc3852_enabled", False)
|
2022-09-21 16:39:01 +02:00
|
|
|
|
2022-09-29 15:23:24 +02:00
|
|
|
# MSC3866: M_USER_AWAITING_APPROVAL error code
|
|
|
|
raw_msc3866_config = experimental.get("msc3866", {})
|
|
|
|
self.msc3866 = MSC3866Config(**raw_msc3866_config)
|
|
|
|
|
2022-09-21 16:39:01 +02:00
|
|
|
# MSC3881: Remotely toggle push notifications for another client
|
|
|
|
self.msc3881_enabled: bool = experimental.get("msc3881_enabled", False)
|
2022-09-21 17:12:29 +02:00
|
|
|
|
|
|
|
# MSC3882: Allow an existing session to sign in a new session
|
|
|
|
self.msc3882_enabled: bool = experimental.get("msc3882_enabled", False)
|
|
|
|
self.msc3882_ui_auth: bool = experimental.get("msc3882_ui_auth", True)
|
|
|
|
self.msc3882_token_timeout = self.parse_duration(
|
|
|
|
experimental.get("msc3882_token_timeout", "5m")
|
|
|
|
)
|
2022-10-17 17:32:11 +02:00
|
|
|
|
|
|
|
# MSC3874: Filtering /messages with rel_types / not_rel_types.
|
|
|
|
self.msc3874_enabled: bool = experimental.get("msc3874_enabled", False)
|
2022-10-18 17:52:25 +02:00
|
|
|
|
|
|
|
# MSC3886: Simple client rendezvous capability
|
|
|
|
self.msc3886_endpoint: Optional[str] = experimental.get(
|
|
|
|
"msc3886_endpoint", None
|
|
|
|
)
|
2022-11-03 17:21:31 +01:00
|
|
|
|
2023-01-13 20:32:10 +01:00
|
|
|
# MSC3890: Remotely silence local notifications
|
|
|
|
# Note: This option requires "experimental_features.msc3391_enabled" to be
|
|
|
|
# set to "true", in order to communicate account data deletions to clients.
|
|
|
|
self.msc3890_enabled: bool = experimental.get("msc3890_enabled", False)
|
|
|
|
if self.msc3890_enabled and not self.msc3391_enabled:
|
|
|
|
raise ConfigError(
|
|
|
|
"Option 'experimental_features.msc3391' must be set to 'true' to "
|
|
|
|
"enable 'experimental_features.msc3890'. MSC3391 functionality is "
|
|
|
|
"required to communicate account data deletions to clients."
|
|
|
|
)
|
|
|
|
|
2023-01-19 13:47:10 +01:00
|
|
|
# MSC3381: Polls.
|
|
|
|
# In practice, supporting polls in Synapse only requires an implementation of
|
|
|
|
# MSC3930: Push rules for MSC3391 polls; which is what this option enables.
|
|
|
|
self.msc3381_polls_enabled: bool = experimental.get(
|
|
|
|
"msc3381_polls_enabled", False
|
|
|
|
)
|
|
|
|
|
2022-11-03 17:21:31 +01:00
|
|
|
# MSC3912: Relation-based redactions.
|
|
|
|
self.msc3912_enabled: bool = experimental.get("msc3912_enabled", False)
|
2022-11-29 00:29:53 +01:00
|
|
|
|
|
|
|
# MSC1767 and friends: Extensible Events
|
|
|
|
self.msc1767_enabled: bool = experimental.get("msc1767_enabled", False)
|
2022-11-29 01:22:34 +01:00
|
|
|
if self.msc1767_enabled:
|
|
|
|
# Enable room version (and thus applicable push rules from MSC3931/3932)
|
|
|
|
version_id = RoomVersions.MSC1767v10.identifier
|
|
|
|
KNOWN_ROOM_VERSIONS[version_id] = RoomVersions.MSC1767v10
|
2023-01-01 04:40:46 +01:00
|
|
|
|
|
|
|
# MSC3391: Removing account data.
|
|
|
|
self.msc3391_enabled = experimental.get("msc3391_enabled", False)
|
2023-01-10 17:31:28 +01:00
|
|
|
|
2023-03-06 14:38:01 +01:00
|
|
|
# MSC3952: Intentional mentions, this depends on MSC3966.
|
2023-03-07 16:06:02 +01:00
|
|
|
self.msc3952_intentional_mentions = experimental.get(
|
|
|
|
"msc3952_intentional_mentions", False
|
2023-01-27 16:16:21 +01:00
|
|
|
)
|
2023-02-03 20:31:14 +01:00
|
|
|
|
|
|
|
# MSC3959: Do not generate notifications for edits.
|
|
|
|
self.msc3958_supress_edit_notifs = experimental.get(
|
|
|
|
"msc3958_supress_edit_notifs", False
|
|
|
|
)
|
2023-02-14 20:02:19 +01:00
|
|
|
|
2023-03-02 11:34:59 +01:00
|
|
|
# MSC3967: Do not require UIA when first uploading cross signing keys
|
|
|
|
self.msc3967_enabled = experimental.get("msc3967_enabled", False)
|
2023-03-16 15:00:03 +01:00
|
|
|
|
|
|
|
# MSC2659: Application service ping endpoint
|
|
|
|
self.msc2659_enabled = experimental.get("msc2659_enabled", False)
|