|
# -*- coding: utf-8 -*-
|
|
"""
|
|
:author: Grey Li (李辉)
|
|
:url: http://greyli.com
|
|
:copyright: © 2018 Grey Li <withlihui@gmail.com>
|
|
:license: MIT, see LICENSE for more details.
|
|
"""
|
|
from flask_login import current_user
|
|
from flask_wtf import FlaskForm
|
|
from flask_wtf.file import FileField, FileAllowed, FileRequired
|
|
from wtforms import StringField, PasswordField, SubmitField, BooleanField, TextAreaField, HiddenField, ValidationError
|
|
from wtforms.validators import DataRequired, Length, Email, EqualTo, Optional, Regexp
|
|
|
|
from albumy.models import User
|
|
|
|
|
|
class EditProfileForm(FlaskForm):
|
|
name = StringField('名称', validators=[DataRequired(), Length(1, 30)])
|
|
username = StringField('用户名', validators=[DataRequired(), Length(1, 20),
|
|
Regexp('^[a-zA-Z0-9]*$',
|
|
message='用户名必须包含 a-z, A-Z 或 0-9.')])
|
|
website = StringField('网址', validators=[Optional(), Length(0, 255)])
|
|
location = StringField('城市', validators=[Optional(), Length(0, 50)])
|
|
bio = TextAreaField('个人简介', validators=[Optional(), Length(0, 120)])
|
|
submit = SubmitField('提交')
|
|
|
|
def validate_username(self, field):
|
|
if field.data != current_user.username and User.query.filter_by(username=field.data).first():
|
|
raise ValidationError('该用户名已被注册')
|
|
|
|
|
|
class UploadAvatarForm(FlaskForm):
|
|
image = FileField('上传', validators=[
|
|
FileRequired(),
|
|
FileAllowed(['jpg', 'png'], '文件格式应为 .jpg 或 .png.')
|
|
])
|
|
submit = SubmitField('提交')
|
|
|
|
|
|
class CropAvatarForm(FlaskForm):
|
|
x = HiddenField()
|
|
y = HiddenField()
|
|
w = HiddenField()
|
|
h = HiddenField()
|
|
submit = SubmitField('更新')
|
|
|
|
|
|
class ChangeEmailForm(FlaskForm):
|
|
email = StringField('新邮件', validators=[DataRequired(), Length(1, 254), Email()])
|
|
submit = SubmitField()
|
|
|
|
def validate_email(self, field):
|
|
if User.query.filter_by(email=field.data.lower()).first():
|
|
raise ValidationError('该邮箱已被注册')
|
|
|
|
|
|
class ChangePasswordForm(FlaskForm):
|
|
old_password = PasswordField('旧密码', validators=[DataRequired()])
|
|
password = PasswordField('新密码', validators=[
|
|
DataRequired(), Length(8, 128), EqualTo('password2')])
|
|
password2 = PasswordField('确认密码', validators=[DataRequired()])
|
|
submit = SubmitField('提交')
|
|
|
|
|
|
class NotificationSettingForm(FlaskForm):
|
|
receive_comment_notification = BooleanField('新评论')
|
|
receive_follow_notification = BooleanField('新粉丝')
|
|
receive_collect_notification = BooleanField('新收藏者')
|
|
submit = SubmitField('提交')
|
|
|
|
|
|
class PrivacySettingForm(FlaskForm):
|
|
public_collections = BooleanField('公开我的收藏')
|
|
submit = SubmitField('提交')
|
|
|
|
|
|
class DeleteAccountForm(FlaskForm):
|
|
username = StringField('用户名', validators=[DataRequired(), Length(1, 20)])
|
|
submit = SubmitField('提交')
|
|
|
|
def validate_username(self, field):
|
|
if field.data != current_user.username:
|
|
raise ValidationError('错误的用户名')
|