2011-04-30 05:18:32 +00:00
|
|
|
import datetime
|
|
|
|
import random
|
|
|
|
import re
|
|
|
|
|
|
|
|
from django.conf import settings
|
2012-04-11 11:48:20 +00:00
|
|
|
|
2011-04-30 05:18:32 +00:00
|
|
|
from django.db import models
|
|
|
|
from django.db import transaction
|
|
|
|
from django.template.loader import render_to_string
|
|
|
|
from django.utils.hashcompat import sha_constructor
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
|
|
|
|
|
|
|
|
SHA1_RE = re.compile('^[a-f0-9]{40}$')
|
|
|
|
|
|
|
|
|
|
|
|
class RegistrationManager(models.Manager):
|
|
|
|
"""
|
|
|
|
Custom manager for the ``RegistrationProfile`` model.
|
|
|
|
|
|
|
|
The methods defined here provide shortcuts for account creation
|
|
|
|
and activation (including generation and emailing of activation
|
|
|
|
keys), and for cleaning out expired inactive accounts.
|
|
|
|
|
|
|
|
"""
|
|
|
|
def activate_user(self, activation_key):
|
|
|
|
"""
|
|
|
|
Validate an activation key and activate the corresponding
|
|
|
|
``User`` if valid.
|
|
|
|
|
|
|
|
If the key is valid and has not expired, return the ``User``
|
|
|
|
after activating.
|
|
|
|
|
|
|
|
If the key is not valid or has expired, return ``False``.
|
|
|
|
|
|
|
|
If the key is valid but the ``User`` is already active,
|
|
|
|
return ``False``.
|
|
|
|
|
|
|
|
To prevent reactivation of an account which has been
|
|
|
|
deactivated by site administrators, the activation key is
|
|
|
|
reset to the string constant ``RegistrationProfile.ACTIVATED``
|
|
|
|
after successful activation.
|
|
|
|
|
|
|
|
"""
|
|
|
|
# Make sure the key we're trying conforms to the pattern of a
|
|
|
|
# SHA1 hash; if it doesn't, no point trying to look it up in
|
|
|
|
# the database.
|
|
|
|
if SHA1_RE.search(activation_key):
|
|
|
|
try:
|
|
|
|
profile = self.get(activation_key=activation_key)
|
|
|
|
except self.model.DoesNotExist:
|
|
|
|
return False
|
|
|
|
if not profile.activation_key_expired():
|
2012-08-07 08:48:26 +00:00
|
|
|
# Activate user
|
|
|
|
try:
|
|
|
|
user = User.objects.get(id=profile.emailuser_id)
|
|
|
|
user.is_active = True
|
|
|
|
user.save()
|
|
|
|
profile.activation_key = self.model.ACTIVATED
|
|
|
|
profile.save()
|
|
|
|
return user
|
|
|
|
except User.DoesNotExist:
|
|
|
|
return False
|
2011-04-30 05:18:32 +00:00
|
|
|
return False
|
2012-04-21 03:05:59 +00:00
|
|
|
|
|
|
|
def create_email_user(self, username, email, password,
|
|
|
|
site, send_email=True, is_active=False):
|
2011-04-30 05:18:32 +00:00
|
|
|
"""
|
|
|
|
Create a new, inactive ``User``, generate a
|
|
|
|
``RegistrationProfile`` and email its activation key to the
|
|
|
|
``User``, returning the new ``User``.
|
|
|
|
|
|
|
|
By default, an activation email will be sent to the new
|
|
|
|
user. To disable this, pass ``send_email=False``.
|
|
|
|
|
|
|
|
"""
|
2012-04-11 11:48:20 +00:00
|
|
|
|
2012-08-07 08:48:26 +00:00
|
|
|
user = User.objects.create_user(username, password, False, False)
|
|
|
|
user.is_active = is_active
|
|
|
|
user.save()
|
2012-04-11 11:48:20 +00:00
|
|
|
|
2012-08-07 08:48:26 +00:00
|
|
|
registration_profile = self.create_profile(user)
|
2011-04-30 05:18:32 +00:00
|
|
|
|
|
|
|
if send_email:
|
|
|
|
registration_profile.send_activation_email(site)
|
|
|
|
|
2012-08-07 08:48:26 +00:00
|
|
|
return user
|
2012-04-21 03:05:59 +00:00
|
|
|
|
|
|
|
def create_inactive_user(self, username, email, password,
|
|
|
|
site, send_email=True):
|
|
|
|
|
|
|
|
return self.create_email_user(username, email, password, site,
|
|
|
|
send_email, is_active=False)
|
|
|
|
create_inactive_user = transaction.commit_on_success(create_inactive_user)
|
|
|
|
|
|
|
|
def create_active_user(self, username, email, password,
|
|
|
|
site, send_email=True):
|
|
|
|
|
|
|
|
return self.create_email_user(username, email, password, site,
|
|
|
|
send_email, is_active=True)
|
2011-04-30 05:18:32 +00:00
|
|
|
create_inactive_user = transaction.commit_on_success(create_inactive_user)
|
|
|
|
|
|
|
|
def create_profile(self, user):
|
|
|
|
"""
|
|
|
|
Create a ``RegistrationProfile`` for a given
|
|
|
|
``User``, and return the ``RegistrationProfile``.
|
|
|
|
|
|
|
|
The activation key for the ``RegistrationProfile`` will be a
|
|
|
|
SHA1 hash, generated from a combination of the ``User``'s
|
|
|
|
username and a random salt.
|
|
|
|
|
|
|
|
"""
|
|
|
|
salt = sha_constructor(str(random.random())).hexdigest()[:5]
|
|
|
|
username = user.username
|
|
|
|
if isinstance(username, unicode):
|
|
|
|
username = username.encode('utf-8')
|
|
|
|
activation_key = sha_constructor(salt+username).hexdigest()
|
2012-04-11 11:48:20 +00:00
|
|
|
return self.create(emailuser_id=user.id,
|
2011-04-30 05:18:32 +00:00
|
|
|
activation_key=activation_key)
|
|
|
|
|
|
|
|
def delete_expired_users(self):
|
|
|
|
"""
|
|
|
|
Remove expired instances of ``RegistrationProfile`` and their
|
|
|
|
associated ``User``s.
|
|
|
|
|
|
|
|
Accounts to be deleted are identified by searching for
|
|
|
|
instances of ``RegistrationProfile`` with expired activation
|
|
|
|
keys, and then checking to see if their associated ``User``
|
|
|
|
instances have the field ``is_active`` set to ``False``; any
|
|
|
|
``User`` who is both inactive and has an expired activation
|
|
|
|
key will be deleted.
|
|
|
|
|
|
|
|
It is recommended that this method be executed regularly as
|
|
|
|
part of your routine site maintenance; this application
|
|
|
|
provides a custom management command which will call this
|
|
|
|
method, accessible as ``manage.py cleanupregistration``.
|
|
|
|
|
|
|
|
Regularly clearing out accounts which have never been
|
|
|
|
activated serves two useful purposes:
|
|
|
|
|
|
|
|
1. It alleviates the ocasional need to reset a
|
|
|
|
``RegistrationProfile`` and/or re-send an activation email
|
|
|
|
when a user does not receive or does not act upon the
|
|
|
|
initial activation email; since the account will be
|
|
|
|
deleted, the user will be able to simply re-register and
|
|
|
|
receive a new activation key.
|
|
|
|
|
|
|
|
2. It prevents the possibility of a malicious user registering
|
|
|
|
one or more accounts and never activating them (thus
|
|
|
|
denying the use of those usernames to anyone else); since
|
|
|
|
those accounts will be deleted, the usernames will become
|
|
|
|
available for use again.
|
|
|
|
|
|
|
|
If you have a troublesome ``User`` and wish to disable their
|
|
|
|
account while keeping it in the database, simply delete the
|
|
|
|
associated ``RegistrationProfile``; an inactive ``User`` which
|
|
|
|
does not have an associated ``RegistrationProfile`` will not
|
|
|
|
be deleted.
|
|
|
|
|
|
|
|
"""
|
|
|
|
for profile in self.all():
|
|
|
|
if profile.activation_key_expired():
|
2012-08-07 08:48:26 +00:00
|
|
|
try:
|
|
|
|
user = User.objects.get(id=profile.emailuser_id)
|
|
|
|
if not user.is_active:
|
|
|
|
user.delete()
|
|
|
|
except User.DoesNotExist:
|
|
|
|
pass
|
|
|
|
|
2011-04-30 05:18:32 +00:00
|
|
|
|
|
|
|
class RegistrationProfile(models.Model):
|
|
|
|
"""
|
|
|
|
A simple profile which stores an activation key for use during
|
|
|
|
user account registration.
|
|
|
|
|
|
|
|
Generally, you will not want to interact directly with instances
|
|
|
|
of this model; the provided manager includes methods
|
|
|
|
for creating and activating new accounts, as well as for cleaning
|
|
|
|
out accounts which have never been activated.
|
|
|
|
|
|
|
|
While it is possible to use this model as the value of the
|
|
|
|
``AUTH_PROFILE_MODULE`` setting, it's not recommended that you do
|
|
|
|
so. This model's sole purpose is to store data temporarily during
|
|
|
|
account registration and activation.
|
|
|
|
|
|
|
|
"""
|
|
|
|
ACTIVATED = u"ALREADY_ACTIVATED"
|
|
|
|
|
2012-04-11 11:48:20 +00:00
|
|
|
# user = models.ForeignKey(User, unique=True, verbose_name=_('user'))
|
|
|
|
emailuser_id = models.IntegerField()
|
2011-04-30 05:18:32 +00:00
|
|
|
activation_key = models.CharField(_('activation key'), max_length=40)
|
|
|
|
|
|
|
|
objects = RegistrationManager()
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
verbose_name = _('registration profile')
|
|
|
|
verbose_name_plural = _('registration profiles')
|
|
|
|
|
|
|
|
def __unicode__(self):
|
2012-04-11 11:48:20 +00:00
|
|
|
return u"Registration information for %s" % self.emailuser_id
|
2011-04-30 05:18:32 +00:00
|
|
|
|
|
|
|
def activation_key_expired(self):
|
|
|
|
"""
|
|
|
|
Determine whether this ``RegistrationProfile``'s activation
|
|
|
|
key has expired, returning a boolean -- ``True`` if the key
|
|
|
|
has expired.
|
|
|
|
|
|
|
|
Key expiration is determined by a two-step process:
|
|
|
|
|
|
|
|
1. If the user has already activated, the key will have been
|
|
|
|
reset to the string constant ``ACTIVATED``. Re-activating
|
|
|
|
is not permitted, and so this method returns ``True`` in
|
|
|
|
this case.
|
|
|
|
|
|
|
|
2. Otherwise, the date the user signed up is incremented by
|
|
|
|
the number of days specified in the setting
|
|
|
|
``ACCOUNT_ACTIVATION_DAYS`` (which should be the number of
|
|
|
|
days after signup during which a user is allowed to
|
|
|
|
activate their account); if the result is less than or
|
|
|
|
equal to the current date, the key has expired and this
|
|
|
|
method returns ``True``.
|
|
|
|
|
|
|
|
"""
|
|
|
|
expiration_date = datetime.timedelta(days=settings.ACCOUNT_ACTIVATION_DAYS)
|
2012-08-07 08:48:26 +00:00
|
|
|
|
|
|
|
try:
|
|
|
|
user = User.objects.get(id=self.emailuser_id)
|
|
|
|
except User.DoesNotExist:
|
|
|
|
return False
|
2012-04-11 11:48:20 +00:00
|
|
|
|
2011-04-30 05:18:32 +00:00
|
|
|
return self.activation_key == self.ACTIVATED or \
|
2012-08-07 08:48:26 +00:00
|
|
|
(datetime.datetime.fromtimestamp(user.ctime/1000000) + expiration_date <= datetime.datetime.now())
|
2012-04-11 11:48:20 +00:00
|
|
|
|
2011-04-30 05:18:32 +00:00
|
|
|
activation_key_expired.boolean = True
|
|
|
|
|
|
|
|
def send_activation_email(self, site):
|
|
|
|
"""
|
|
|
|
Send an activation email to the user associated with this
|
|
|
|
``RegistrationProfile``.
|
|
|
|
|
|
|
|
The activation email will make use of two templates:
|
|
|
|
|
|
|
|
``registration/activation_email_subject.txt``
|
|
|
|
This template will be used for the subject line of the
|
|
|
|
email. Because it is used as the subject line of an email,
|
|
|
|
this template's output **must** be only a single line of
|
|
|
|
text; output longer than one line will be forcibly joined
|
|
|
|
into only a single line.
|
|
|
|
|
|
|
|
``registration/activation_email.txt``
|
|
|
|
This template will be used for the body of the email.
|
|
|
|
|
|
|
|
These templates will each receive the following context
|
|
|
|
variables:
|
|
|
|
|
|
|
|
``activation_key``
|
|
|
|
The activation key for the new account.
|
|
|
|
|
|
|
|
``expiration_days``
|
|
|
|
The number of days remaining during which the account may
|
|
|
|
be activated.
|
|
|
|
|
|
|
|
``site``
|
|
|
|
An object representing the site on which the user
|
|
|
|
registered; depending on whether ``django.contrib.sites``
|
|
|
|
is installed, this may be an instance of either
|
|
|
|
``django.contrib.sites.models.Site`` (if the sites
|
|
|
|
application is installed) or
|
|
|
|
``django.contrib.sites.models.RequestSite`` (if
|
|
|
|
not). Consult the documentation for the Django sites
|
|
|
|
framework for details regarding these objects' interfaces.
|
|
|
|
|
|
|
|
"""
|
|
|
|
ctx_dict = { 'activation_key': self.activation_key,
|
|
|
|
'expiration_days': settings.ACCOUNT_ACTIVATION_DAYS,
|
|
|
|
'site': site,
|
|
|
|
'SITE_ROOT': settings.SITE_ROOT }
|
|
|
|
subject = render_to_string('registration/activation_email_subject.txt',
|
|
|
|
ctx_dict)
|
|
|
|
# Email subject *must not* contain newlines
|
|
|
|
subject = ''.join(subject.splitlines())
|
|
|
|
|
|
|
|
message = render_to_string('registration/activation_email.txt',
|
|
|
|
ctx_dict)
|
|
|
|
|
2012-08-07 08:48:26 +00:00
|
|
|
try:
|
|
|
|
user = User.objects.get(id=self.emailuser_id)
|
|
|
|
user.email_user(subject, message, settings.DEFAULT_FROM_EMAIL)
|
|
|
|
except User.DoesNotExist:
|
|
|
|
pass
|
|
|
|
|
|
|
|
# We put this import here to prevent circular import
|
|
|
|
from seahub.base.accounts import User
|