2017-04-24 15:51:12 +00:00
|
|
|
# -*- coding:utf-8 -*
|
|
|
|
#
|
2018-02-22 21:19:17 +00:00
|
|
|
# Copyright 2016,2017,2018
|
2017-04-24 15:51:12 +00:00
|
|
|
# - Skia <skia@libskia.so>
|
2017-11-05 23:22:25 +00:00
|
|
|
# - Sli <antoine@bartuccio.fr>
|
2017-04-24 15:51:12 +00:00
|
|
|
#
|
|
|
|
# Ce fichier fait partie du site de l'Association des Étudiants de l'UTBM,
|
|
|
|
# http://ae.utbm.fr.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify it under
|
|
|
|
# the terms of the GNU General Public License a published by the Free Software
|
|
|
|
# Foundation; either version 3 of the License, or (at your option) any later
|
|
|
|
# version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
# details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License along with
|
|
|
|
# this program; if not, write to the Free Sofware Foundation, Inc., 59 Temple
|
|
|
|
# Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#
|
|
|
|
#
|
2017-09-06 11:16:28 +00:00
|
|
|
import importlib
|
2017-04-24 15:51:12 +00:00
|
|
|
|
2015-11-18 08:44:06 +00:00
|
|
|
from django.db import models
|
2016-10-21 11:09:46 +00:00
|
|
|
from django.core.mail import send_mail
|
2018-10-04 19:29:19 +00:00
|
|
|
from django.contrib.auth.models import (
|
|
|
|
AbstractBaseUser,
|
|
|
|
PermissionsMixin,
|
|
|
|
UserManager,
|
|
|
|
Group as AuthGroup,
|
|
|
|
GroupManager as AuthGroupManager,
|
|
|
|
AnonymousUser as AuthAnonymousUser,
|
|
|
|
)
|
2015-11-18 16:09:06 +00:00
|
|
|
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
|
2017-06-12 11:58:35 +00:00
|
|
|
from django.core.exceptions import ValidationError, PermissionDenied
|
2019-10-06 11:28:56 +00:00
|
|
|
from django.urls import reverse
|
2015-12-14 14:43:30 +00:00
|
|
|
from django.conf import settings
|
2016-08-10 14:23:12 +00:00
|
|
|
from django.db import transaction
|
2016-08-20 00:55:48 +00:00
|
|
|
from django.contrib.staticfiles.storage import staticfiles_storage
|
|
|
|
from django.utils.html import escape
|
2017-02-24 00:50:14 +00:00
|
|
|
from django.utils.functional import cached_property
|
|
|
|
|
2017-03-30 17:13:47 +00:00
|
|
|
import os
|
|
|
|
|
2016-08-13 03:33:09 +00:00
|
|
|
from phonenumber_field.modelfields import PhoneNumberField
|
|
|
|
|
2016-08-11 02:24:32 +00:00
|
|
|
from datetime import datetime, timedelta, date
|
2015-11-18 08:44:06 +00:00
|
|
|
|
2016-02-02 09:57:55 +00:00
|
|
|
import unicodedata
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-03-29 10:45:10 +00:00
|
|
|
class RealGroupManager(AuthGroupManager):
|
|
|
|
def get_queryset(self):
|
|
|
|
return super(RealGroupManager, self).get_queryset().filter(is_meta=False)
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-03-29 10:45:10 +00:00
|
|
|
class MetaGroupManager(AuthGroupManager):
|
|
|
|
def get_queryset(self):
|
|
|
|
return super(MetaGroupManager, self).get_queryset().filter(is_meta=True)
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2015-12-03 15:47:03 +00:00
|
|
|
class Group(AuthGroup):
|
2016-03-29 10:45:10 +00:00
|
|
|
is_meta = models.BooleanField(
|
2018-10-04 19:29:19 +00:00
|
|
|
_("meta group status"),
|
2016-03-29 10:45:10 +00:00
|
|
|
default=False,
|
2018-10-04 19:29:19 +00:00
|
|
|
help_text=_("Whether a group is a meta group or not"),
|
2016-03-29 10:45:10 +00:00
|
|
|
)
|
2018-10-04 19:29:19 +00:00
|
|
|
description = models.CharField(_("description"), max_length=60)
|
2017-03-24 08:19:15 +00:00
|
|
|
|
|
|
|
class Meta:
|
2018-10-04 19:29:19 +00:00
|
|
|
ordering = ["name"]
|
2017-03-24 08:19:15 +00:00
|
|
|
|
2015-12-03 15:47:03 +00:00
|
|
|
def get_absolute_url(self):
|
|
|
|
"""
|
|
|
|
This is needed for black magic powered UpdateView's children
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
return reverse("core:group_list")
|
2015-12-03 15:47:03 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-03-29 10:45:10 +00:00
|
|
|
class MetaGroup(Group):
|
|
|
|
objects = MetaGroupManager()
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-03-29 10:45:10 +00:00
|
|
|
class Meta:
|
|
|
|
proxy = True
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(MetaGroup, self).__init__(*args, **kwargs)
|
|
|
|
self.is_meta = True
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-03-29 10:45:10 +00:00
|
|
|
class RealGroup(Group):
|
|
|
|
objects = RealGroupManager()
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-03-29 10:45:10 +00:00
|
|
|
class Meta:
|
|
|
|
proxy = True
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-08-11 02:24:32 +00:00
|
|
|
def validate_promo(value):
|
|
|
|
start_year = settings.SITH_SCHOOL_START_YEAR
|
2017-06-12 07:42:03 +00:00
|
|
|
delta = (date.today() + timedelta(days=180)).year - start_year
|
2016-08-11 02:24:32 +00:00
|
|
|
if value < 0 or delta < value:
|
|
|
|
raise ValidationError(
|
2018-10-04 19:29:19 +00:00
|
|
|
_("%(value)s is not a valid promo (between 0 and %(end)s)"),
|
|
|
|
params={"value": value, "end": delta},
|
2016-08-11 02:24:32 +00:00
|
|
|
)
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-07-17 22:47:56 +00:00
|
|
|
class User(AbstractBaseUser):
|
2015-11-18 16:09:06 +00:00
|
|
|
"""
|
|
|
|
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
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2015-11-18 16:09:06 +00:00
|
|
|
username = models.CharField(
|
2018-10-04 19:29:19 +00:00
|
|
|
_("username"),
|
2015-11-18 16:09:06 +00:00
|
|
|
max_length=254,
|
|
|
|
unique=True,
|
2018-10-04 19:29:19 +00:00
|
|
|
help_text=_(
|
|
|
|
"Required. 254 characters or fewer. Letters, digits and ./+/-/_ only."
|
|
|
|
),
|
2015-11-18 16:09:06 +00:00
|
|
|
validators=[
|
|
|
|
validators.RegexValidator(
|
2018-10-04 19:29:19 +00:00
|
|
|
r"^[\w.+-]+$",
|
|
|
|
_(
|
|
|
|
"Enter a valid username. This value may contain only "
|
|
|
|
"letters, numbers "
|
|
|
|
"and ./+/-/_ characters."
|
|
|
|
),
|
|
|
|
)
|
2015-11-18 16:09:06 +00:00
|
|
|
],
|
2018-10-04 19:29:19 +00:00
|
|
|
error_messages={"unique": _("A user with that username already exists.")},
|
2015-11-18 16:09:06 +00:00
|
|
|
)
|
2018-10-04 19:29:19 +00:00
|
|
|
first_name = models.CharField(_("first name"), max_length=64)
|
|
|
|
last_name = models.CharField(_("last name"), max_length=64)
|
|
|
|
email = models.EmailField(_("email address"), unique=True)
|
|
|
|
date_of_birth = models.DateField(_("date of birth"), blank=True, null=True)
|
|
|
|
nick_name = models.CharField(_("nick name"), max_length=64, null=True, blank=True)
|
2015-11-18 16:09:06 +00:00
|
|
|
is_staff = models.BooleanField(
|
2018-10-04 19:29:19 +00:00
|
|
|
_("staff status"),
|
2015-11-18 16:09:06 +00:00
|
|
|
default=False,
|
2018-10-04 19:29:19 +00:00
|
|
|
help_text=_("Designates whether the user can log into this admin site."),
|
2015-11-18 16:09:06 +00:00
|
|
|
)
|
|
|
|
is_active = models.BooleanField(
|
2018-10-04 19:29:19 +00:00
|
|
|
_("active"),
|
2015-11-18 16:09:06 +00:00
|
|
|
default=True,
|
|
|
|
help_text=_(
|
2018-10-04 19:29:19 +00:00
|
|
|
"Designates whether this user should be treated as active. "
|
|
|
|
"Unselect this instead of deleting accounts."
|
2015-11-18 16:09:06 +00:00
|
|
|
),
|
|
|
|
)
|
2018-10-04 19:29:19 +00:00
|
|
|
date_joined = models.DateField(_("date joined"), auto_now_add=True)
|
|
|
|
last_update = models.DateTimeField(_("last update"), auto_now=True)
|
2016-07-17 22:47:56 +00:00
|
|
|
is_superuser = models.BooleanField(
|
2018-10-04 19:29:19 +00:00
|
|
|
_("superuser"),
|
2016-07-17 22:47:56 +00:00
|
|
|
default=False,
|
2018-10-04 19:29:19 +00:00
|
|
|
help_text=_("Designates whether this user is a superuser. "),
|
|
|
|
)
|
|
|
|
groups = models.ManyToManyField(RealGroup, related_name="users", blank=True)
|
|
|
|
home = models.OneToOneField(
|
|
|
|
"SithFile",
|
|
|
|
related_name="home_of",
|
|
|
|
verbose_name=_("home"),
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
|
|
|
on_delete=models.SET_NULL,
|
|
|
|
)
|
|
|
|
profile_pict = models.OneToOneField(
|
|
|
|
"SithFile",
|
|
|
|
related_name="profile_of",
|
|
|
|
verbose_name=_("profile"),
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
|
|
|
on_delete=models.SET_NULL,
|
|
|
|
)
|
|
|
|
avatar_pict = models.OneToOneField(
|
|
|
|
"SithFile",
|
|
|
|
related_name="avatar_of",
|
|
|
|
verbose_name=_("avatar"),
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
|
|
|
on_delete=models.SET_NULL,
|
|
|
|
)
|
|
|
|
scrub_pict = models.OneToOneField(
|
|
|
|
"SithFile",
|
|
|
|
related_name="scrub_of",
|
|
|
|
verbose_name=_("scrub"),
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
|
|
|
on_delete=models.SET_NULL,
|
|
|
|
)
|
|
|
|
sex = models.CharField(
|
|
|
|
_("sex"),
|
|
|
|
max_length=10,
|
|
|
|
choices=[("MAN", _("Man")), ("WOMAN", _("Woman"))],
|
|
|
|
default="MAN",
|
|
|
|
)
|
|
|
|
tshirt_size = models.CharField(
|
|
|
|
_("tshirt size"),
|
|
|
|
max_length=5,
|
|
|
|
choices=[
|
|
|
|
("-", _("-")),
|
|
|
|
("XS", _("XS")),
|
|
|
|
("S", _("S")),
|
|
|
|
("M", _("M")),
|
|
|
|
("L", _("L")),
|
|
|
|
("XL", _("XL")),
|
|
|
|
("XXL", _("XXL")),
|
|
|
|
("XXXL", _("XXXL")),
|
|
|
|
],
|
|
|
|
default="-",
|
|
|
|
)
|
|
|
|
role = models.CharField(
|
|
|
|
_("role"),
|
|
|
|
max_length=15,
|
|
|
|
choices=[
|
|
|
|
("STUDENT", _("Student")),
|
|
|
|
("ADMINISTRATIVE", _("Administrative agent")),
|
|
|
|
("TEACHER", _("Teacher")),
|
|
|
|
("AGENT", _("Agent")),
|
|
|
|
("DOCTOR", _("Doctor")),
|
|
|
|
("FORMER STUDENT", _("Former student")),
|
|
|
|
("SERVICE", _("Service")),
|
|
|
|
],
|
|
|
|
blank=True,
|
|
|
|
default="",
|
|
|
|
)
|
|
|
|
department = models.CharField(
|
|
|
|
_("department"),
|
|
|
|
max_length=15,
|
|
|
|
choices=settings.SITH_PROFILE_DEPARTMENTS,
|
|
|
|
default="NA",
|
|
|
|
blank=True,
|
|
|
|
)
|
|
|
|
dpt_option = models.CharField(
|
|
|
|
_("dpt option"), max_length=32, blank=True, default=""
|
2016-07-17 22:47:56 +00:00
|
|
|
)
|
2016-08-13 03:33:09 +00:00
|
|
|
semester = models.CharField(_("semester"), max_length=5, blank=True, default="")
|
|
|
|
quote = models.CharField(_("quote"), max_length=256, blank=True, default="")
|
|
|
|
school = models.CharField(_("school"), max_length=80, blank=True, default="")
|
2018-10-04 19:29:19 +00:00
|
|
|
promo = models.IntegerField(
|
|
|
|
_("promo"), validators=[validate_promo], null=True, blank=True
|
|
|
|
)
|
|
|
|
forum_signature = models.TextField(
|
|
|
|
_("forum signature"), max_length=256, blank=True, default=""
|
|
|
|
)
|
|
|
|
second_email = models.EmailField(_("second email address"), null=True, blank=True)
|
2016-08-13 03:33:09 +00:00
|
|
|
phone = PhoneNumberField(_("phone"), null=True, blank=True)
|
|
|
|
parent_phone = PhoneNumberField(_("parent phone"), null=True, blank=True)
|
|
|
|
address = models.CharField(_("address"), max_length=128, blank=True, default="")
|
2018-10-04 19:29:19 +00:00
|
|
|
parent_address = models.CharField(
|
|
|
|
_("parent address"), max_length=128, blank=True, default=""
|
|
|
|
)
|
|
|
|
is_subscriber_viewable = models.BooleanField(
|
|
|
|
_("is subscriber viewable"), default=True
|
|
|
|
)
|
|
|
|
godfathers = models.ManyToManyField("User", related_name="godchildren", blank=True)
|
2015-11-18 16:09:06 +00:00
|
|
|
|
|
|
|
objects = UserManager()
|
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
USERNAME_FIELD = "username"
|
2016-07-05 23:09:31 +00:00
|
|
|
# REQUIRED_FIELDS = ['email']
|
2015-11-18 16:09:06 +00:00
|
|
|
|
2016-07-20 14:34:18 +00:00
|
|
|
def has_module_perms(self, package_name):
|
|
|
|
return self.is_active
|
|
|
|
|
|
|
|
def has_perm(self, perm, obj=None):
|
|
|
|
return self.is_active and self.is_superuser
|
|
|
|
|
2015-11-26 15:32:56 +00:00
|
|
|
def get_absolute_url(self):
|
|
|
|
"""
|
|
|
|
This is needed for black magic powered UpdateView's children
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
return reverse("core:user_profile", kwargs={"user_id": self.pk})
|
2015-11-26 15:32:56 +00:00
|
|
|
|
2015-11-18 08:44:06 +00:00
|
|
|
def __str__(self):
|
2016-12-19 18:58:51 +00:00
|
|
|
return self.get_display_name()
|
2015-11-18 16:09:06 +00:00
|
|
|
|
2015-11-24 14:52:27 +00:00
|
|
|
def to_dict(self):
|
|
|
|
return self.__dict__
|
|
|
|
|
2017-02-24 01:59:59 +00:00
|
|
|
@cached_property
|
2016-12-12 15:35:52 +00:00
|
|
|
def was_subscribed(self):
|
|
|
|
return self.subscriptions.exists()
|
|
|
|
|
2017-02-24 01:59:59 +00:00
|
|
|
@cached_property
|
2016-12-10 00:58:30 +00:00
|
|
|
def is_subscribed(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
s = self.subscriptions.filter(
|
|
|
|
subscription_start__lte=timezone.now(), subscription_end__gte=timezone.now()
|
|
|
|
)
|
2017-11-15 15:46:43 +00:00
|
|
|
return s.exists()
|
2016-12-10 00:58:30 +00:00
|
|
|
|
2017-05-20 10:37:18 +00:00
|
|
|
_club_memberships = {}
|
|
|
|
_group_names = {}
|
|
|
|
_group_ids = {}
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-03-15 17:26:03 +00:00
|
|
|
def is_in_group(self, group_name):
|
2016-10-26 17:21:19 +00:00
|
|
|
"""If the user is in the group passed in argument (as string or by id)"""
|
2016-12-10 00:29:56 +00:00
|
|
|
group_id = 0
|
2016-12-11 16:51:44 +00:00
|
|
|
g = None
|
2017-06-12 07:42:03 +00:00
|
|
|
if isinstance(group_name, int): # Handle the case where group_name is an ID
|
2017-05-20 10:37:18 +00:00
|
|
|
if group_name in User._group_ids.keys():
|
|
|
|
g = User._group_ids[group_name]
|
|
|
|
else:
|
|
|
|
g = Group.objects.filter(id=group_name).first()
|
|
|
|
User._group_ids[group_name] = g
|
2016-12-11 16:51:44 +00:00
|
|
|
else:
|
2017-05-20 10:37:18 +00:00
|
|
|
if group_name in User._group_names.keys():
|
|
|
|
g = User._group_names[group_name]
|
|
|
|
else:
|
|
|
|
g = Group.objects.filter(name=group_name).first()
|
|
|
|
User._group_names[group_name] = g
|
2016-12-11 16:51:44 +00:00
|
|
|
if g:
|
|
|
|
group_name = g.name
|
|
|
|
group_id = g.id
|
|
|
|
else:
|
|
|
|
return False
|
2016-12-10 00:29:56 +00:00
|
|
|
if group_id == settings.SITH_GROUP_PUBLIC_ID:
|
2016-03-22 16:46:26 +00:00
|
|
|
return True
|
2017-01-21 03:51:37 +00:00
|
|
|
if group_id == settings.SITH_GROUP_SUBSCRIBERS_ID:
|
2017-02-24 01:59:59 +00:00
|
|
|
return self.is_subscribed
|
2017-01-21 03:51:37 +00:00
|
|
|
if group_id == settings.SITH_GROUP_OLD_SUBSCRIBERS_ID:
|
2017-02-24 01:59:59 +00:00
|
|
|
return self.was_subscribed
|
2018-10-04 19:29:19 +00:00
|
|
|
if (
|
|
|
|
group_name == settings.SITH_MAIN_MEMBERS_GROUP
|
|
|
|
): # We check the subscription if asked
|
2017-02-24 01:59:59 +00:00
|
|
|
return self.is_subscribed
|
2018-10-04 19:29:19 +00:00
|
|
|
if group_name[-len(settings.SITH_BOARD_SUFFIX) :] == settings.SITH_BOARD_SUFFIX:
|
|
|
|
name = group_name[: -len(settings.SITH_BOARD_SUFFIX)]
|
2017-05-20 10:37:18 +00:00
|
|
|
if name in User._club_memberships.keys():
|
|
|
|
mem = User._club_memberships[name]
|
|
|
|
else:
|
|
|
|
from club.models import Club
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2017-05-20 10:37:18 +00:00
|
|
|
c = Club.objects.filter(unix_name=name).first()
|
|
|
|
mem = c.get_membership_for(self)
|
|
|
|
User._club_memberships[name] = mem
|
2016-08-10 12:48:18 +00:00
|
|
|
if mem:
|
|
|
|
return mem.role > settings.SITH_MAXIMUM_FREE_ROLE
|
|
|
|
return False
|
2018-10-04 19:29:19 +00:00
|
|
|
if (
|
|
|
|
group_name[-len(settings.SITH_MEMBER_SUFFIX) :]
|
|
|
|
== settings.SITH_MEMBER_SUFFIX
|
|
|
|
):
|
|
|
|
name = group_name[: -len(settings.SITH_MEMBER_SUFFIX)]
|
2017-05-20 10:37:18 +00:00
|
|
|
if name in User._club_memberships.keys():
|
|
|
|
mem = User._club_memberships[name]
|
|
|
|
else:
|
|
|
|
from club.models import Club
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2017-05-20 10:37:18 +00:00
|
|
|
c = Club.objects.filter(unix_name=name).first()
|
|
|
|
mem = c.get_membership_for(self)
|
|
|
|
User._club_memberships[name] = mem
|
2016-08-10 12:48:18 +00:00
|
|
|
if mem:
|
|
|
|
return True
|
|
|
|
return False
|
2016-12-10 00:29:56 +00:00
|
|
|
if group_id == settings.SITH_GROUP_ROOT_ID and self.is_superuser:
|
2016-05-11 15:54:00 +00:00
|
|
|
return True
|
2018-12-13 17:11:06 +00:00
|
|
|
return group_name in self.cached_groups_names
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def cached_groups_names(self):
|
|
|
|
return [g.name for g in self.groups.all()]
|
2016-03-15 17:26:03 +00:00
|
|
|
|
2017-02-24 00:50:14 +00:00
|
|
|
@cached_property
|
2016-08-13 15:15:45 +00:00
|
|
|
def is_root(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
return (
|
|
|
|
self.is_superuser
|
|
|
|
or self.groups.filter(id=settings.SITH_GROUP_ROOT_ID).exists()
|
|
|
|
)
|
2016-08-13 15:15:45 +00:00
|
|
|
|
2017-02-24 00:50:14 +00:00
|
|
|
@cached_property
|
2016-09-22 11:07:22 +00:00
|
|
|
def is_board_member(self):
|
2016-09-21 11:33:02 +00:00
|
|
|
from club.models import Club
|
2018-10-04 19:29:19 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
Club.objects.filter(unix_name=settings.SITH_MAIN_CLUB["unix_name"])
|
|
|
|
.first()
|
|
|
|
.has_rights_in_club(self)
|
|
|
|
)
|
2017-07-21 22:40:51 +00:00
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def can_create_subscription(self):
|
|
|
|
from club.models import Club
|
2018-10-04 19:29:19 +00:00
|
|
|
|
|
|
|
for club in Club.objects.filter(
|
|
|
|
id__in=settings.SITH_CAN_CREATE_SUBSCRIPTIONS
|
|
|
|
).all():
|
2017-07-21 22:40:51 +00:00
|
|
|
if club.has_rights_in_club(self):
|
|
|
|
return True
|
|
|
|
return False
|
2016-09-22 11:00:00 +00:00
|
|
|
|
2017-02-24 00:50:14 +00:00
|
|
|
@cached_property
|
2016-09-22 11:07:22 +00:00
|
|
|
def is_launderette_manager(self):
|
2016-09-22 11:00:00 +00:00
|
|
|
from club.models import Club
|
2018-10-04 19:29:19 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
Club.objects.filter(
|
|
|
|
unix_name=settings.SITH_LAUNDERETTE_MANAGER["unix_name"]
|
|
|
|
)
|
|
|
|
.first()
|
|
|
|
.get_membership_for(self)
|
|
|
|
)
|
2016-09-21 11:33:02 +00:00
|
|
|
|
2017-02-24 00:50:14 +00:00
|
|
|
@cached_property
|
2016-10-16 01:45:06 +00:00
|
|
|
def is_banned_alcohol(self):
|
2016-12-10 00:29:56 +00:00
|
|
|
return self.is_in_group(settings.SITH_GROUP_BANNED_ALCOHOL_ID)
|
2016-10-16 01:45:06 +00:00
|
|
|
|
2017-02-24 00:50:14 +00:00
|
|
|
@cached_property
|
2016-10-16 01:45:06 +00:00
|
|
|
def is_banned_counter(self):
|
2016-12-10 00:29:56 +00:00
|
|
|
return self.is_in_group(settings.SITH_GROUP_BANNED_COUNTER_ID)
|
2016-10-16 01:45:06 +00:00
|
|
|
|
2016-08-10 14:23:12 +00:00
|
|
|
def save(self, *args, **kwargs):
|
2016-08-29 00:19:29 +00:00
|
|
|
create = False
|
2016-08-10 14:23:12 +00:00
|
|
|
with transaction.atomic():
|
|
|
|
if self.id:
|
|
|
|
old = User.objects.filter(id=self.id).first()
|
2016-08-13 03:33:09 +00:00
|
|
|
if old and old.username != self.username:
|
2016-08-10 14:23:12 +00:00
|
|
|
self._change_username(self.username)
|
2016-08-29 00:19:29 +00:00
|
|
|
else:
|
|
|
|
create = True
|
2016-08-10 14:23:12 +00:00
|
|
|
super(User, self).save(*args, **kwargs)
|
2018-10-04 19:29:19 +00:00
|
|
|
if (
|
|
|
|
create and settings.IS_OLD_MYSQL_PRESENT
|
|
|
|
): # Create user on the old site: TODO remove me!
|
2016-08-29 00:19:29 +00:00
|
|
|
import MySQLdb
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-08-29 00:19:29 +00:00
|
|
|
try:
|
|
|
|
db = MySQLdb.connect(**settings.OLD_MYSQL_INFOS)
|
|
|
|
c = db.cursor()
|
2018-10-04 19:29:19 +00:00
|
|
|
c.execute(
|
|
|
|
"""INSERT INTO utilisateurs (id_utilisateur, nom_utl, prenom_utl, email_utl, hash_utl, ae_utl) VALUES
|
|
|
|
(%s, %s, %s, %s, %s, %s)""",
|
|
|
|
(
|
|
|
|
self.id,
|
|
|
|
self.last_name,
|
|
|
|
self.first_name,
|
|
|
|
self.email,
|
|
|
|
"valid",
|
|
|
|
"0",
|
|
|
|
),
|
|
|
|
)
|
2016-08-29 00:19:29 +00:00
|
|
|
db.commit()
|
|
|
|
except Exception as e:
|
2017-06-12 07:42:03 +00:00
|
|
|
with open(settings.BASE_DIR + "/user_fail.log", "a") as f:
|
2018-10-04 19:29:19 +00:00
|
|
|
print(
|
|
|
|
"FAIL to add user %s (%s %s - %s) to old site"
|
|
|
|
% (self.id, self.first_name, self.last_name, self.email),
|
|
|
|
file=f,
|
|
|
|
)
|
2016-08-29 00:19:29 +00:00
|
|
|
print("Reason: %s" % (repr(e)), file=f)
|
|
|
|
db.rollback()
|
2016-08-10 14:23:12 +00:00
|
|
|
|
|
|
|
def make_home(self):
|
|
|
|
if self.home is None:
|
|
|
|
home_root = SithFile.objects.filter(parent=None, name="users").first()
|
|
|
|
if home_root is not None:
|
|
|
|
home = SithFile(parent=home_root, name=self.username, owner=self)
|
|
|
|
home.save()
|
|
|
|
self.home = home
|
|
|
|
self.save()
|
|
|
|
|
|
|
|
def _change_username(self, new_name):
|
|
|
|
u = User.objects.filter(username=new_name).first()
|
|
|
|
if u is None:
|
|
|
|
if self.home:
|
|
|
|
self.home.name = new_name
|
|
|
|
self.home.save()
|
|
|
|
else:
|
|
|
|
raise ValidationError(_("A user with that username already exists"))
|
|
|
|
|
2015-11-24 14:52:27 +00:00
|
|
|
def get_profile(self):
|
|
|
|
return {
|
|
|
|
"last_name": self.last_name,
|
|
|
|
"first_name": self.first_name,
|
|
|
|
"nick_name": self.nick_name,
|
|
|
|
"date_of_birth": self.date_of_birth,
|
|
|
|
}
|
|
|
|
|
2015-11-18 16:09:06 +00:00
|
|
|
def get_full_name(self):
|
|
|
|
"""
|
|
|
|
Returns the first_name plus the last_name, with a space in between.
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
full_name = "%s %s" % (self.first_name, self.last_name)
|
2015-11-18 16:09:06 +00:00
|
|
|
return full_name.strip()
|
|
|
|
|
|
|
|
def get_short_name(self):
|
|
|
|
"Returns the short name for the user."
|
2016-11-25 12:47:09 +00:00
|
|
|
if self.nick_name:
|
|
|
|
return self.nick_name
|
|
|
|
return self.first_name + " " + self.last_name
|
2015-11-18 16:09:06 +00:00
|
|
|
|
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
|
|
|
|
"""
|
2016-08-13 03:33:09 +00:00
|
|
|
if self.nick_name:
|
|
|
|
return "%s (%s)" % (self.get_full_name(), self.nick_name)
|
2015-11-19 08:46:05 +00:00
|
|
|
return self.get_full_name()
|
|
|
|
|
2016-08-20 00:55:48 +00:00
|
|
|
def get_age(self):
|
|
|
|
"""
|
|
|
|
Returns the age
|
|
|
|
"""
|
2016-09-04 14:24:31 +00:00
|
|
|
today = timezone.now()
|
|
|
|
born = self.date_of_birth
|
2018-10-04 19:29:19 +00:00
|
|
|
return (
|
|
|
|
today.year - born.year - ((today.month, today.day) < (born.month, born.day))
|
|
|
|
)
|
2016-08-20 00:55:48 +00:00
|
|
|
|
2015-11-18 16:09:06 +00:00
|
|
|
def email_user(self, subject, message, from_email=None, **kwargs):
|
|
|
|
"""
|
|
|
|
Sends an email to this User.
|
|
|
|
"""
|
2016-10-21 11:09:46 +00:00
|
|
|
if from_email is None:
|
|
|
|
from_email = settings.DEFAULT_FROM_EMAIL
|
2015-11-18 16:09:06 +00:00
|
|
|
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
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-02-02 09:57:55 +00:00
|
|
|
def remove_accents(data):
|
2018-10-04 19:29:19 +00:00
|
|
|
return "".join(
|
|
|
|
x
|
|
|
|
for x in unicodedata.normalize("NFKD", data)
|
|
|
|
if unicodedata.category(x)[0] == "L"
|
|
|
|
).lower()
|
|
|
|
|
|
|
|
user_name = (
|
|
|
|
remove_accents(self.first_name[0] + self.last_name)
|
|
|
|
.encode("ascii", "ignore")
|
|
|
|
.decode("utf-8")
|
|
|
|
)
|
2015-11-18 16:09:06 +00:00
|
|
|
un_set = [u.username for u in User.objects.all()]
|
|
|
|
if user_name in un_set:
|
|
|
|
i = 1
|
2017-06-12 07:42:03 +00:00
|
|
|
while user_name + str(i) in un_set:
|
2015-11-18 16:09:06 +00:00
|
|
|
i += 1
|
|
|
|
user_name += str(i)
|
|
|
|
self.username = user_name
|
|
|
|
return user_name
|
2015-11-18 08:44:06 +00:00
|
|
|
|
2015-12-08 10:10:29 +00:00
|
|
|
def is_owner(self, obj):
|
|
|
|
"""
|
|
|
|
Determine if the object is owned by the user
|
|
|
|
"""
|
2016-02-05 15:59:42 +00:00
|
|
|
if hasattr(obj, "is_owned_by") and obj.is_owned_by(self):
|
|
|
|
return True
|
2016-05-09 09:49:01 +00:00
|
|
|
if hasattr(obj, "owner_group") and self.is_in_group(obj.owner_group.name):
|
2016-05-31 11:00:24 +00:00
|
|
|
return True
|
2016-12-10 00:29:56 +00:00
|
|
|
if self.is_superuser or self.is_in_group(settings.SITH_GROUP_ROOT_ID):
|
2016-05-09 09:49:01 +00:00
|
|
|
return True
|
2015-12-08 10:10:29 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
def can_edit(self, obj):
|
|
|
|
"""
|
|
|
|
Determine if the object can be edited by the user
|
|
|
|
"""
|
2016-12-18 10:55:45 +00:00
|
|
|
if hasattr(obj, "can_be_edited_by") and obj.can_be_edited_by(self):
|
2015-12-08 10:10:29 +00:00
|
|
|
return True
|
2016-02-05 15:59:42 +00:00
|
|
|
if hasattr(obj, "edit_groups"):
|
|
|
|
for g in obj.edit_groups.all():
|
2016-03-22 16:46:26 +00:00
|
|
|
if self.is_in_group(g.name):
|
2016-01-29 14:20:00 +00:00
|
|
|
return True
|
2015-12-08 16:22:50 +00:00
|
|
|
if isinstance(obj, User) and obj == self:
|
|
|
|
return True
|
2016-12-18 10:55:45 +00:00
|
|
|
if self.is_owner(obj):
|
2016-02-05 15:59:42 +00:00
|
|
|
return True
|
2015-12-08 10:10:29 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
def can_view(self, obj):
|
|
|
|
"""
|
|
|
|
Determine if the object can be viewed by the user
|
|
|
|
"""
|
2016-12-18 10:55:45 +00:00
|
|
|
if hasattr(obj, "can_be_viewed_by") and obj.can_be_viewed_by(self):
|
2015-12-08 10:10:29 +00:00
|
|
|
return True
|
2016-02-05 15:59:42 +00:00
|
|
|
if hasattr(obj, "view_groups"):
|
|
|
|
for g in obj.view_groups.all():
|
2016-03-22 16:46:26 +00:00
|
|
|
if self.is_in_group(g.name):
|
2016-01-29 14:20:00 +00:00
|
|
|
return True
|
2016-12-18 10:55:45 +00:00
|
|
|
if self.can_edit(obj):
|
2016-02-05 15:59:42 +00:00
|
|
|
return True
|
2015-12-08 10:10:29 +00:00
|
|
|
return False
|
|
|
|
|
2016-03-22 10:42:00 +00:00
|
|
|
def can_be_edited_by(self, user):
|
2016-08-14 02:35:08 +00:00
|
|
|
return user.is_in_group(settings.SITH_MAIN_BOARD_GROUP) or user.is_root
|
2016-03-22 10:42:00 +00:00
|
|
|
|
2016-08-22 16:44:03 +00:00
|
|
|
def can_be_viewed_by(self, user):
|
2017-02-24 03:36:10 +00:00
|
|
|
return (user.was_subscribed and self.is_subscriber_viewable) or user.is_root
|
2016-08-22 16:44:03 +00:00
|
|
|
|
2016-08-19 21:24:23 +00:00
|
|
|
def get_mini_item(self):
|
|
|
|
return """
|
|
|
|
<div class="mini_profile_link" >
|
|
|
|
<span>
|
|
|
|
<img src="%s" alt="%s" />
|
|
|
|
</span>
|
|
|
|
<em>%s</em>
|
|
|
|
</a>
|
|
|
|
""" % (
|
2018-10-04 19:29:19 +00:00
|
|
|
self.profile_pict.get_download_url()
|
|
|
|
if self.profile_pict
|
|
|
|
else staticfiles_storage.url("core/img/unknown.jpg"),
|
2016-08-19 21:24:23 +00:00
|
|
|
_("Profile"),
|
2016-08-20 00:55:48 +00:00
|
|
|
escape(self.get_display_name()),
|
2017-06-12 07:42:03 +00:00
|
|
|
)
|
2016-08-19 21:24:23 +00:00
|
|
|
|
2017-02-24 00:50:14 +00:00
|
|
|
@cached_property
|
2016-08-24 19:49:46 +00:00
|
|
|
def subscribed(self):
|
|
|
|
return self.is_in_group(settings.SITH_MAIN_MEMBERS_GROUP)
|
2016-03-22 10:42:00 +00:00
|
|
|
|
2017-09-02 10:42:07 +00:00
|
|
|
@cached_property
|
|
|
|
def preferences(self):
|
|
|
|
try:
|
|
|
|
return self._preferences
|
|
|
|
except:
|
|
|
|
prefs = Preferences(user=self)
|
|
|
|
prefs.save()
|
|
|
|
return prefs
|
|
|
|
|
2017-02-24 00:50:14 +00:00
|
|
|
@cached_property
|
2017-01-28 23:16:41 +00:00
|
|
|
def forum_infos(self):
|
|
|
|
try:
|
|
|
|
return self._forum_infos
|
|
|
|
except:
|
|
|
|
from forum.models import ForumUserInfo
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2017-01-28 23:16:41 +00:00
|
|
|
infos = ForumUserInfo(user=self)
|
|
|
|
infos.save()
|
|
|
|
return infos
|
|
|
|
|
2017-12-05 14:24:46 +00:00
|
|
|
@cached_property
|
|
|
|
def clubs_with_rights(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
return [
|
|
|
|
m.club.id
|
|
|
|
for m in self.memberships.filter(
|
|
|
|
models.Q(end_date__isnull=True) | models.Q(end_date__gte=timezone.now())
|
|
|
|
).all()
|
|
|
|
if m.club.has_rights_in_club(self)
|
|
|
|
]
|
2017-11-01 17:12:33 +00:00
|
|
|
|
2017-12-05 14:24:46 +00:00
|
|
|
@cached_property
|
|
|
|
def is_com_admin(self):
|
|
|
|
return self.is_in_group(settings.SITH_GROUP_COM_ADMIN_ID)
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2015-12-14 14:43:30 +00:00
|
|
|
class AnonymousUser(AuthAnonymousUser):
|
2019-10-20 16:26:11 +00:00
|
|
|
def __init__(self):
|
2015-12-14 14:43:30 +00:00
|
|
|
super(AnonymousUser, self).__init__()
|
|
|
|
|
2017-07-21 22:40:51 +00:00
|
|
|
@property
|
|
|
|
def can_create_subscription(self):
|
|
|
|
return False
|
|
|
|
|
2017-02-26 16:35:01 +00:00
|
|
|
@property
|
2016-12-12 16:23:06 +00:00
|
|
|
def was_subscribed(self):
|
2017-06-12 11:57:08 +00:00
|
|
|
return False
|
2016-12-12 16:23:06 +00:00
|
|
|
|
2019-06-15 21:31:31 +00:00
|
|
|
@property
|
|
|
|
def is_subscribed(self):
|
|
|
|
return False
|
|
|
|
|
2016-08-24 19:49:46 +00:00
|
|
|
@property
|
|
|
|
def subscribed(self):
|
2017-06-12 11:57:08 +00:00
|
|
|
return False
|
2016-08-24 19:49:46 +00:00
|
|
|
|
2016-08-26 19:09:32 +00:00
|
|
|
@property
|
|
|
|
def is_root(self):
|
2017-06-12 11:57:08 +00:00
|
|
|
return False
|
2016-08-26 19:09:32 +00:00
|
|
|
|
2016-09-27 14:56:30 +00:00
|
|
|
@property
|
|
|
|
def is_board_member(self):
|
2017-06-12 11:57:08 +00:00
|
|
|
return False
|
2016-09-27 14:56:30 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def is_launderette_manager(self):
|
2017-06-12 11:57:08 +00:00
|
|
|
return False
|
2016-09-27 14:56:30 +00:00
|
|
|
|
2016-10-18 21:02:53 +00:00
|
|
|
@property
|
|
|
|
def is_banned_alcohol(self):
|
2017-06-12 11:57:08 +00:00
|
|
|
return False
|
2017-06-06 17:37:45 +00:00
|
|
|
|
|
|
|
@property
|
2017-06-12 11:58:35 +00:00
|
|
|
def is_banned_counter(self):
|
2017-06-12 11:57:08 +00:00
|
|
|
return False
|
2016-10-18 21:02:53 +00:00
|
|
|
|
2017-06-12 11:58:35 +00:00
|
|
|
@property
|
|
|
|
def forum_infos(self):
|
|
|
|
raise PermissionDenied
|
|
|
|
|
2018-02-22 21:19:17 +00:00
|
|
|
@property
|
|
|
|
def favorite_topics(self):
|
|
|
|
raise PermissionDenied
|
|
|
|
|
2016-06-20 13:47:19 +00:00
|
|
|
def is_in_group(self, group_name):
|
|
|
|
"""
|
|
|
|
The anonymous user is only the public group
|
|
|
|
"""
|
2016-12-10 00:29:56 +00:00
|
|
|
group_id = 0
|
2017-06-12 07:42:03 +00:00
|
|
|
if isinstance(group_name, int): # Handle the case where group_name is an ID
|
2016-12-10 00:29:56 +00:00
|
|
|
g = Group.objects.filter(id=group_name).first()
|
|
|
|
if g:
|
|
|
|
group_name = g.name
|
|
|
|
group_id = g.id
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
if group_id == settings.SITH_GROUP_PUBLIC_ID:
|
2016-06-20 13:47:19 +00:00
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2015-12-14 14:43:30 +00:00
|
|
|
def is_owner(self, obj):
|
|
|
|
return False
|
|
|
|
|
|
|
|
def can_edit(self, obj):
|
|
|
|
return False
|
|
|
|
|
|
|
|
def can_view(self, obj):
|
2018-10-04 19:29:19 +00:00
|
|
|
if (
|
|
|
|
hasattr(obj, "view_groups")
|
|
|
|
and obj.view_groups.filter(id=settings.SITH_GROUP_PUBLIC_ID).exists()
|
|
|
|
):
|
2016-05-03 06:50:54 +00:00
|
|
|
return True
|
2018-10-04 19:29:19 +00:00
|
|
|
if hasattr(obj, "can_be_viewed_by") and obj.can_be_viewed_by(self):
|
2015-12-14 14:43:30 +00:00
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2016-05-31 23:33:20 +00:00
|
|
|
def get_display_name(self):
|
|
|
|
return _("Visitor")
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-07-17 10:38:02 +00:00
|
|
|
class Preferences(models.Model):
|
2019-10-05 17:05:56 +00:00
|
|
|
user = models.OneToOneField(
|
|
|
|
User, related_name="_preferences", on_delete=models.CASCADE
|
|
|
|
)
|
2017-01-11 00:34:16 +00:00
|
|
|
receive_weekmail = models.BooleanField(
|
2018-10-04 19:29:19 +00:00
|
|
|
_("do you want to receive the weekmail"), default=False
|
2017-09-02 10:42:07 +00:00
|
|
|
)
|
2018-10-04 19:29:19 +00:00
|
|
|
show_my_stats = models.BooleanField(_("show your stats to others"), default=False)
|
2017-09-02 10:42:07 +00:00
|
|
|
notify_on_click = models.BooleanField(
|
2018-10-04 19:29:19 +00:00
|
|
|
_("get a notification for every click"), default=False
|
2017-09-02 10:42:07 +00:00
|
|
|
)
|
|
|
|
notify_on_refill = models.BooleanField(
|
2018-10-04 19:29:19 +00:00
|
|
|
_("get a notification for every refilling"), default=False
|
2016-07-17 10:38:02 +00:00
|
|
|
)
|
|
|
|
|
2017-01-11 00:34:16 +00:00
|
|
|
def get_display_name(self):
|
|
|
|
return self.user.get_display_name()
|
|
|
|
|
|
|
|
def get_absolute_url(self):
|
|
|
|
return self.user.get_absolute_url()
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
def get_directory(instance, filename):
|
2018-10-04 19:29:19 +00:00
|
|
|
return ".{0}/{1}".format(instance.get_parent_path(), filename)
|
2016-08-10 03:48:06 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-11-20 10:56:33 +00:00
|
|
|
def get_compressed_directory(instance, filename):
|
2018-10-04 19:29:19 +00:00
|
|
|
return "./.compressed/{0}/{1}".format(instance.get_parent_path(), filename)
|
2016-11-20 10:56:33 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-11-20 10:56:33 +00:00
|
|
|
def get_thumbnail_directory(instance, filename):
|
2018-10-04 19:29:19 +00:00
|
|
|
return "./.thumbnails/{0}/{1}".format(instance.get_parent_path(), filename)
|
2016-11-20 10:56:33 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
class SithFile(models.Model):
|
2018-10-04 19:29:19 +00:00
|
|
|
name = models.CharField(_("file name"), max_length=256, blank=False)
|
|
|
|
parent = models.ForeignKey(
|
2019-10-05 17:05:56 +00:00
|
|
|
"self",
|
|
|
|
related_name="children",
|
|
|
|
verbose_name=_("parent"),
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
|
|
|
on_delete=models.CASCADE,
|
2018-10-04 19:29:19 +00:00
|
|
|
)
|
|
|
|
file = models.FileField(
|
|
|
|
upload_to=get_directory,
|
|
|
|
verbose_name=_("file"),
|
|
|
|
max_length=256,
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
|
|
|
)
|
|
|
|
compressed = models.FileField(
|
|
|
|
upload_to=get_compressed_directory,
|
|
|
|
verbose_name=_("compressed file"),
|
|
|
|
max_length=256,
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
|
|
|
)
|
|
|
|
thumbnail = models.FileField(
|
|
|
|
upload_to=get_thumbnail_directory,
|
|
|
|
verbose_name=_("thumbnail"),
|
|
|
|
max_length=256,
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
|
|
|
)
|
2019-10-05 17:05:56 +00:00
|
|
|
owner = models.ForeignKey(
|
|
|
|
User,
|
|
|
|
related_name="owned_files",
|
|
|
|
verbose_name=_("owner"),
|
|
|
|
on_delete=models.CASCADE,
|
|
|
|
)
|
2018-10-04 19:29:19 +00:00
|
|
|
edit_groups = models.ManyToManyField(
|
|
|
|
Group, related_name="editable_files", verbose_name=_("edit group"), blank=True
|
|
|
|
)
|
|
|
|
view_groups = models.ManyToManyField(
|
|
|
|
Group, related_name="viewable_files", verbose_name=_("view group"), blank=True
|
|
|
|
)
|
2019-09-06 14:16:03 +00:00
|
|
|
is_folder = models.BooleanField(_("is folder"), default=True, db_index=True)
|
2018-10-04 19:29:19 +00:00
|
|
|
mime_type = models.CharField(_("mime type"), max_length=30)
|
2016-08-10 03:48:06 +00:00
|
|
|
size = models.IntegerField(_("size"), default=0)
|
2018-10-04 19:29:19 +00:00
|
|
|
date = models.DateTimeField(_("date"), default=timezone.now)
|
2016-11-09 08:13:57 +00:00
|
|
|
is_moderated = models.BooleanField(_("is moderated"), default=False)
|
2018-10-04 19:29:19 +00:00
|
|
|
moderator = models.ForeignKey(
|
|
|
|
User,
|
|
|
|
related_name="moderated_files",
|
|
|
|
verbose_name=_("owner"),
|
|
|
|
null=True,
|
|
|
|
blank=True,
|
2019-10-05 17:05:56 +00:00
|
|
|
on_delete=models.CASCADE,
|
2018-10-04 19:29:19 +00:00
|
|
|
)
|
2016-11-19 16:19:00 +00:00
|
|
|
asked_for_removal = models.BooleanField(_("asked for removal"), default=False)
|
2018-10-04 19:29:19 +00:00
|
|
|
is_in_sas = models.BooleanField(
|
2019-09-06 14:16:03 +00:00
|
|
|
_("is in the SAS"), default=False, db_index=True
|
2018-10-04 19:29:19 +00:00
|
|
|
) # Allows to query this flag, updated at each call to save()
|
2016-08-10 03:48:06 +00:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
verbose_name = _("file")
|
|
|
|
|
|
|
|
def is_owned_by(self, user):
|
2018-10-04 19:29:19 +00:00
|
|
|
if hasattr(self, "profile_of") and user.is_in_group(
|
|
|
|
settings.SITH_MAIN_BOARD_GROUP
|
|
|
|
):
|
2016-09-01 09:27:00 +00:00
|
|
|
return True
|
2016-12-10 00:29:56 +00:00
|
|
|
if user.is_in_group(settings.SITH_GROUP_COM_ADMIN_ID):
|
2016-11-09 08:13:57 +00:00
|
|
|
return True
|
2016-12-14 08:10:41 +00:00
|
|
|
if self.is_in_sas and user.is_in_group(settings.SITH_GROUP_SAS_ADMIN_ID):
|
|
|
|
return True
|
2016-08-10 03:48:06 +00:00
|
|
|
return user.id == self.owner.id
|
|
|
|
|
2016-08-11 02:24:32 +00:00
|
|
|
def can_be_viewed_by(self, user):
|
2018-10-04 19:29:19 +00:00
|
|
|
if hasattr(self, "profile_of"):
|
2016-08-11 02:24:32 +00:00
|
|
|
return user.can_view(self.profile_of)
|
2018-10-04 19:29:19 +00:00
|
|
|
if hasattr(self, "avatar_of"):
|
2016-08-11 02:24:32 +00:00
|
|
|
return user.can_view(self.avatar_of)
|
2018-10-04 19:29:19 +00:00
|
|
|
if hasattr(self, "scrub_of"):
|
2016-08-11 02:24:32 +00:00
|
|
|
return user.can_view(self.scrub_of)
|
|
|
|
return False
|
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
def delete(self):
|
|
|
|
for c in self.children.all():
|
|
|
|
c.delete()
|
|
|
|
self.file.delete()
|
2016-11-20 10:56:33 +00:00
|
|
|
if self.compressed:
|
|
|
|
self.compressed.delete()
|
|
|
|
if self.thumbnail:
|
|
|
|
self.thumbnail.delete()
|
2016-08-10 03:48:06 +00:00
|
|
|
return super(SithFile, self).delete()
|
|
|
|
|
|
|
|
def clean(self):
|
|
|
|
"""
|
|
|
|
Cleans up the file
|
|
|
|
"""
|
|
|
|
super(SithFile, self).clean()
|
2018-10-04 19:29:19 +00:00
|
|
|
if "/" in self.name:
|
2016-08-10 03:48:06 +00:00
|
|
|
raise ValidationError(_("Character '/' not authorized in name"))
|
|
|
|
if self == self.parent:
|
2018-10-04 19:29:19 +00:00
|
|
|
raise ValidationError(_("Loop in folder tree"), code="loop")
|
|
|
|
if self == self.parent or (
|
|
|
|
self.parent is not None and self in self.get_parent_list()
|
|
|
|
):
|
|
|
|
raise ValidationError(_("Loop in folder tree"), code="loop")
|
2016-08-10 03:48:06 +00:00
|
|
|
if self.parent and self.parent.is_file:
|
|
|
|
raise ValidationError(
|
2018-10-04 19:29:19 +00:00
|
|
|
_("You can not make a file be a children of a non folder file")
|
2016-08-10 03:48:06 +00:00
|
|
|
)
|
2018-10-04 19:29:19 +00:00
|
|
|
if (
|
|
|
|
self.parent is None
|
|
|
|
and SithFile.objects.exclude(id=self.id)
|
|
|
|
.filter(parent=None, name=self.name)
|
|
|
|
.exists()
|
|
|
|
) or (
|
|
|
|
self.parent
|
|
|
|
and self.parent.children.exclude(id=self.id).filter(name=self.name).exists()
|
|
|
|
):
|
|
|
|
raise ValidationError(_("Duplicate file"), code="duplicate")
|
2016-08-10 03:48:06 +00:00
|
|
|
if self.is_folder:
|
2016-11-30 08:28:22 +00:00
|
|
|
if self.file:
|
|
|
|
try:
|
|
|
|
import imghdr
|
2018-10-04 19:29:19 +00:00
|
|
|
|
|
|
|
if imghdr.what(None, self.file.read()) not in [
|
|
|
|
"gif",
|
|
|
|
"png",
|
|
|
|
"jpeg",
|
|
|
|
]:
|
2016-11-30 08:28:22 +00:00
|
|
|
self.file.delete()
|
|
|
|
self.file = None
|
|
|
|
except:
|
|
|
|
self.file = None
|
2016-08-10 03:48:06 +00:00
|
|
|
self.mime_type = "inode/directory"
|
|
|
|
if self.is_file and (self.file is None or self.file == ""):
|
|
|
|
raise ValidationError(_("You must provide a file"))
|
|
|
|
|
|
|
|
def save(self, *args, **kwargs):
|
2016-11-22 13:58:39 +00:00
|
|
|
sas = SithFile.objects.filter(id=settings.SITH_SAS_ROOT_DIR_ID).first()
|
|
|
|
self.is_in_sas = sas in self.get_parent_list()
|
2016-08-10 03:48:06 +00:00
|
|
|
copy_rights = False
|
|
|
|
if self.id is None:
|
|
|
|
copy_rights = True
|
|
|
|
super(SithFile, self).save(*args, **kwargs)
|
|
|
|
if copy_rights:
|
|
|
|
self.copy_rights()
|
2017-09-25 10:35:56 +00:00
|
|
|
if self.is_in_sas:
|
2018-10-04 19:29:19 +00:00
|
|
|
for u in (
|
|
|
|
RealGroup.objects.filter(id=settings.SITH_GROUP_SAS_ADMIN_ID)
|
|
|
|
.first()
|
|
|
|
.users.all()
|
|
|
|
):
|
|
|
|
Notification(
|
|
|
|
user=u,
|
|
|
|
url=reverse("sas:moderation"),
|
|
|
|
type="SAS_MODERATION",
|
|
|
|
param="1",
|
|
|
|
).save()
|
2016-08-10 03:48:06 +00:00
|
|
|
|
2016-12-18 18:08:25 +00:00
|
|
|
def apply_rights_recursively(self, only_folders=False):
|
|
|
|
children = self.children.all()
|
|
|
|
if only_folders:
|
|
|
|
children = children.filter(is_folder=True)
|
|
|
|
for c in children:
|
|
|
|
c.copy_rights()
|
|
|
|
c.apply_rights_recursively(only_folders)
|
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
def copy_rights(self):
|
|
|
|
"""Copy, if possible, the rights of the parent folder"""
|
|
|
|
if self.parent is not None:
|
2019-10-06 00:15:18 +00:00
|
|
|
self.edit_groups.set(self.parent.edit_groups.all())
|
|
|
|
self.view_groups.set(self.parent.view_groups.all())
|
2016-08-10 03:48:06 +00:00
|
|
|
self.save()
|
|
|
|
|
2016-12-12 23:45:20 +00:00
|
|
|
def move_to(self, parent):
|
2018-03-20 21:09:27 +00:00
|
|
|
"""
|
|
|
|
Move a file to a new parent.
|
|
|
|
`parent` must be a SithFile with the `is_folder=True` property. Otherwise, this function doesn't change
|
|
|
|
anything.
|
|
|
|
This is done only at the DB level, so that it's very fast for the user. Indeed, this function doesn't modify
|
|
|
|
SithFiles recursively, so it stays efficient even with top-level folders.
|
|
|
|
"""
|
2016-12-12 23:45:20 +00:00
|
|
|
if not parent.is_folder:
|
|
|
|
return
|
2018-03-20 21:09:27 +00:00
|
|
|
self.parent = parent
|
|
|
|
self.clean()
|
|
|
|
self.save()
|
|
|
|
|
|
|
|
def _repair_fs(self):
|
|
|
|
"""
|
|
|
|
This function rebuilds recursively the filesystem as it should be
|
|
|
|
regarding the DB tree.
|
|
|
|
"""
|
|
|
|
if self.is_folder:
|
|
|
|
for c in self.children.all():
|
|
|
|
c._repair_fs()
|
|
|
|
return
|
2018-04-18 20:54:30 +00:00
|
|
|
elif not self._check_path_consistence():
|
2018-03-20 21:09:27 +00:00
|
|
|
# First get future parent path and the old file name
|
|
|
|
# Prepend "." so that we match all relative handling of Django's
|
|
|
|
# file storage
|
|
|
|
parent_path = "." + self.parent.get_full_path()
|
|
|
|
parent_full_path = settings.MEDIA_ROOT + parent_path
|
|
|
|
print("Parent full path: %s" % parent_full_path)
|
|
|
|
os.makedirs(parent_full_path, exist_ok=True)
|
2018-10-04 19:29:19 +00:00
|
|
|
old_path = self.file.name # Should be relative: "./users/skia/bleh.jpg"
|
2018-03-20 21:09:27 +00:00
|
|
|
new_path = "." + self.get_full_path()
|
|
|
|
print("Old path: %s " % old_path)
|
|
|
|
print("New path: %s " % new_path)
|
2018-04-05 19:16:01 +00:00
|
|
|
try:
|
|
|
|
# Make this atomic, so that a FS problem rolls back the DB change
|
|
|
|
with transaction.atomic():
|
|
|
|
# Set the new filesystem path
|
|
|
|
self.file.name = new_path
|
|
|
|
self.save()
|
|
|
|
print("New file path: %s " % self.file.path)
|
|
|
|
# Really move at the FS level
|
|
|
|
if os.path.exists(parent_full_path):
|
2018-10-04 19:29:19 +00:00
|
|
|
os.rename(
|
|
|
|
settings.MEDIA_ROOT + old_path,
|
|
|
|
settings.MEDIA_ROOT + new_path,
|
|
|
|
)
|
2018-04-05 19:16:01 +00:00
|
|
|
# Empty directories may remain, but that's not really a
|
|
|
|
# problem, and that can be solved with a simple shell
|
|
|
|
# command: `find . -type d -empty -delete`
|
|
|
|
except Exception as e:
|
|
|
|
print("This file likely had a problem. Here is the exception:")
|
|
|
|
print(repr(e))
|
2018-10-04 19:29:19 +00:00
|
|
|
print("-" * 80)
|
2018-03-20 21:09:27 +00:00
|
|
|
|
|
|
|
def _check_path_consistence(self):
|
|
|
|
file_path = str(self.file)
|
2018-04-05 19:16:01 +00:00
|
|
|
file_full_path = settings.MEDIA_ROOT + file_path
|
2018-03-20 21:09:27 +00:00
|
|
|
db_path = ".%s" % self.get_full_path()
|
2018-04-05 19:16:01 +00:00
|
|
|
if not os.path.exists(file_full_path):
|
|
|
|
print("%s: WARNING: real file does not exists!" % self.id)
|
2018-10-04 19:29:19 +00:00
|
|
|
print("file path: %s" % file_path, end="")
|
2018-04-05 19:16:01 +00:00
|
|
|
print(" db path: %s" % db_path)
|
|
|
|
return False
|
2018-03-20 21:09:27 +00:00
|
|
|
if file_path != db_path:
|
2018-10-04 19:29:19 +00:00
|
|
|
print("%s: " % self.id, end="")
|
|
|
|
print("file path: %s" % file_path, end="")
|
2018-03-20 21:09:27 +00:00
|
|
|
print(" db path: %s" % db_path)
|
|
|
|
return False
|
2018-04-18 20:54:30 +00:00
|
|
|
print("%s OK (%s)" % (self.id, file_path))
|
|
|
|
return True
|
2018-03-20 21:09:27 +00:00
|
|
|
|
|
|
|
def _check_fs(self):
|
|
|
|
if self.is_folder:
|
|
|
|
for c in self.children.all():
|
|
|
|
c._check_fs()
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
self._check_path_consistence()
|
2016-12-12 23:45:20 +00:00
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
def __getattribute__(self, attr):
|
|
|
|
if attr == "is_file":
|
|
|
|
return not self.is_folder
|
|
|
|
else:
|
2016-08-13 03:33:09 +00:00
|
|
|
return super(SithFile, self).__getattribute__(attr)
|
2016-08-10 03:48:06 +00:00
|
|
|
|
2017-02-24 00:50:14 +00:00
|
|
|
@cached_property
|
2016-10-26 17:21:19 +00:00
|
|
|
def as_picture(self):
|
|
|
|
from sas.models import Picture
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-10-26 17:21:19 +00:00
|
|
|
return Picture.objects.filter(id=self.id).first()
|
|
|
|
|
2017-02-24 00:50:14 +00:00
|
|
|
@cached_property
|
2016-12-13 00:24:23 +00:00
|
|
|
def as_album(self):
|
|
|
|
from sas.models import Album
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-12-13 00:24:23 +00:00
|
|
|
return Album.objects.filter(id=self.id).first()
|
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
def __str__(self):
|
|
|
|
if self.is_folder:
|
|
|
|
return _("Folder: ") + self.name
|
|
|
|
else:
|
|
|
|
return _("File: ") + self.name
|
|
|
|
|
|
|
|
def get_parent_list(self):
|
|
|
|
l = []
|
|
|
|
p = self.parent
|
|
|
|
while p is not None:
|
|
|
|
l.append(p)
|
|
|
|
p = p.parent
|
|
|
|
return l
|
|
|
|
|
|
|
|
def get_parent_path(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
return "/" + "/".join([p.name for p in self.get_parent_list()[::-1]])
|
2016-08-10 03:48:06 +00:00
|
|
|
|
2016-12-12 23:45:20 +00:00
|
|
|
def get_full_path(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
return self.get_parent_path() + "/" + self.name
|
2016-12-12 23:45:20 +00:00
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
def get_display_name(self):
|
|
|
|
return self.name
|
|
|
|
|
2016-08-11 02:24:32 +00:00
|
|
|
def get_download_url(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
return reverse("core:download", kwargs={"file_id": self.id})
|
2016-08-11 02:24:32 +00:00
|
|
|
|
2016-11-25 12:47:09 +00:00
|
|
|
def __str__(self):
|
|
|
|
return self.get_parent_path() + "/" + self.name
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2015-12-02 15:43:40 +00:00
|
|
|
class LockError(Exception):
|
|
|
|
"""There was a lock error on the object"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2015-12-02 15:43:40 +00:00
|
|
|
pass
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2015-12-02 15:43:40 +00:00
|
|
|
class AlreadyLocked(LockError):
|
|
|
|
"""The object is already locked"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2015-12-02 15:43:40 +00:00
|
|
|
pass
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2015-12-02 15:43:40 +00:00
|
|
|
class NotLocked(LockError):
|
|
|
|
"""The object is not locked"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2015-12-02 15:43:40 +00:00
|
|
|
pass
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2015-12-03 15:47:03 +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()
|
|
|
|
|
2016-01-11 09:01:57 +00:00
|
|
|
Be careful with the _full_name attribute: this field may not be valid until you call save(). It's made for fast
|
2015-11-24 09:53:16 +00:00
|
|
|
query, but don't rely on it when playing with a Page object, use get_full_name() instead!
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
|
|
|
name = models.CharField(
|
|
|
|
_("page unix name"),
|
|
|
|
max_length=30,
|
|
|
|
validators=[
|
|
|
|
validators.RegexValidator(
|
|
|
|
r"^[a-zA-Z0-9][a-zA-Z0-9._-]*[a-zA-Z0-9]$",
|
|
|
|
_(
|
|
|
|
"Enter a valid page name. This value may contain only "
|
|
|
|
"unaccented letters, numbers "
|
|
|
|
"and ./+/-/_ characters."
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
blank=False,
|
|
|
|
)
|
|
|
|
parent = models.ForeignKey(
|
|
|
|
"self",
|
|
|
|
related_name="children",
|
|
|
|
verbose_name=_("parent"),
|
|
|
|
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!
|
2018-10-04 19:29:19 +00:00
|
|
|
_full_name = models.CharField(_("page name"), max_length=255, blank=True)
|
2018-04-26 18:18:24 +00:00
|
|
|
# This function prevents generating migration upon settings change
|
2018-10-04 19:29:19 +00:00
|
|
|
def get_default_owner_group():
|
|
|
|
return settings.SITH_GROUP_ROOT_ID
|
|
|
|
|
|
|
|
owner_group = models.ForeignKey(
|
|
|
|
Group,
|
|
|
|
related_name="owned_page",
|
|
|
|
verbose_name=_("owner group"),
|
|
|
|
default=get_default_owner_group,
|
2019-10-05 17:05:56 +00:00
|
|
|
on_delete=models.CASCADE,
|
2018-10-04 19:29:19 +00:00
|
|
|
)
|
|
|
|
edit_groups = models.ManyToManyField(
|
|
|
|
Group, related_name="editable_page", verbose_name=_("edit group"), blank=True
|
|
|
|
)
|
|
|
|
view_groups = models.ManyToManyField(
|
|
|
|
Group, related_name="viewable_page", verbose_name=_("view group"), blank=True
|
|
|
|
)
|
|
|
|
lock_user = models.ForeignKey(
|
|
|
|
User,
|
|
|
|
related_name="locked_pages",
|
|
|
|
verbose_name=_("lock user"),
|
|
|
|
blank=True,
|
|
|
|
null=True,
|
|
|
|
default=None,
|
2019-10-05 17:05:56 +00:00
|
|
|
on_delete=models.CASCADE,
|
2018-10-04 19:29:19 +00:00
|
|
|
)
|
|
|
|
lock_timeout = models.DateTimeField(
|
|
|
|
_("lock_timeout"), null=True, blank=True, default=None
|
|
|
|
)
|
2015-11-18 08:44:06 +00:00
|
|
|
|
2015-11-19 15:28:49 +00:00
|
|
|
class Meta:
|
2018-10-04 19:29:19 +00:00
|
|
|
unique_together = ("name", "parent")
|
2015-11-19 15:28:49 +00:00
|
|
|
permissions = (
|
2015-12-09 09:33:55 +00:00
|
|
|
("change_prop_page", "Can change the page's properties (groups, ...)"),
|
2015-11-19 15:28:49 +00:00
|
|
|
)
|
|
|
|
|
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
|
|
|
|
"""
|
2016-01-11 09:01:57 +00:00
|
|
|
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
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
if "/" in self.name:
|
|
|
|
self.name = self.name.split("/")[-1]
|
|
|
|
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()
|
2015-11-24 19:09:44 +00:00
|
|
|
if self.parent is not None and self in self.get_parent_list():
|
2018-10-04 19:29:19 +00:00
|
|
|
raise ValidationError(_("Loop in page tree"), code="loop")
|
2015-11-24 19:09:44 +00:00
|
|
|
|
2017-09-13 09:20:55 +00:00
|
|
|
def can_be_edited_by(self, user):
|
2018-10-04 19:29:19 +00:00
|
|
|
if hasattr(self, "club") and self.club.can_be_edited_by(user):
|
2017-09-13 09:20:55 +00:00
|
|
|
# Override normal behavior for clubs
|
|
|
|
return True
|
2017-10-01 18:52:29 +00:00
|
|
|
if self.name == settings.SITH_CLUB_ROOT_PAGE and user.is_board_member:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
def can_be_viewed_by(self, user):
|
|
|
|
if self.is_club_page:
|
|
|
|
return True
|
2017-09-13 09:20:55 +00:00
|
|
|
return False
|
|
|
|
|
2015-11-24 19:09:44 +00:00
|
|
|
def get_parent_list(self):
|
|
|
|
l = []
|
|
|
|
p = self.parent
|
|
|
|
while p is not None:
|
|
|
|
l.append(p)
|
|
|
|
p = p.parent
|
|
|
|
return l
|
|
|
|
|
2015-11-23 16:23:00 +00:00
|
|
|
def save(self, *args, **kwargs):
|
2015-12-02 15:43:40 +00:00
|
|
|
"""
|
|
|
|
Performs some needed actions before and after saving a page in database
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
locked = kwargs.pop("force_lock", False)
|
2017-06-12 07:42:03 +00:00
|
|
|
if not locked:
|
|
|
|
locked = self.is_locked()
|
2016-11-05 12:37:30 +00:00
|
|
|
if not locked:
|
2015-12-02 15:43:40 +00:00
|
|
|
raise NotLocked("The page is not locked and thus can not be saved")
|
2015-11-23 16:23:00 +00:00
|
|
|
self.full_clean()
|
2016-12-14 17:05:19 +00:00
|
|
|
if not self.id:
|
2018-10-04 19:29:19 +00:00
|
|
|
super(Page, self).save(
|
|
|
|
*args, **kwargs
|
|
|
|
) # Save a first time to correctly set _full_name
|
2016-01-11 09:01:57 +00:00
|
|
|
# This reset the _full_name just before saving to maintain a coherent field quicker for queries than the
|
2015-11-24 09:53:16 +00:00
|
|
|
# recursive method
|
2015-11-24 13:00:41 +00:00
|
|
|
# It also update all the children to maintain correct names
|
2016-01-11 09:01:57 +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-12-02 15:43:40 +00:00
|
|
|
self.unset_lock()
|
|
|
|
|
|
|
|
def is_locked(self):
|
|
|
|
"""
|
|
|
|
Is True if the page is locked, False otherwise
|
|
|
|
This is where the timeout is handled, so a locked page for which the timeout is reach will be unlocked and this
|
|
|
|
function will return False
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
if self.lock_timeout and (
|
|
|
|
timezone.now() - self.lock_timeout > timedelta(minutes=5)
|
|
|
|
):
|
2015-12-02 15:43:40 +00:00
|
|
|
# print("Lock timed out")
|
|
|
|
self.unset_lock()
|
2018-10-04 19:29:19 +00:00
|
|
|
return (
|
|
|
|
self.lock_user
|
|
|
|
and self.lock_timeout
|
|
|
|
and (timezone.now() - self.lock_timeout < timedelta(minutes=5))
|
|
|
|
)
|
2015-12-02 15:43:40 +00:00
|
|
|
|
|
|
|
def set_lock(self, user):
|
|
|
|
"""
|
|
|
|
Sets a lock on the current page or raise an AlreadyLocked exception
|
|
|
|
"""
|
2016-11-05 12:37:30 +00:00
|
|
|
if self.is_locked() and self.get_lock() != user:
|
2015-12-02 15:43:40 +00:00
|
|
|
raise AlreadyLocked("The page is already locked by someone else")
|
2016-11-05 12:37:30 +00:00
|
|
|
self.lock_user = user
|
|
|
|
self.lock_timeout = timezone.now()
|
|
|
|
super(Page, self).save()
|
2015-12-08 10:10:29 +00:00
|
|
|
# print("Locking page")
|
2015-12-02 15:43:40 +00:00
|
|
|
|
|
|
|
def set_lock_recursive(self, user):
|
|
|
|
"""
|
|
|
|
Locks recursively all the child pages for editing properties
|
|
|
|
"""
|
|
|
|
for p in self.children.all():
|
|
|
|
p.set_lock_recursive(user)
|
|
|
|
self.set_lock(user)
|
|
|
|
|
2017-03-08 12:25:23 +00:00
|
|
|
def unset_lock_recursive(self):
|
|
|
|
"""
|
|
|
|
Unlocks recursively all the child pages
|
|
|
|
"""
|
|
|
|
for p in self.children.all():
|
|
|
|
p.unset_lock_recursive()
|
|
|
|
self.unset_lock()
|
|
|
|
|
2015-12-02 15:43:40 +00:00
|
|
|
def unset_lock(self):
|
|
|
|
"""Always try to unlock, even if there is no lock"""
|
2016-11-05 12:37:30 +00:00
|
|
|
self.lock_user = None
|
|
|
|
self.lock_timeout = None
|
|
|
|
super(Page, self).save()
|
2015-12-08 10:10:29 +00:00
|
|
|
# print("Unlocking page")
|
2015-12-02 15:43:40 +00:00
|
|
|
|
|
|
|
def get_lock(self):
|
|
|
|
"""
|
|
|
|
Returns the page's mutex containing the time and the user in a dict
|
|
|
|
"""
|
2016-11-05 12:37:30 +00:00
|
|
|
if self.lock_user:
|
|
|
|
return self.lock_user
|
|
|
|
raise NotLocked("The page is not locked and thus can not return its user")
|
2015-11-23 16:23:00 +00:00
|
|
|
|
2015-11-25 13:45:18 +00:00
|
|
|
def get_absolute_url(self):
|
|
|
|
"""
|
|
|
|
This is needed for black magic powered UpdateView's children
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
return reverse("core:page", kwargs={"page_name": self._full_name})
|
2015-11-25 13:45:18 +00:00
|
|
|
|
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
|
2018-10-04 19:29:19 +00:00
|
|
|
return "/".join([self.parent.get_full_name(), self.name])
|
2015-11-20 14:47:01 +00:00
|
|
|
|
|
|
|
def get_display_name(self):
|
2016-08-02 20:20:06 +00:00
|
|
|
try:
|
|
|
|
return self.revisions.last().title
|
|
|
|
except:
|
|
|
|
return self.name
|
2015-11-18 08:44:06 +00:00
|
|
|
|
2017-10-01 18:52:29 +00:00
|
|
|
@cached_property
|
2017-09-12 19:10:32 +00:00
|
|
|
def is_club_page(self):
|
2017-09-19 12:48:56 +00:00
|
|
|
club_root_page = Page.objects.filter(name=settings.SITH_CLUB_ROOT_PAGE).first()
|
2018-10-04 19:29:19 +00:00
|
|
|
return club_root_page is not None and (
|
|
|
|
self == club_root_page or club_root_page in self.get_parent_list()
|
|
|
|
)
|
2017-09-12 19:10:32 +00:00
|
|
|
|
2017-10-01 18:52:29 +00:00
|
|
|
@cached_property
|
|
|
|
def need_club_redirection(self):
|
|
|
|
return self.is_club_page and self.name != settings.SITH_CLUB_ROOT_PAGE
|
|
|
|
|
2017-03-08 12:25:23 +00:00
|
|
|
def delete(self):
|
|
|
|
self.unset_lock_recursive()
|
|
|
|
self.set_lock_recursive(User.objects.get(id=0))
|
|
|
|
for child in self.children.all():
|
|
|
|
child.parent = self.parent
|
|
|
|
child.save()
|
|
|
|
child.unset_lock_recursive()
|
|
|
|
super(Page, self).delete()
|
|
|
|
|
|
|
|
|
2015-12-02 10:09:50 +00:00
|
|
|
class PageRev(models.Model):
|
2015-12-09 10:22:50 +00:00
|
|
|
"""
|
|
|
|
This is the true content of the page.
|
|
|
|
Each page object has a revisions field that is a list of PageRev, ordered by date.
|
|
|
|
my_page.revisions.last() gives the PageRev object that is the most up-to-date, and thus,
|
|
|
|
is the real content of the page.
|
|
|
|
The content is in PageRev.title and PageRev.content .
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
|
2016-07-27 15:23:02 +00:00
|
|
|
revision = models.IntegerField(_("revision"))
|
2015-12-02 10:09:50 +00:00
|
|
|
title = models.CharField(_("page title"), max_length=255, blank=True)
|
|
|
|
content = models.TextField(_("page content"), blank=True)
|
2018-10-04 19:29:19 +00:00
|
|
|
date = models.DateTimeField(_("date"), auto_now=True)
|
2019-10-05 17:05:56 +00:00
|
|
|
author = models.ForeignKey(User, related_name="page_rev", on_delete=models.CASCADE)
|
|
|
|
page = models.ForeignKey(Page, related_name="revisions", on_delete=models.CASCADE)
|
2015-12-02 10:09:50 +00:00
|
|
|
|
|
|
|
class Meta:
|
2018-10-04 19:29:19 +00:00
|
|
|
ordering = ["date"]
|
2015-12-02 10:09:50 +00:00
|
|
|
|
|
|
|
def get_absolute_url(self):
|
|
|
|
"""
|
|
|
|
This is needed for black magic powered UpdateView's children
|
|
|
|
"""
|
2018-10-04 19:29:19 +00:00
|
|
|
return reverse("core:page", kwargs={"page_name": self.page._full_name})
|
2015-12-02 10:09:50 +00:00
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return str(self.__dict__)
|
|
|
|
|
2015-12-08 08:46:40 +00:00
|
|
|
def __getattribute__(self, attr):
|
|
|
|
if attr == "owner_group":
|
|
|
|
return self.page.owner_group
|
2016-02-05 15:59:42 +00:00
|
|
|
elif attr == "edit_groups":
|
|
|
|
return self.page.edit_groups
|
|
|
|
elif attr == "view_groups":
|
|
|
|
return self.page.view_groups
|
2015-12-08 10:10:29 +00:00
|
|
|
elif attr == "unset_lock":
|
|
|
|
return self.page.unset_lock
|
2015-12-08 08:46:40 +00:00
|
|
|
else:
|
|
|
|
return object.__getattribute__(self, attr)
|
|
|
|
|
2017-10-01 18:52:29 +00:00
|
|
|
def can_be_edited_by(self, user):
|
|
|
|
return self.page.can_be_edited_by(user)
|
|
|
|
|
2015-12-02 15:43:40 +00:00
|
|
|
def save(self, *args, **kwargs):
|
2016-07-27 15:23:02 +00:00
|
|
|
if self.revision is None:
|
|
|
|
self.revision = self.page.revisions.all().count() + 1
|
2015-12-02 15:43:40 +00:00
|
|
|
super(PageRev, self).save(*args, **kwargs)
|
|
|
|
# Don't forget to unlock, otherwise, people will have to wait for the page's timeout
|
|
|
|
self.page.unset_lock()
|
2015-11-26 16:40:31 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-12-08 18:47:28 +00:00
|
|
|
class Notification(models.Model):
|
2019-10-05 17:05:56 +00:00
|
|
|
user = models.ForeignKey(
|
|
|
|
User, related_name="notifications", on_delete=models.CASCADE
|
|
|
|
)
|
2016-12-08 18:47:28 +00:00
|
|
|
url = models.CharField(_("url"), max_length=255)
|
2016-12-09 23:06:17 +00:00
|
|
|
param = models.CharField(_("param"), max_length=128, default="")
|
2018-10-04 19:29:19 +00:00
|
|
|
type = models.CharField(
|
|
|
|
_("type"), max_length=32, choices=settings.SITH_NOTIFICATIONS, default="GENERIC"
|
|
|
|
)
|
|
|
|
date = models.DateTimeField(_("date"), default=timezone.now)
|
2019-09-08 22:45:08 +00:00
|
|
|
viewed = models.BooleanField(_("viewed"), default=False, db_index=True)
|
2016-12-08 18:47:28 +00:00
|
|
|
|
2016-12-09 23:06:17 +00:00
|
|
|
def __str__(self):
|
|
|
|
if self.param:
|
|
|
|
return self.get_type_display() % self.param
|
|
|
|
return self.get_type_display()
|
2017-09-06 11:16:28 +00:00
|
|
|
|
2017-10-15 09:59:41 +00:00
|
|
|
def callback(self):
|
|
|
|
# Get the callback defined in settings to update existing
|
|
|
|
# notifications
|
2018-10-04 19:29:19 +00:00
|
|
|
mod_name, func_name = settings.SITH_PERMANENT_NOTIFICATIONS[self.type].rsplit(
|
|
|
|
".", 1
|
|
|
|
)
|
2017-10-15 09:59:41 +00:00
|
|
|
mod = importlib.import_module(mod_name)
|
|
|
|
getattr(mod, func_name)(self)
|
|
|
|
|
2017-09-06 11:16:28 +00:00
|
|
|
def save(self, *args, **kwargs):
|
|
|
|
if not self.id and self.type in settings.SITH_PERMANENT_NOTIFICATIONS:
|
|
|
|
old_notif = self.user.notifications.filter(type=self.type).last()
|
|
|
|
if old_notif:
|
2017-10-15 09:59:41 +00:00
|
|
|
old_notif.callback()
|
2017-09-06 11:16:28 +00:00
|
|
|
old_notif.save()
|
|
|
|
return
|
|
|
|
super(Notification, self).save(*args, **kwargs)
|
2017-11-05 23:22:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Gift(models.Model):
|
2018-10-04 19:29:19 +00:00
|
|
|
label = models.CharField(_("label"), max_length=255)
|
|
|
|
date = models.DateTimeField(_("date"), default=timezone.now)
|
2019-10-05 17:05:56 +00:00
|
|
|
user = models.ForeignKey(User, related_name="gifts", on_delete=models.CASCADE)
|
2017-11-05 23:22:25 +00:00
|
|
|
|
|
|
|
def __str__(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
return "%s - %s" % (self.translated_label, self.date.strftime("%d %b %Y"))
|
2017-11-13 17:30:05 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def translated_label(self):
|
2018-10-04 19:29:19 +00:00
|
|
|
translations = [
|
|
|
|
label[1] for label in settings.SITH_GIFT_LIST if label[0] == self.label
|
|
|
|
]
|
2017-11-13 17:30:05 +00:00
|
|
|
if len(translations) > 0:
|
|
|
|
return translations[0]
|
|
|
|
return self.label
|
2017-11-05 23:22:25 +00:00
|
|
|
|
|
|
|
def is_owned_by(self, user):
|
|
|
|
return user.is_board_member or user.is_root
|