2018-05-10 19:17:11 -04: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]
|
2018-05-10 19:17:11 -04:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
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"
|
|
|
|
)
|