2018-05-10 19:17:11 -04:00
|
|
|
# Copyright 2018 New Vector 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.
|
|
|
|
|
2019-01-29 10:29:09 -05:00
|
|
|
from os import path
|
2022-04-11 12:07:23 -04:00
|
|
|
from typing import Any, Optional
|
2019-01-29 10:29:09 -05:00
|
|
|
|
|
|
|
from synapse.config import ConfigError
|
2022-04-11 12:07:23 -04:00
|
|
|
from synapse.types import JsonDict
|
2019-01-29 10:29:09 -05:00
|
|
|
|
2018-05-10 19:17:11 -04:00
|
|
|
from ._base import Config
|
|
|
|
|
|
|
|
|
|
|
|
class ConsentConfig(Config):
|
2019-10-10 04:39:35 -04:00
|
|
|
|
|
|
|
section = "consent"
|
|
|
|
|
2022-04-11 12:07:23 -04:00
|
|
|
def __init__(self, *args: Any):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__(*args)
|
2018-05-18 10:41:40 -04:00
|
|
|
|
2021-09-23 07:13:34 -04:00
|
|
|
self.user_consent_version: Optional[str] = None
|
|
|
|
self.user_consent_template_dir: Optional[str] = None
|
2022-04-11 12:07:23 -04:00
|
|
|
self.user_consent_server_notice_content: Optional[JsonDict] = None
|
2018-05-25 06:36:43 -04:00
|
|
|
self.user_consent_server_notice_to_guests = False
|
2022-04-11 12:07:23 -04:00
|
|
|
self.block_events_without_consent_error: Optional[str] = None
|
2018-11-06 05:32:34 -05:00
|
|
|
self.user_consent_at_registration = False
|
|
|
|
self.user_consent_policy_name = "Privacy Policy"
|
2018-05-18 10:41:40 -04:00
|
|
|
|
2022-04-11 12:07:23 -04:00
|
|
|
def read_config(self, config: JsonDict, **kwargs: Any) -> None:
|
2018-05-18 10:41:40 -04:00
|
|
|
consent_config = config.get("user_consent")
|
2021-01-27 10:59:50 -05:00
|
|
|
self.terms_template = self.read_template("terms.html")
|
2020-10-02 06:15:53 -04:00
|
|
|
|
2018-05-18 10:41:40 -04:00
|
|
|
if consent_config is None:
|
|
|
|
return
|
|
|
|
self.user_consent_version = str(consent_config["version"])
|
2019-01-29 10:29:09 -05:00
|
|
|
self.user_consent_template_dir = self.abspath(consent_config["template_dir"])
|
2021-09-23 07:13:34 -04:00
|
|
|
if not isinstance(self.user_consent_template_dir, str) or not path.isdir(
|
|
|
|
self.user_consent_template_dir
|
|
|
|
):
|
2019-01-29 10:29:09 -05:00
|
|
|
raise ConfigError(
|
|
|
|
"Could not find template directory '%s'"
|
|
|
|
% (self.user_consent_template_dir,)
|
|
|
|
)
|
2018-05-18 10:41:40 -04:00
|
|
|
self.user_consent_server_notice_content = consent_config.get(
|
|
|
|
"server_notice_content"
|
|
|
|
)
|
2018-05-22 03:56:52 -04:00
|
|
|
self.block_events_without_consent_error = consent_config.get(
|
|
|
|
"block_events_error"
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2018-05-25 06:36:43 -04:00
|
|
|
self.user_consent_server_notice_to_guests = bool(
|
2018-05-22 03:56:52 -04:00
|
|
|
consent_config.get("send_server_notice_to_guests", False)
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2018-11-06 05:32:34 -05:00
|
|
|
self.user_consent_at_registration = bool(
|
|
|
|
consent_config.get("require_at_registration", False)
|
2018-05-22 03:56:52 -04:00
|
|
|
)
|
2018-11-06 05:32:34 -05:00
|
|
|
self.user_consent_policy_name = consent_config.get(
|
|
|
|
"policy_name", "Privacy Policy"
|
|
|
|
)
|