mirror of
https://github.com/DarkflameUniverse/NexusDashboard.git
synced 2024-11-09 11:48:20 +00:00
extend the recaptha validator to make it optional
This commit is contained in:
parent
7633053490
commit
b7e48bb656
14
app/forms.py
14
app/forms.py
@ -34,13 +34,11 @@ def validate_play_key(form, field):
|
||||
field.data = PlayKey.key_is_valid(key_string=field.data)
|
||||
return
|
||||
|
||||
def validate_recaptcha(form, field):
|
||||
current_app.logger.info("start validating with recaptcha")
|
||||
if current_app.config["RECAPTCHA_ENABLE"]:
|
||||
current_app.logger.info("validating with recaptcha")
|
||||
return Recaptcha()
|
||||
current_app.logger.info("skipping validating with recaptcha")
|
||||
class CustomRecaptcha(Recaptcha):
|
||||
def __call__(self, form, field):
|
||||
if not current_app.config.get("RECAPTCHA_ENABLE", False):
|
||||
return True
|
||||
return super(CustomRecaptcha, self).__call__(form, field)
|
||||
|
||||
|
||||
class CustomUserManager(UserManager):
|
||||
@ -57,12 +55,12 @@ class CustomRegisterForm(RegisterForm):
|
||||
]
|
||||
)
|
||||
recaptcha = RecaptchaField(
|
||||
validators=[validate_recaptcha]
|
||||
validators=[CustomRecaptcha()]
|
||||
)
|
||||
|
||||
class CustomLoginForm(LoginForm):
|
||||
recaptcha = RecaptchaField(
|
||||
validators=[validate_recaptcha]
|
||||
validators=[CustomRecaptcha()]
|
||||
)
|
||||
|
||||
class CreatePlayKeyForm(FlaskForm):
|
||||
|
Loading…
Reference in New Issue
Block a user