You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
4.3 KiB
122 lines
4.3 KiB
from django import forms
|
|
from django.contrib.auth import get_user_model, password_validation
|
|
from django.contrib.auth.forms import AuthenticationForm, UserCreationForm
|
|
from django.core.exceptions import ValidationError
|
|
from django.forms import widgets
|
|
from django.utils.translation import gettext_lazy as _
|
|
from . import utils
|
|
from .models import BlogUser
|
|
|
|
# 用户登录表单 - 处理用户登录认证
|
|
class LoginForm(AuthenticationForm):
|
|
def __init__(self, *args, **kwargs):
|
|
super(LoginForm, self).__init__(*args, **kwargs)
|
|
self.fields['username'].widget = widgets.TextInput(
|
|
attrs={'placeholder': "username", "class": "form-control"})
|
|
self.fields['password'].widget = widgets.PasswordInput(
|
|
attrs={'placeholder': "password", "class": "form-control"})
|
|
|
|
# 用户注册表单 - 处理新用户注册流程
|
|
class RegisterForm(UserCreationForm):
|
|
def __init__(self, *args, **kwargs):
|
|
super(RegisterForm, self).__init__(*args, **kwargs)
|
|
|
|
self.fields['username'].widget = widgets.TextInput(
|
|
attrs={'placeholder': "username", "class": "form-control"})
|
|
self.fields['email'].widget = widgets.EmailInput(
|
|
attrs={'placeholder': "email", "class": "form-control"})
|
|
self.fields['password1'].widget = widgets.PasswordInput(
|
|
attrs={'placeholder': "password", "class": "form-control"})
|
|
self.fields['password2'].widget = widgets.PasswordInput(
|
|
attrs={'placeholder': "repeat password", "class": "form-control"})
|
|
|
|
def clean_email(self):
|
|
email = self.cleaned_data['email']
|
|
if get_user_model().objects.filter(email=email).exists():
|
|
raise ValidationError(_("email already exists"))
|
|
return email
|
|
|
|
class Meta:
|
|
model = get_user_model()
|
|
fields = ("username", "email")
|
|
|
|
# 密码重置表单 - 处理用户忘记密码时的重置流程
|
|
class ForgetPasswordForm(forms.Form):
|
|
# 新密码字段 - 用户设置的新密码
|
|
new_password1 = forms.CharField(
|
|
label=_("New password"),
|
|
widget=forms.PasswordInput(
|
|
attrs={
|
|
"class": "form-control",
|
|
'placeholder': _("New password")
|
|
}
|
|
),
|
|
)
|
|
# 确认密码字段 - 再次输入新密码用于验证
|
|
new_password2 = forms.CharField(
|
|
label="确认密码",
|
|
widget=forms.PasswordInput(
|
|
attrs={
|
|
"class": "form-control",
|
|
'placeholder': _("Confirm password")
|
|
}
|
|
),
|
|
)
|
|
# 邮箱字段 - 用户注册时使用的邮箱地址
|
|
email = forms.EmailField(
|
|
label='邮箱',
|
|
widget=forms.TextInput(
|
|
attrs={
|
|
'class': 'form-control',
|
|
'placeholder': _("Email")
|
|
}
|
|
),
|
|
)
|
|
# 验证码字段 - 邮箱接收的验证码
|
|
code = forms.CharField(
|
|
label=_('Code'),
|
|
widget=forms.TextInput(
|
|
attrs={
|
|
'class': 'form-control',
|
|
'placeholder': _("Code")
|
|
}
|
|
),
|
|
)
|
|
|
|
# 密码确认验证 - 检查两次输入的密码是否一致
|
|
def clean_new_password2(self):
|
|
password1 = self.data.get("new_password1")
|
|
password2 = self.data.get("new_password2")
|
|
if password1 and password2 and password1 != password2:
|
|
raise ValidationError(_("passwords do not match"))
|
|
password_validation.validate_password(password2)
|
|
|
|
return password2
|
|
|
|
# 邮箱验证 - 检查邮箱是否在系统中注册
|
|
def clean_email(self):
|
|
user_email = self.cleaned_data.get("email")
|
|
if not BlogUser.objects.filter(
|
|
email=user_email
|
|
).exists():
|
|
# todo 这里的报错提示可以判断一个邮箱是不是注册过,如果不想暴露可以修改
|
|
raise ValidationError(_("email does not exist"))
|
|
return user_email
|
|
|
|
# 验证码验证 - 检查邮箱验证码是否正确
|
|
def clean_code(self):
|
|
code = self.cleaned_data.get("code")
|
|
error = utils.verify(
|
|
email=self.cleaned_data.get("email"),
|
|
code=code,
|
|
)
|
|
if error:
|
|
raise ValidationError(error)
|
|
return code
|
|
|
|
# 验证码请求表单 - 用于请求发送密码重置验证码
|
|
class ForgetPasswordCodeForm(forms.Form):
|
|
email = forms.EmailField(
|
|
label=_('Email'),
|
|
)
|