/
Ao
/
MaxReport
Обзор
Документация
Войти
/
Ao
/
MaxReport
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
pgsql/pgAdmin 4/python/Lib/site-packages/flask_security/forms.py
1 103 строки
39 KB
AoAnima
first_commit
13 июл 2026, 17:47
13 июл 2026, 17:47
f1a670a
Код
Авторство
О чём код?
""" flask_security.forms ~~~~~~~~~~~~~~~~~~~~ Flask-Security forms module :copyright: (c) 2012 by Matt Wright. :copyright: (c) 2017 by CERN. :copyright: (c) 2019-2026 by J. Christopher Wagner (jwag). :license: MIT, see LICENSE for more details. """ from __future__ import annotations import inspect import typing as t from flask import current_app, request from flask_login import current_user from flask_wtf import FlaskForm as BaseForm from markupsafe import Markup from wtforms import ( BooleanField, EmailField, Field, HiddenField, PasswordField, RadioField, StringField, SubmitField, TelField, ValidationError, ) from werkzeug.datastructures import MultiDict from wtforms.validators import Optional, StopValidation, EqualTo, DataRequired, Length from .babel import is_lazy_string, make_lazy_string from .confirmable import requires_confirmation from .mail_util import EmailValidateException from .proxies import _security from .utils import ( _, _datastore, config_value as cv, do_flash, get_identity_attribute, get_message, hash_password, localize_callback, suppress_form_csrf, url_for_security, validate_redirect_url, verify_password, ) if t.TYPE_CHECKING: # pragma: no cover from flask_security import UserMixin _default_field_labels = { "authapp_method": _( "Set up using an authenticator app (e.g. google, lastpass, authy)" ), "change_method": _("Change Method"), "change_password": _("Change Password"), "code": _("Authentication Code"), "delete": _("Delete"), "email": _("Email Address"), "email_method": _("Set up using email"), "error": _("Error(s)"), "identity": _("Identity"), "login": _("Login"), "new_password": _("New Password"), "passcode": _("Passcode"), "password": _("Password"), "phone": _("Phone Number"), "recover_password": _("Recover Password"), "recover_username": _("Recover Username"), "register": _("Register"), "remember_me": _("Remember Me"), "reset_password": _("Reset Password"), "retype_password": _("Retype Password"), "send_confirmation": _("Resend Confirmation Instructions"), "send_login_link": _("Send Login Link"), "sendcode": _("Send Code"), "signin": _("Sign In"), "sms_method": _("Set up using SMS"), "submit": _("Submit"), "submitcode": _("Submit Code"), "username": _("Username"), "verify_password": _("Verify Password"), } # translated methods for two-factor and us-signin. keyed by form 'choices' _setup_methods_xlate = { "google_authenticator": _("Google Authenticator"), "authenticator": _("authenticator"), "email": _("email"), "mail": _("email"), "sms": _("SMS"), "password": _("password"), "webauthn": _("passkey"), None: _("none"), } class ValidatorMixin: """ This is called at import time - so there is no app context. Validators have state - namely self.message - but we need that xlated on a per-request basis. So we want a lazy_string - but we can't create that until we are in an app context. """ def __init__(self, *args, **kwargs): # If the message is available from config[MSG_xx] then it can be xlated. # Otherwise, it will be used as is. if "message" in kwargs: self._original_message = kwargs["message"] del kwargs["message"] else: self._original_message = None super().__init__(*args, **kwargs) def __call__(self, form, field): if self._original_message and ( not is_lazy_string(self.message) and not self.message ): # Creat on first usage within app context. msg = cv("MSG_" + self._original_message, strict=False) if msg: self.message = make_lazy_string(_local_xlate, msg[0]) else: self.message = self._original_message return super().__call__(form, field) class EqualToLocalize(ValidatorMixin, EqualTo): pass class RequiredLocalize(ValidatorMixin, DataRequired): pass class LengthLocalize(ValidatorMixin, Length): pass class EmailValidation: """Simple interface to email_validator. N.B. Side-effect - if valid email, the field.data is set to the normalized value. The 'verify' keyword informs the validator to perform checks to be more sure that the email can actually receive an email (as well as normalize). Set to False - just normalize (for use with identity purposes). """ def __init__(self, *args, **kwargs): self.verify = kwargs.get("verify", False) def __call__(self, form, field): if field.data is None: # pragma: no cover raise ValidationError(get_message("EMAIL_NOT_PROVIDED")[0]) try: if self.verify: field.data = _security.mail_util.validate(field.data) else: field.data = _security.mail_util.normalize(field.data) except EmailValidateException as e: # we stop further validators if email isn't valid. # TODO: email_validator provides some really nice error messages - however # they aren't localized. And there isn't an easy way to add multiple # errors at once. raise StopValidation(e.msg) except ValueError: # Backwards compat - mail_util no longer raises this - but app subclasses # might (and we're making this change in 5.4.3). msg = get_message("INVALID_EMAIL_ADDRESS")[0] raise StopValidation(msg) email_required = RequiredLocalize(message="EMAIL_NOT_PROVIDED") password_required = RequiredLocalize(message="PASSWORD_NOT_PROVIDED") def _local_xlate(text): """LazyStrings need to be evaluated in the context of a request where _security.i18_domain is available. """ return localize_callback(text) def get_form_field_label(key): """This is called during import since form fields are declared as part of class. Thus, can't call 'localize_callback' until we need to actually translate/render form. """ return make_lazy_string(_local_xlate, _default_field_labels.get(key, "")) def get_form_field_xlate(txt): return make_lazy_string(_local_xlate, txt) def valid_user_email(form, field): # Verify email exists in DB - be sure to normalize first. # Side-effect - set form.user if field is valid uia_email = get_identity_attribute("email") form.user = _datastore.find_user( case_insensitive=uia_email.get("case_insensitive", False), email=field.data ) if form.user is None: raise ValidationError(get_message("USER_DOES_NOT_EXIST")[0]) def unique_user_email(form, field): # Verify email not already in DB # Assumes field value already normalized - email_validator does this. uia_email = get_identity_attribute("email") form.existing_email_user = _datastore.find_user( case_insensitive=uia_email.get("case_insensitive", False), email=field.data ) if form.existing_email_user is not None: msg = get_message("EMAIL_ALREADY_ASSOCIATED", email=field.data)[0] raise ValidationError(msg) def username_validator(form, field): # Side-effect - field.data is updated to normalized value. msg, field.data = _security.username_util.validate(field.data) if msg: raise ValidationError(msg) def unique_username(form, field): # Verify username not already in DB # Assumes field value already normalized - username_validator does this. uia_username = get_identity_attribute("username") form.existing_username_user = _datastore.find_user( case_insensitive=uia_username.get("case_insensitive", False), username=field.data, ) if form.existing_username_user is not None: msg = get_message("USERNAME_ALREADY_ASSOCIATED", username=field.data)[0] raise ValidationError(msg) def unique_identity_attribute(form, field): """A validator that checks the field data against all configured :py:data:`SECURITY_USER_IDENTITY_ATTRIBUTES`. This can be used as part of registration. Be aware that the "mapper" function likely also normalizes the input in addition to validating it. :param form: :param field: :return: Nothing; if field data corresponds to an existing User, ValidationError is raised. """ for mapping in cv("USER_IDENTITY_ATTRIBUTES"): attr = list(mapping.keys())[0] details = mapping[attr] idata = details["mapper"](field.data) if idata: if _datastore.find_user( case_insensitive=details.get("case_insensitive", False), **{attr: idata} ): msg = get_message( "IDENTITY_ALREADY_ASSOCIATED", attr=attr, value=idata )[0] raise ValidationError(msg) class Form(BaseForm): def __init__(self, *args, **kwargs): if current_app and current_app.testing: self.TIME_LIMIT = None super().__init__(*args, **kwargs) def generic_message( detailed_msg: str, generic_msg: str, **kwargs: t.Any ) -> tuple[str, str]: if cv("RETURN_GENERIC_RESPONSES"): m, c = get_message(generic_msg, **kwargs) else: m, c = get_message(detailed_msg, **kwargs) return m, c def form_errors_munge(form: Form, fields: dict[str, dict[str, str]]) -> None: """ To support OWASP best practice on unauthenticated endpoints to avoid disclosing whether a user exists or not we need to return generic error messages. Furthermore, WTForms really likes to place errors on the field itself - which is a dead giveaway. We need to move errors from fields to the form.form_errors, and (optionally) replace then with generic msgs. """ if not cv("RETURN_GENERIC_RESPONSES"): # pragma: no cover return for fname, rinfo in fields.items(): field = getattr(form, fname) if field.errors: field.errors = [] # If they want to replace that message with a generic message and place # it in the generic/form level errors - do that. if replace_msg := rinfo.get("replace_msg"): form.form_errors.append(get_message(replace_msg)[0]) class UserEmailFormMixin: email = EmailField( get_form_field_label("email"), render_kw={"autocomplete": "email"}, validators=[email_required, EmailValidation(verify=True), valid_user_email], ) class UniqueEmailFormMixin: email = EmailField( get_form_field_label("email"), render_kw={"autocomplete": "email"}, validators=[email_required, EmailValidation(verify=True), unique_user_email], ) class PasswordFormMixin: password = PasswordField( get_form_field_label("password"), render_kw={"autocomplete": "current-password"}, validators=[password_required], ) class NewPasswordFormMixin: password = PasswordField( get_form_field_label("password"), render_kw={"autocomplete": "new-password"}, validators=[password_required], ) class PasswordConfirmFormMixin: password_confirm = PasswordField( get_form_field_label("retype_password"), render_kw={"autocomplete": "new-password"}, validators=[ EqualToLocalize("password", message="RETYPE_PASSWORD_MISMATCH"), password_required, ], ) class NextFormMixin: next = HiddenField() def validate_next(self, field): if field.data and not validate_redirect_url(field.data): field.data = "" do_flash(*get_message("INVALID_REDIRECT")) raise ValidationError(get_message("INVALID_REDIRECT")[0]) class CodeFormMixin: code = StringField( get_form_field_label("code"), render_kw={ "autocomplete": "one-time-code", "type": "text", "pattern": "[0-9]*", }, validators=[RequiredLocalize()], ) def build_username_field(app): if cv("USERNAME_REQUIRED", app=app): validators = [ RequiredLocalize(message="USERNAME_NOT_PROVIDED"), username_validator, unique_username, ] else: validators = [username_validator, unique_username] return StringField( get_form_field_label("username"), render_kw={"autocomplete": "username"}, validators=validators, ) class RegisterFormMixin: submit = SubmitField(get_form_field_label("register")) # The "username" field is added in init_app if USERNAME_ENABLE is set. # This is just a type hint. username: t.ClassVar[Field] def to_dict(self, only_user): """ Return form data as dictionary :param only_user: bool, if True then only fields that have corresponding members in UserModel are returned :return: dict """ def is_field_and_user_attr(member): if not isinstance(member, Field): return False # If only fields recorded on UserModel should be returned, # perform check on user model, else return True if only_user is True: return hasattr(_datastore.user_model, member.name) else: return True fields = inspect.getmembers(self, is_field_and_user_attr) return {key: value.data for key, value in fields} class SendConfirmationForm(Form, UserEmailFormMixin): """The default send confirmation form""" submit = SubmitField(get_form_field_label("send_confirmation")) def __init__(self, *args: t.Any, **kwargs: t.Any): super().__init__(*args, **kwargs) self.user: UserMixin | None = None # set by valid_user_email if request and request.method == "GET": self.email.data = request.args.get("email", None) def validate(self, **kwargs: t.Any) -> bool: if not super().validate(**kwargs): return False assert self.user is not None if self.user.confirmed_at is not None: assert isinstance(self.email.errors, list) self.email.errors.append(get_message("ALREADY_CONFIRMED")[0]) return False return True class ForgotPasswordForm(Form, UserEmailFormMixin): """The default forgot password form""" submit = SubmitField(get_form_field_label("recover_password")) def __init__(self, *args: t.Any, **kwargs: t.Any): super().__init__(*args, **kwargs) self.requires_confirmation: bool = False self.user: UserMixin | None = None # set by valid_user_email def validate(self, **kwargs: t.Any) -> bool: if not super().validate(**kwargs): return False assert self.user is not None assert isinstance(self.email.errors, list) if not self.user.is_active: self.email.errors.append(get_message("DISABLED_ACCOUNT")[0]) return False if not self.user.is_locked(self.email.errors): return False self.requires_confirmation = requires_confirmation(self.user) if self.requires_confirmation: self.email.errors.append(get_message("CONFIRMATION_REQUIRED")[0]) return False return True class PasswordlessLoginForm(Form): """The passwordless login form""" email = EmailField( get_form_field_label("email"), render_kw={"autocomplete": "email"}, validators=[email_required, EmailValidation(verify=False), valid_user_email], ) submit = SubmitField(get_form_field_label("send_login_link")) def __init__(self, *args: t.Any, **kwargs: t.Any): super().__init__(*args, **kwargs) self.user: UserMixin | None = None # set by valid_user_email def validate(self, **kwargs: t.Any) -> bool: if not super().validate(**kwargs): return False assert self.user is not None assert isinstance(self.email.errors, list) if not self.user.is_active: self.email.errors.append(get_message("DISABLED_ACCOUNT")[0]) return False if not self.user.is_locked(self.email.errors): return False return True class LoginForm(Form, PasswordFormMixin, NextFormMixin): """The default login form. The following fields are defined: * email * username (based on :py:data:`SECURITY_USERNAME_ENABLE`) * password * remember (checkbox) * next * submit The following attributes might be useful for subclasses: * ifield - If a subclass wants to handle identity, it can set self.ifield to the form field that it validated. That will cause the validation logic here around identity to be skipped. The subclass must also set self.user to the found User. * user - as stated above - if subclass does identity check it must set this field. """ # email field - we don't use valid_user_email since for login we must check # user_identity_attributes to ensure 'email' is listed. # If USERNAME_ENABLE is set - this field will be replaced to be Optional() # see build_login_form() email = EmailField( get_form_field_label("email"), render_kw={"autocomplete": "email"}, validators=[email_required, EmailValidation(verify=False)], ) # username is added dynamically based on USERNAME_ENABLED. username: t.ClassVar[Field] remember = BooleanField(get_form_field_label("remember_me")) submit = SubmitField(get_form_field_label("login")) def __init__(self, *args: t.Any, **kwargs: t.Any): super().__init__(*args, **kwargs) if request and not self.next.data: self.next.data = request.args.get("next", "") self.remember.default = cv("DEFAULT_REMEMBER_ME") if _security.recoverable and not self.password.description: html = Markup( f'<a href="{url_for_security("forgot_password")}">' f'{get_message("FORGOT_PASSWORD")[0]}</a>' ) self.password.description = html self.requires_confirmation: bool = False self.user: UserMixin | None = None # ifield can be set by subclasses to skip identity checks. self.ifield: Field | None = None # If True then user has authenticated so we can show detailed errors self.user_authenticated = False def validate(self, **kwargs: t.Any) -> bool: if not super().validate(**kwargs): return False assert self.password.data is not None # validator password_required # Stay clear of accessing 'username' unless we added that field. # Lots of applications have added their own. # To make subclassing easier - if self.ifield has been set we assume # subclass has validated and attempted to look up user. It is also # responsible to deal with USER_IDENTITY_ATTRIBUTES if it cares. if not self.ifield: uia_email = get_identity_attribute("email") # pedantic checks - if app subclasses form, removes email but forgets to # remove "email" from identity_attributes if uia_email and hasattr(self, "email") and self.email and self.email.data: self.ifield = self.email self.user = _datastore.find_user( case_insensitive=uia_email.get("case_insensitive", False), email=self.email.data, ) elif cv("USERNAME_ENABLE"): uia_username = get_identity_attribute("username") if uia_username and self.username.data: self.user = _datastore.find_user( case_insensitive=uia_username.get("case_insensitive", False), username=self.username.data, ) self.ifield = self.username else: # A bit of backwards compat - the old LoginForm just had email and # any errors would be set on that field. if uia_email: self.ifield = self.email assert isinstance(self.password.errors, list) if self.user is None: msg = get_message("USER_DOES_NOT_EXIST")[0] if self.ifield: assert isinstance(self.ifield.errors, list) self.ifield.errors.append(msg) else: self.form_errors.append(msg) # Reduce timing variation between existing and non-existing users hash_password(self.password.data) return False if not self.user.password: # This is result of PASSWORD_REQUIRED=False and UNIFIED_SIGNIN self.user.track_failed_authn("password") self.password.errors.append(get_message("INVALID_PASSWORD")[0]) # Reduce timing variation between existing and non-existing users hash_password(self.password.data) return False self.password.data = _security.password_util.normalize(self.password.data) if not self.user.verify_and_update_password(self.password.data): self.user.track_failed_authn("password") self.password.errors.append(get_message("INVALID_PASSWORD")[0]) return False # At this point the user has successfully authenticated - so it is fine # to return detailed errors. self.user_authenticated = True self.requires_confirmation = requires_confirmation(self.user) assert self.ifield is not None assert isinstance(self.ifield.errors, list) if not self.user.is_active: self.ifield.errors.append(get_message("DISABLED_ACCOUNT")[0]) return False if not self.user.is_locked(self.ifield.errors): return False if self.requires_confirmation: self.ifield.errors.append(get_message("CONFIRMATION_REQUIRED")[0]) return False return True def build_login_form(app, fcls): # Based on app configuration, add optional/configurable fields to the login form # Allow app to override the field using mixins. # Note this is only called (from init_app()) if form is subclassed from ours. # We really don't want to touch the form unless there is a specific option # requested - so that subclasses can change/do what they want (including deleting # email for example). if cv("USERNAME_ENABLE", app): fcls.username = StringField( get_form_field_label("username"), render_kw={"autocomplete": "username"}, validators=[username_validator], ) if hasattr(fcls, "email") and fcls.email: # Make field Optional() # let subclass easily get rid of this # Note that WTForms 'del' operator actually sets this to None fcls.email = EmailField( get_form_field_label("email"), render_kw={"autocomplete": "email"}, validators=[Optional(), EmailValidation(verify=False)], ) class VerifyForm(Form, PasswordFormMixin): """The verify authentication form""" submit = SubmitField(get_form_field_label("verify_password")) def __init__(self, *args: t.Any, user: UserMixin, **kwargs: t.Any): super().__init__(*args, **kwargs) self.user: UserMixin = user def validate(self, **kwargs: t.Any) -> bool: if not super().validate(**kwargs): # pragma: no cover return False assert self.password.data is not None self.password.data = _security.password_util.normalize(self.password.data) assert isinstance(self.password.errors, list) if not self.user.verify_and_update_password(self.password.data): self.user.track_failed_authn("password") self.password.errors.append(get_message("INVALID_PASSWORD")[0]) return False return True class ConfirmRegisterForm(Form, RegisterFormMixin, UniqueEmailFormMixin): """This form is used for registering when 'confirmable' is set. The only difference between this and the other RegisterForm is that this one doesn't require re-typing in the password... We want to support OWASP best-practice around mitigating user enumeration. To that end we run through the entire validation regardless - this allows us to still return important bad-password messages. In the case of an existing email or username - we set form.existing_xx so that the view can decide how to match responses (e.g. json responses always return 200). .. deprecated:: 5.6.0 Replaced with RegisterFormV2 """ # Password optional when Unified Signin enabled. password = PasswordField( get_form_field_label("password"), render_kw={"autocomplete": "new-password"}, ) def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.existing_username_user = None self.existing_email_user = None def validate(self, **kwargs: t.Any) -> bool: failed = False if not super().validate(**kwargs): failed = True # whether a password is required is a config variable (PASSWORD_REQUIRED). # For unified signin there are many other ways to authenticate assert isinstance(self.password.errors, list) if cv("PASSWORD_REQUIRED"): if not self.password.data or not self.password.data.strip(): self.password.errors.append(get_message("PASSWORD_NOT_PROVIDED")[0]) failed = True if self.password.data: # We do explicit validation here for passwords # (rather than write a validator class) for 2 reasons: # 1) We want to control which fields are passed - # sometimes that's current_user # other times it's the registration fields. # 2) We want to be able to return multiple error messages. rfields = {} for k, v in self.data.items(): if hasattr(_datastore.user_model, k): rfields[k] = v del rfields["password"] pbad, self.password.data = _security.password_util.validate( self.password.data, True, **rfields ) if pbad: self.password.errors.extend(pbad) failed = True return not failed class RegisterForm(ConfirmRegisterForm, NextFormMixin): """Register Form .. deprecated:: 5.6.0 Replaced with RegisterFormV2 """ # Password optional when Unified Signin enabled. password_confirm = PasswordField( get_form_field_label("retype_password"), validators=[ EqualToLocalize("password", message="RETYPE_PASSWORD_MISMATCH"), Optional(), ], ) def validate(self, **kwargs: t.Any) -> bool: if not super().validate(**kwargs): return False assert isinstance(self.password_confirm.errors, list) if not cv("UNIFIED_SIGNIN"): # password_confirm required if not self.password_confirm.data or not self.password_confirm.data.strip(): self.password_confirm.errors.append( get_message("PASSWORD_NOT_PROVIDED")[0] ) return False return True def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) if request and not self.next.data: self.next.data = request.args.get("next", "") class RegisterFormV2( Form, UniqueEmailFormMixin, NextFormMixin, NewPasswordFormMixin, PasswordConfirmFormMixin, ): """This form is used for registering. The following fields are defined: * email (required) * password (required if :py:data:`SECURITY_PASSWORD_REQUIRED` is ``True``) * password_confirm (based on :py:data:`SECURITY_PASSWORD_CONFIRM_REQUIRED`) * username (based on :py:data:`SECURITY_USERNAME_ENABLE`) * next Since there are many configuration options that alter which fields and which validators (e.g. Required), some fields are added or changed at Security init_app() time by calling the internal method build_register_form(). We want to support OWASP best-practice around mitigating user enumeration. To that end we run through the entire validation regardless - this allows us to still return important bad-password messages. In the case of an existing email or username - we set form.existing_xx so that the view can decide how to match responses (e.g. json responses always return 200). .. versionadded:: 5.6 """ submit = SubmitField(get_form_field_label("register")) username: t.ClassVar[Field] def to_dict(self, only_user): """ Return form data as dictionary :param only_user: bool, if True then only fields that have corresponding members in UserModel are returned :return: dict """ def is_field_and_user_attr(member): if not isinstance(member, Field): return False # If only fields recorded on UserModel should be returned, # perform check on user model, else return True if only_user is True: return hasattr(_datastore.user_model, member.name) else: return True fields = inspect.getmembers(self, is_field_and_user_attr) return {key: value.data for key, value in fields} def validate(self, **kwargs: t.Any) -> bool: failed = False if not super().validate(**kwargs): failed = True assert isinstance(self.password.errors, list) if self.password.data: # We do explicit validation here for passwords # (rather than write a validator class) for 2 reasons: # 1) We want to control which fields are passed - # sometimes that's current_user # other times it's the registration fields. # 2) We want to be able to return multiple error messages. rfields = {} for k, v in self.data.items(): if hasattr(_datastore.user_model, k): rfields[k] = v del rfields["password"] pbad, self.password.data = _security.password_util.validate( self.password.data, True, **rfields ) if pbad: self.password.errors.extend(pbad) failed = True return not failed def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.existing_username_user = None self.existing_email_user = None if request and not self.next.data: self.next.data = request.args.get("next", "") def build_register_form(app, fcls): # Based on app configuration, add optional/configurable fields to the register form # Allow app to override the field using mixins # Note that this occurs AFTER app might have sub-classed the form if not cv("PASSWORD_REQUIRED", app): # mark password field as Optional fcls.password = PasswordField( label=get_form_field_label("password"), render_kw={"autocomplete": "new-password"}, validators=[Optional()], ) fcls.password_confirm = PasswordField( get_form_field_label("retype_password"), render_kw={"autocomplete": "new-password"}, validators=[ EqualToLocalize("password", message="RETYPE_PASSWORD_MISMATCH"), ], ) if not cv("PASSWORD_CONFIRM_REQUIRED", app=app): fcls.password_confirm = None if cv("USERNAME_ENABLE", app): fcls.username = build_username_field(app=app) class ResetPasswordForm(Form, NewPasswordFormMixin, PasswordConfirmFormMixin): """The default reset password form""" # filled in by caller user: UserMixin submit = SubmitField(get_form_field_label("reset_password")) def validate(self, **kwargs: t.Any) -> bool: if not super().validate(**kwargs): return False assert isinstance(self.password.errors, list) assert self.password.data is not None pbad, self.password.data = _security.password_util.validate( self.password.data, False, user=self.user ) if pbad: self.password.errors.extend(pbad) return False return True class ChangePasswordForm(Form): """The default change password form""" password = PasswordField( get_form_field_label("password"), render_kw={"autocomplete": "current-password"} ) new_password = PasswordField( get_form_field_label("new_password"), render_kw={"autocomplete": "new-password"}, validators=[password_required], ) new_password_confirm = PasswordField( get_form_field_label("retype_password"), render_kw={"autocomplete": "new-password"}, validators=[ EqualToLocalize("new_password", message="RETYPE_PASSWORD_MISMATCH"), password_required, ], ) submit = SubmitField(get_form_field_label("change_password")) def validate(self, **kwargs: t.Any) -> bool: if not super().validate(**kwargs): return False # If user doesn't have a password then the caller (view) has already # verified a current fresh session. assert isinstance(self.password.errors, list) assert isinstance(self.new_password.errors, list) if current_user.password: if not self.password.data or not self.password.data.strip(): self.password.errors.append(get_message("PASSWORD_NOT_PROVIDED")[0]) return False self.password.data = _security.password_util.normalize(self.password.data) if not verify_password(self.password.data, current_user.password): self.password.errors.append(get_message("INVALID_PASSWORD")[0]) return False if self.password.data == self.new_password.data: self.password.errors.append(get_message("PASSWORD_IS_THE_SAME")[0]) return False assert self.new_password.data is not None pbad, self.new_password.data = _security.password_util.validate( self.new_password.data, False, user=current_user ) if pbad: self.new_password.errors.extend(pbad) return False return True class TwoFactorSetupForm(Form): """The Two-factor token validation form""" setup = RadioField( get_form_field_xlate(_("Available Methods")), choices=[ ("disable", get_form_field_xlate(_("Disable two-factor authentication"))), ("email", get_form_field_label("email_method")), ( "authenticator", get_form_field_label("authapp_method"), ), ("sms", get_form_field_label("sms_method")), ], validate_choice=False, ) phone = TelField(get_form_field_label("phone")) submit = SubmitField(get_form_field_label("submit")) def __init__(self, *args: t.Any, **kwargs: t.Any): super().__init__(*args, **kwargs) self.user: UserMixin | None = None # set by view def validate(self, **kwargs: t.Any) -> bool: if not super().validate(**kwargs): # pragma: no cover return False assert self.user is not None choices = list(cv("TWO_FACTOR_ENABLED_METHODS")) assert isinstance(self.setup.errors, list) assert isinstance(self.phone.errors, list) if "email" in choices: # backwards compat choices.append("mail") if not self.user.check_tf_required_setup(): choices.append("disable") if "setup" not in self.data or self.data["setup"] not in choices: self.setup.errors.append(get_message("TWO_FACTOR_METHOD_NOT_AVAILABLE")[0]) return False if self.setup.data == "sms": if not self.phone.data: self.phone.errors.append(get_message("PHONE_INVALID")[0]) return False msg = _security.phone_util.validate_phone_number(self.phone.data) if msg: self.phone.errors.append(msg) return False return True class TwoFactorVerifyCodeForm(Form, CodeFormMixin): """The Two-factor token validation form""" submit = SubmitField(get_form_field_label("submitcode"), id="submit-code") def __init__(self, *args: t.Any, **kwargs: t.Any): super().__init__(*args, **kwargs) # These are set by view. self.window: int = 0 self.primary_method: str = "" self.tf_totp_secret: str = "" self.user: UserMixin | None = None # set by view self.is_setup: bool = False def validate(self, **kwargs: t.Any) -> bool: if not super().validate(**kwargs): # pragma: no cover return False if ( self.primary_method == "google_authenticator" or self.primary_method == "authenticator" ): self.window = cv("TWO_FACTOR_AUTHENTICATOR_VALIDITY") elif self.primary_method == "email" or self.primary_method == "mail": self.window = cv("TWO_FACTOR_MAIL_VALIDITY") elif self.primary_method == "sms": self.window = cv("TWO_FACTOR_SMS_VALIDITY") else: return False # verify entered code with user's totp secret assert self.user is not None assert self.code.data is not None assert isinstance(self.code.errors, list) if not _security.totp_factory.verify_totp( token=self.code.data, totp_secret=self.tf_totp_secret, user=self.user, window=self.window, ): if not self.is_setup: self.user.track_failed_authn("code", True) self.code.errors.append(get_message("TWO_FACTOR_INVALID_TOKEN")[0]) return False return True class TwoFactorRescueForm(Form): """The Two-factor Rescue validation form""" # rescue options - additional options are generated in set_rescue_options() help_setup = RadioField( get_form_field_xlate(_("Trouble Accessing Your Account?/Lost Mobile Device?")), choices=[ ("help", get_form_field_xlate(_("Contact Administrator"))), ], ) submit = SubmitField(get_form_field_label("submit"), id="rescue") class UsernameRecoveryForm(ForgotPasswordForm): """The username recovery form""" submit = SubmitField(get_form_field_label("recover_username")) class DummyForm(Form): """A dummy form for json responses""" def __init__(self, *args: t.Any, **kwargs: t.Any): super().__init__(*args, **kwargs) self.user: UserMixin | None = kwargs.get("user", None) def build_form_from_request(form_name: str, **kwargs: dict[str, t.Any]) -> Form: # helper function for views form_data = None if request.content_length: form_data = MultiDict(request.get_json()) if request.is_json else request.form return build_form( form_name, formdata=form_data, meta=suppress_form_csrf(), **kwargs ) def build_form(form_name, **kwargs): # helper function for views kwargs.setdefault("formdata", None) return _security.forms[form_name].instantiator( form_name, _security.forms[form_name].cls, **kwargs, )