1 from datetime import date
2 from django import forms
3 from django.contrib.auth.forms import AuthenticationForm, UserCreationForm
4 from django.contrib.auth.models import User
5 from django.core.exceptions import ValidationError
6 from django.utils.translation import ugettext_lazy as _
7 from philo.contrib.waldo.tokens import REGISTRATION_TIMEOUT_DAYS
10 LOGIN_FORM_KEY = 'this_is_the_login_form'
11 LoginForm = type('LoginForm', (AuthenticationForm,), {
12 LOGIN_FORM_KEY: forms.BooleanField(widget=forms.HiddenInput, initial=True)
16 class EmailInput(forms.TextInput):
20 class RegistrationForm(UserCreationForm):
21 email = forms.EmailField(widget=EmailInput)
23 def clean_username(self):
24 username = self.cleaned_data['username']
26 # Trivial case: if the username doesn't exist, go for it!
28 user = User.objects.get(username=username)
29 except User.DoesNotExist:
32 if not user.is_active and (date.today() - user.date_joined.date()).days > REGISTRATION_TIMEOUT_DAYS and user.last_login == user.date_joined:
33 # Then this is a user who has not confirmed their registration and whose time is up. Delete the old user and return the username.
37 raise ValidationError(_("A user with that username already exists."))
39 def clean_email(self):
40 if User.objects.filter(email__iexact=self.cleaned_data['email']):
41 raise ValidationError(_('This email is already in use. Please supply a different email address'))
42 return self.cleaned_data['email']
45 username = self.cleaned_data['username']
46 email = self.cleaned_data['email']
47 password = self.cleaned_data['password1']
48 new_user = User.objects.create_user(username, email, password)
49 new_user.is_active = False