2014-09-05 20:58:06 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
2024-01-23 06:26:48 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2023-11-21 15:29:58 -05:00
|
|
|
# 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]
|
2014-09-05 20:58:06 -04:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2022-04-11 12:07:23 -04:00
|
|
|
from typing import Any
|
|
|
|
|
|
|
|
from synapse.types import JsonDict
|
|
|
|
|
|
|
|
from ._base import Config, ConfigError
|
2014-09-05 20:58:06 -04:00
|
|
|
|
2014-09-19 07:04:17 -04:00
|
|
|
|
2014-09-05 20:58:06 -04:00
|
|
|
class CaptchaConfig(Config):
|
2019-10-10 04:39:35 -04:00
|
|
|
section = "captcha"
|
|
|
|
|
2022-04-11 12:07:23 -04:00
|
|
|
def read_config(self, config: JsonDict, **kwargs: Any) -> None:
|
|
|
|
recaptcha_private_key = config.get("recaptcha_private_key")
|
|
|
|
if recaptcha_private_key is not None and not isinstance(
|
|
|
|
recaptcha_private_key, str
|
|
|
|
):
|
|
|
|
raise ConfigError("recaptcha_private_key must be a string.")
|
|
|
|
self.recaptcha_private_key = recaptcha_private_key
|
|
|
|
|
|
|
|
recaptcha_public_key = config.get("recaptcha_public_key")
|
|
|
|
if recaptcha_public_key is not None and not isinstance(
|
|
|
|
recaptcha_public_key, str
|
|
|
|
):
|
|
|
|
raise ConfigError("recaptcha_public_key must be a string.")
|
|
|
|
self.recaptcha_public_key = recaptcha_public_key
|
|
|
|
|
2019-03-19 06:06:40 -04:00
|
|
|
self.enable_registration_captcha = config.get(
|
|
|
|
"enable_registration_captcha", False
|
|
|
|
)
|
|
|
|
self.recaptcha_siteverify_api = config.get(
|
|
|
|
"recaptcha_siteverify_api",
|
|
|
|
"https://www.recaptcha.net/recaptcha/api/siteverify",
|
|
|
|
)
|
2021-01-27 10:59:50 -05:00
|
|
|
self.recaptcha_template = self.read_template("recaptcha.html")
|