2021-05-29 18:22:51 +02:00
|
|
|
# -*- coding: UTF-8 -*
|
|
|
|
|
|
|
|
"""Formulaires authentification
|
|
|
|
|
|
|
|
TODO: à revoir complètement pour reprendre ZScoUsers et les pages d'authentification
|
|
|
|
"""
|
|
|
|
|
|
|
|
from flask_wtf import FlaskForm
|
|
|
|
from wtforms import StringField, PasswordField, BooleanField, SubmitField
|
|
|
|
from wtforms.validators import ValidationError, DataRequired, Email, EqualTo
|
2021-10-15 19:17:40 +02:00
|
|
|
from app.auth.models import User, is_valid_password
|
2021-05-29 18:22:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
_ = lambda x: x # sans babel
|
|
|
|
_l = _
|
|
|
|
|
|
|
|
|
|
|
|
class LoginForm(FlaskForm):
|
2021-09-11 15:59:06 +02:00
|
|
|
user_name = StringField(_l("Nom d'utilisateur"), validators=[DataRequired()])
|
|
|
|
password = PasswordField(_l("Mot de passe"), validators=[DataRequired()])
|
|
|
|
remember_me = BooleanField(_l("mémoriser la connexion"))
|
|
|
|
submit = SubmitField(_l("Suivant"))
|
2021-05-29 18:22:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
class UserCreationForm(FlaskForm):
|
2021-09-11 15:59:06 +02:00
|
|
|
user_name = StringField(_l("Nom d'utilisateur"), validators=[DataRequired()])
|
2021-05-29 18:22:51 +02:00
|
|
|
email = StringField(_l("Email"), validators=[DataRequired(), Email()])
|
2021-09-11 15:59:06 +02:00
|
|
|
password = PasswordField(_l("Mot de passe"), validators=[DataRequired()])
|
2021-05-29 18:22:51 +02:00
|
|
|
password2 = PasswordField(
|
2021-09-11 15:59:06 +02:00
|
|
|
_l("Répéter"), validators=[DataRequired(), EqualTo("password")]
|
2021-05-29 18:22:51 +02:00
|
|
|
)
|
2021-09-11 15:59:06 +02:00
|
|
|
submit = SubmitField(_l("Inscrire"))
|
2021-05-29 18:22:51 +02:00
|
|
|
|
2021-06-26 21:57:54 +02:00
|
|
|
def validate_user_name(self, user_name):
|
|
|
|
user = User.query.filter_by(user_name=user_name.data).first()
|
2021-05-29 18:22:51 +02:00
|
|
|
if user is not None:
|
2021-06-26 21:57:54 +02:00
|
|
|
raise ValidationError(_("Please use a different user_name."))
|
2021-05-29 18:22:51 +02:00
|
|
|
|
|
|
|
def validate_email(self, email):
|
|
|
|
user = User.query.filter_by(email=email.data).first()
|
|
|
|
if user is not None:
|
|
|
|
raise ValidationError(_("Please use a different email address."))
|
|
|
|
|
|
|
|
|
|
|
|
class ResetPasswordRequestForm(FlaskForm):
|
2021-10-17 11:19:01 +02:00
|
|
|
email = StringField(
|
|
|
|
_l("Adresse email associée à votre compte ScoDoc:"),
|
|
|
|
validators=[DataRequired(), Email()],
|
|
|
|
)
|
|
|
|
submit = SubmitField(_l("Envoyer"))
|
2021-05-29 18:22:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
class ResetPasswordForm(FlaskForm):
|
2021-09-11 15:59:06 +02:00
|
|
|
password = PasswordField(_l("Mot de passe"), validators=[DataRequired()])
|
2021-05-29 18:22:51 +02:00
|
|
|
password2 = PasswordField(
|
2021-09-11 15:59:06 +02:00
|
|
|
_l("Répéter"), validators=[DataRequired(), EqualTo("password")]
|
2021-05-29 18:22:51 +02:00
|
|
|
)
|
2021-10-15 19:17:40 +02:00
|
|
|
submit = SubmitField(_l("Valider ce mot de passe"))
|
|
|
|
|
|
|
|
def validate_password(self, password):
|
|
|
|
if not is_valid_password(password.data):
|
|
|
|
raise ValidationError(f"Mot de passe trop simple, recommencez")
|
2021-08-28 16:01:41 +02:00
|
|
|
|
|
|
|
|
|
|
|
class DeactivateUserForm(FlaskForm):
|
|
|
|
submit = SubmitField("Modifier l'utilisateur")
|
|
|
|
cancel = SubmitField(label="Annuler", render_kw={"formnovalidate": True})
|