-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.py
107 lines (82 loc) · 3.35 KB
/
forms.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
from django import forms
from django.contrib.auth import get_user_model
from django.contrib.auth.forms import ReadOnlyPasswordHashField
from django.utils.translation import ugettext_lazy as _
from .conf import settings
from .fields import HoneyPotField, PasswordField, UsersEmailField
class UserCreationForm(forms.ModelForm):
error_messages = {
'duplicate_email': _('A user with that email already exists.'),
'password_mismatch': _('The two password fields didn\'t match.'),
}
email = UsersEmailField(label=_('Email Address'), max_length=255)
password1 = PasswordField(label=_('Password'))
password2 = PasswordField(
label=_('Password Confirmation'),
help_text=_('Enter the same password as above, for verification.'))
class Meta:
model = get_user_model()
fields = ('email',)
def clean_email(self):
# Since User.email is unique, this check is redundant,
# but it sets a nicer error message than the ORM. See #13147.
email = self.cleaned_data['email']
try:
get_user_model()._default_manager.get(email=email)
except get_user_model().DoesNotExist:
return email
raise forms.ValidationError(
self.error_messages['duplicate_email'],
code='duplicate_email',
)
def clean_password2(self):
password1 = self.cleaned_data.get('password1')
password2 = self.cleaned_data.get('password2')
if password1 and password2 and password1 != password2:
raise forms.ValidationError(
self.error_messages['password_mismatch'],
code='password_mismatch',
)
return password2
def save(self, commit=True):
user = super(UserCreationForm, self).save(commit=False)
user.set_password(self.cleaned_data['password1'])
user.is_active = not settings.USERS_VERIFY_EMAIL
if commit:
user.save()
return user
class UserChangeForm(forms.ModelForm):
password = ReadOnlyPasswordHashField(label=_('Password'), help_text=_(
'Raw passwords are not stored, so there is no way to see '
'this user\'s password, but you can change the password '
'using <a href=\"password/\">this form</a>.'))
class Meta:
model = get_user_model()
exclude = ()
def __init__(self, *args, **kwargs):
super(UserChangeForm, self).__init__(*args, **kwargs)
f = self.fields.get('user_permissions', None)
if f is not None:
f.queryset = f.queryset.select_related('content_type')
def clean_password(self):
return self.initial['password']
class RegistrationForm(UserCreationForm):
error_css_class = 'error'
required_css_class = 'required'
class RegistrationFormTermsOfService(RegistrationForm):
"""
Subclass of ``RegistrationForm`` which adds a required checkbox
for agreeing to a site's Terms of Service.
"""
tos = forms.BooleanField(
label=_('I have read and agree to the Terms of Service'),
widget=forms.CheckboxInput,
error_messages={
'required': _('You must agree to the terms to register')
})
class RegistrationFormHoneypot(RegistrationForm):
"""
Subclass of ``RegistrationForm`` which adds a honeypot field
for Spam Prevention
"""
accept_terms = HoneyPotField()