2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-09-05 20:58:06 -04: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.
|
|
|
|
|
|
|
|
from ._base import Config
|
|
|
|
|
2014-09-19 07:04:17 -04:00
|
|
|
|
2014-09-05 20:58:06 -04:00
|
|
|
class CaptchaConfig(Config):
|
|
|
|
|
2015-04-29 23:24:44 -04:00
|
|
|
def read_config(self, config):
|
2019-03-19 06:06:40 -04:00
|
|
|
self.recaptcha_private_key = config.get("recaptcha_private_key")
|
|
|
|
self.recaptcha_public_key = config.get("recaptcha_public_key")
|
|
|
|
self.enable_registration_captcha = config.get(
|
|
|
|
"enable_registration_captcha", False
|
|
|
|
)
|
2015-04-29 23:24:44 -04:00
|
|
|
self.captcha_bypass_secret = config.get("captcha_bypass_secret")
|
2019-03-19 06:06:40 -04:00
|
|
|
self.recaptcha_siteverify_api = config.get(
|
|
|
|
"recaptcha_siteverify_api",
|
|
|
|
"https://www.recaptcha.net/recaptcha/api/siteverify",
|
|
|
|
)
|
2015-04-29 23:24:44 -04:00
|
|
|
|
2015-09-22 07:57:40 -04:00
|
|
|
def default_config(self, **kwargs):
|
2015-04-29 23:24:44 -04:00
|
|
|
return """\
|
|
|
|
## Captcha ##
|
2016-06-12 18:11:29 -04:00
|
|
|
# See docs/CAPTCHA_SETUP for full details of configuring this.
|
2015-04-29 23:24:44 -04:00
|
|
|
|
|
|
|
# This Home Server's ReCAPTCHA public key.
|
2019-02-19 08:54:29 -05:00
|
|
|
#
|
2019-03-19 06:06:40 -04:00
|
|
|
#recaptcha_public_key: "YOUR_PUBLIC_KEY"
|
2015-04-29 23:24:44 -04:00
|
|
|
|
|
|
|
# This Home Server's ReCAPTCHA private key.
|
2019-02-19 08:54:29 -05:00
|
|
|
#
|
2019-03-19 06:06:40 -04:00
|
|
|
#recaptcha_private_key: "YOUR_PRIVATE_KEY"
|
2015-04-29 23:24:44 -04:00
|
|
|
|
|
|
|
# Enables ReCaptcha checks when registering, preventing signup
|
|
|
|
# unless a captcha is answered. Requires a valid ReCaptcha
|
|
|
|
# public/private key.
|
2019-02-19 08:54:29 -05:00
|
|
|
#
|
2019-03-19 06:06:40 -04:00
|
|
|
#enable_registration_captcha: false
|
2015-04-29 23:24:44 -04:00
|
|
|
|
|
|
|
# A secret key used to bypass the captcha test entirely.
|
2019-03-19 06:06:40 -04:00
|
|
|
#
|
2015-04-30 13:10:19 -04:00
|
|
|
#captcha_bypass_secret: "YOUR_SECRET_HERE"
|
2015-05-29 07:11:40 -04:00
|
|
|
|
|
|
|
# The API endpoint to use for verifying m.login.recaptcha responses.
|
2019-03-19 06:06:40 -04:00
|
|
|
#
|
|
|
|
#recaptcha_siteverify_api: "https://www.recaptcha.net/recaptcha/api/siteverify"
|
2015-04-29 23:24:44 -04:00
|
|
|
"""
|