2015-11-18 08:44:06 +00:00
|
|
|
from django.db import models
|
2015-11-18 16:09:06 +00:00
|
|
|
from django.contrib.auth.models import AbstractBaseUser, PermissionsMixin, UserManager
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from django.utils import timezone
|
2015-11-23 16:23:00 +00:00
|
|
|
from django.core import validators
|
|
|
|
from django.core.exceptions import ValidationError
|
2015-11-19 16:34:11 +00:00
|
|
|
from datetime import datetime
|
2015-11-18 08:44:06 +00:00
|
|
|
|
2015-11-18 16:09:06 +00:00
|
|
|
class User(AbstractBaseUser, PermissionsMixin):
|
|
|
|
"""
|
|
|
|
Defines the base user class, useable in every app
|
2015-11-18 08:44:06 +00:00
|
|
|
|
2015-11-18 16:09:06 +00:00
|
|
|
This is almost the same as the auth module AbstractUser since it inherits from it,
|
|
|
|
but some fields are required, and the username is generated automatically with the
|
|
|
|
name of the user (see generate_username()).
|
2015-11-18 08:44:06 +00:00
|
|
|
|
2015-11-19 16:34:11 +00:00
|
|
|
Added field: nick_name, date_of_birth
|
2015-11-18 16:09:06 +00:00
|
|
|
Required fields: email, first_name, last_name, date_of_birth
|
|
|
|
"""
|
|
|
|
username = models.CharField(
|
|
|
|
_('username'),
|
|
|
|
max_length=254,
|
|
|
|
unique=True,
|
|
|
|
help_text=_('Required. 254 characters or fewer. Letters, digits and @/./+/-/_ only.'),
|
|
|
|
validators=[
|
|
|
|
validators.RegexValidator(
|
|
|
|
r'^[\w.@+-]+$',
|
|
|
|
_('Enter a valid username. This value may contain only '
|
|
|
|
'letters, numbers ' 'and @/./+/-/_ characters.')
|
|
|
|
),
|
|
|
|
],
|
|
|
|
error_messages={
|
|
|
|
'unique': _("A user with that username already exists."),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
first_name = models.CharField(_('first name'), max_length=30)
|
|
|
|
last_name = models.CharField(_('last name'), max_length=30)
|
|
|
|
email = models.EmailField(_('email address'), unique=True)
|
2015-11-22 17:23:21 +00:00
|
|
|
date_of_birth = models.DateTimeField(_('date of birth'))
|
2015-11-18 16:09:06 +00:00
|
|
|
nick_name = models.CharField(max_length=30, blank=True)
|
|
|
|
is_staff = models.BooleanField(
|
|
|
|
_('staff status'),
|
|
|
|
default=False,
|
|
|
|
help_text=_('Designates whether the user can log into this admin site.'),
|
|
|
|
)
|
|
|
|
is_active = models.BooleanField(
|
|
|
|
_('active'),
|
|
|
|
default=True,
|
|
|
|
help_text=_(
|
|
|
|
'Designates whether this user should be treated as active. '
|
|
|
|
'Unselect this instead of deleting accounts.'
|
|
|
|
),
|
|
|
|
)
|
|
|
|
date_joined = models.DateTimeField(_('date joined'), default=timezone.now)
|
|
|
|
|
|
|
|
objects = UserManager()
|
|
|
|
|
|
|
|
USERNAME_FIELD = 'username'
|
2015-11-22 17:23:21 +00:00
|
|
|
REQUIRED_FIELDS = ['email', 'first_name', 'last_name', 'date_of_birth']
|
2015-11-18 16:09:06 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
verbose_name = _('user')
|
|
|
|
verbose_name_plural = _('users')
|
2015-11-18 08:44:06 +00:00
|
|
|
|
|
|
|
def __str__(self):
|
2015-11-18 16:09:06 +00:00
|
|
|
return self.username
|
|
|
|
|
|
|
|
def get_full_name(self):
|
|
|
|
"""
|
|
|
|
Returns the first_name plus the last_name, with a space in between.
|
|
|
|
"""
|
|
|
|
full_name = '%s %s' % (self.first_name, self.last_name)
|
|
|
|
return full_name.strip()
|
|
|
|
|
|
|
|
def get_short_name(self):
|
|
|
|
"Returns the short name for the user."
|
|
|
|
return self.first_name
|
|
|
|
|
2015-11-19 08:46:05 +00:00
|
|
|
def get_display_name(self):
|
|
|
|
"""
|
|
|
|
Returns the display name of the user.
|
|
|
|
A nickname if possible, otherwise, the full name
|
|
|
|
"""
|
|
|
|
if self.nick_name != "":
|
|
|
|
return self.nick_name
|
|
|
|
return self.get_full_name()
|
|
|
|
|
2015-11-18 16:09:06 +00:00
|
|
|
def email_user(self, subject, message, from_email=None, **kwargs):
|
|
|
|
"""
|
|
|
|
Sends an email to this User.
|
|
|
|
"""
|
|
|
|
send_mail(subject, message, from_email, [self.email], **kwargs)
|
|
|
|
|
|
|
|
def generate_username(self):
|
|
|
|
"""
|
|
|
|
Generates a unique username based on the first and last names.
|
|
|
|
For example: Guy Carlier gives gcarlier, and gcarlier1 if the first one exists
|
|
|
|
Returns the generated username
|
|
|
|
"""
|
|
|
|
user_name = str(self.first_name[0]+self.last_name).lower()
|
|
|
|
un_set = [u.username for u in User.objects.all()]
|
|
|
|
if user_name in un_set:
|
|
|
|
i = 1
|
|
|
|
while user_name+str(i) in un_set:
|
|
|
|
i += 1
|
|
|
|
user_name += str(i)
|
|
|
|
self.username = user_name
|
|
|
|
return user_name
|
2015-11-18 08:44:06 +00:00
|
|
|
|
2015-11-20 14:47:01 +00:00
|
|
|
|
2015-11-19 15:28:49 +00:00
|
|
|
class Page(models.Model):
|
2015-11-24 09:53:16 +00:00
|
|
|
"""
|
|
|
|
The page class to build a Wiki
|
|
|
|
Each page may have a parent and it's URL is of the form my.site/page/<grd_pa>/<parent>/<mypage>
|
|
|
|
It has an ID field, but don't use it, since it's only there for DB part, and because compound primary key is
|
|
|
|
awkward!
|
|
|
|
Prefere querying pages with Page.get_page_by_full_name()
|
|
|
|
|
|
|
|
Be careful with the full_name attribute: this field may not be valid until you call save(). It's made for fast
|
|
|
|
query, but don't rely on it when playing with a Page object, use get_full_name() instead!
|
|
|
|
"""
|
2015-11-19 15:28:49 +00:00
|
|
|
name = models.CharField(_('page name'), max_length=30, blank=False)
|
2015-11-24 13:00:41 +00:00
|
|
|
# TODO: move title and content to PageRev class with a OneToOne field
|
2015-11-20 14:47:01 +00:00
|
|
|
title = models.CharField(_("page title"), max_length=255, blank=True)
|
2015-11-19 15:28:49 +00:00
|
|
|
content = models.TextField(_("page content"), blank=True)
|
|
|
|
revision = models.PositiveIntegerField(_("current revision"), default=1)
|
|
|
|
is_locked = models.BooleanField(_("page mutex"), default=False)
|
2015-11-23 12:30:30 +00:00
|
|
|
parent = models.ForeignKey('self', related_name="children", null=True, blank=True, on_delete=models.SET_NULL)
|
2015-11-24 09:53:16 +00:00
|
|
|
# Attention: this field may not be valid until you call save(). It's made for fast query, but don't rely on it when
|
|
|
|
# playing with a Page object, use get_full_name() instead!
|
|
|
|
full_name = models.CharField(_('page name'), max_length=255, blank=True)
|
2015-11-18 08:44:06 +00:00
|
|
|
|
2015-11-19 15:28:49 +00:00
|
|
|
class Meta:
|
2015-11-23 16:23:00 +00:00
|
|
|
unique_together = ('name', 'parent')
|
2015-11-19 15:28:49 +00:00
|
|
|
permissions = (
|
|
|
|
("can_edit", "Can edit the page"),
|
|
|
|
("can_view", "Can view the page"),
|
|
|
|
)
|
|
|
|
|
2015-11-23 16:23:00 +00:00
|
|
|
@staticmethod
|
|
|
|
def get_page_by_full_name(name):
|
2015-11-24 09:53:16 +00:00
|
|
|
"""
|
|
|
|
Quicker to get a page with that method rather than building the request every time
|
|
|
|
"""
|
|
|
|
return Page.objects.filter(full_name=name).first()
|
2015-11-23 16:23:00 +00:00
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(Page, self).__init__(*args, **kwargs)
|
|
|
|
|
|
|
|
def clean(self):
|
|
|
|
"""
|
2015-11-24 09:53:16 +00:00
|
|
|
Cleans up only the name for the moment, but this can be used to make any treatment before saving the object
|
2015-11-23 16:23:00 +00:00
|
|
|
"""
|
|
|
|
if '/' in self.name:
|
|
|
|
self.name = self.name.split('/')[-1]
|
2015-11-24 09:53:16 +00:00
|
|
|
if Page.objects.exclude(pk=self.pk).filter(full_name=self.get_full_name()).exists():
|
|
|
|
raise ValidationError(
|
|
|
|
_('Duplicate page'),
|
|
|
|
code='duplicate',
|
|
|
|
)
|
2015-11-23 16:23:00 +00:00
|
|
|
super(Page, self).clean()
|
|
|
|
|
|
|
|
def save(self, *args, **kwargs):
|
|
|
|
self.full_clean()
|
2015-11-24 09:53:16 +00:00
|
|
|
# This reset the full_name just before saving to maintain a coherent field quicker for queries than the
|
|
|
|
# recursive method
|
2015-11-24 13:00:41 +00:00
|
|
|
# It also update all the children to maintain correct names
|
2015-11-24 09:53:16 +00:00
|
|
|
self.full_name = self.get_full_name()
|
2015-11-24 13:00:41 +00:00
|
|
|
for c in self.children.all():
|
|
|
|
c.save()
|
2015-11-23 16:23:00 +00:00
|
|
|
super(Page, self).save(*args, **kwargs)
|
|
|
|
|
2015-11-19 15:28:49 +00:00
|
|
|
def __str__(self):
|
2015-11-23 16:23:00 +00:00
|
|
|
return self.get_full_name()
|
|
|
|
|
|
|
|
def get_full_name(self):
|
2015-11-24 09:53:16 +00:00
|
|
|
"""
|
|
|
|
Computes the real full_name of the page based on its name and its parent's name
|
|
|
|
You can and must rely on this function when working on a page object that is not freshly fetched from the DB
|
|
|
|
(For example when treating a Page object coming from a form)
|
|
|
|
"""
|
2015-11-23 16:32:31 +00:00
|
|
|
if self.parent is None:
|
|
|
|
return self.name
|
|
|
|
return '/'.join([self.parent.get_full_name(), self.name])
|
2015-11-20 14:47:01 +00:00
|
|
|
|
|
|
|
def get_display_name(self):
|
2015-11-23 16:32:31 +00:00
|
|
|
return self.get_full_name()
|
2015-11-18 08:44:06 +00:00
|
|
|
|