2017-04-24 15:51:12 +00:00
|
|
|
#
|
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.
|
|
|
|
#
|
|
|
|
#
|
2024-07-12 07:34:16 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2017-09-06 11:16:28 +00:00
|
|
|
import importlib
|
2024-08-06 09:42:10 +00:00
|
|
|
import logging
|
2024-06-24 11:07:36 +00:00
|
|
|
import os
|
|
|
|
import unicodedata
|
2024-10-06 11:22:09 +00:00
|
|
|
from datetime import timedelta
|
2024-07-26 13:14:37 +00:00
|
|
|
from pathlib import Path
|
2024-10-06 11:22:09 +00:00
|
|
|
from typing import TYPE_CHECKING, Any, Optional, Self
|
2017-04-24 15:51:12 +00:00
|
|
|
|
2024-06-24 11:07:36 +00:00
|
|
|
from django.conf import settings
|
2024-10-06 11:22:09 +00:00
|
|
|
from django.contrib.auth.models import AbstractBaseUser, UserManager
|
2024-06-24 11:07:36 +00:00
|
|
|
from django.contrib.auth.models import (
|
|
|
|
AnonymousUser as AuthAnonymousUser,
|
|
|
|
)
|
|
|
|
from django.contrib.auth.models import (
|
2018-10-04 19:29:19 +00:00
|
|
|
Group as AuthGroup,
|
2024-06-24 11:07:36 +00:00
|
|
|
)
|
|
|
|
from django.contrib.auth.models import (
|
2018-10-04 19:29:19 +00:00
|
|
|
GroupManager as AuthGroupManager,
|
|
|
|
)
|
2024-06-24 11:07:36 +00:00
|
|
|
from django.contrib.staticfiles.storage import staticfiles_storage
|
2015-11-23 16:23:00 +00:00
|
|
|
from django.core import validators
|
2024-06-24 11:07:36 +00:00
|
|
|
from django.core.cache import cache
|
|
|
|
from django.core.exceptions import PermissionDenied, ValidationError
|
|
|
|
from django.core.mail import send_mail
|
2023-05-02 10:36:59 +00:00
|
|
|
from django.db import models, transaction
|
2024-10-06 11:22:09 +00:00
|
|
|
from django.db.models import Exists, OuterRef, Q
|
2024-06-24 11:07:36 +00:00
|
|
|
from django.urls import reverse
|
|
|
|
from django.utils import timezone
|
2017-02-24 00:50:14 +00:00
|
|
|
from django.utils.functional import cached_property
|
2024-06-24 11:07:36 +00:00
|
|
|
from django.utils.html import escape
|
2024-10-06 11:22:09 +00:00
|
|
|
from django.utils.timezone import localdate, now
|
2024-06-24 11:07:36 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2016-08-13 03:33:09 +00:00
|
|
|
from phonenumber_field.modelfields import PhoneNumberField
|
|
|
|
|
2024-07-12 07:34:16 +00:00
|
|
|
if TYPE_CHECKING:
|
2024-10-06 11:22:09 +00:00
|
|
|
from pydantic import NonNegativeInt
|
|
|
|
|
2024-07-12 07:34:16 +00:00
|
|
|
from club.models import Club
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-03-29 10:45:10 +00:00
|
|
|
class RealGroupManager(AuthGroupManager):
|
|
|
|
def get_queryset(self):
|
2024-06-27 12:46:43 +00:00
|
|
|
return super().get_queryset().filter(is_meta=False)
|
2016-03-29 10:45:10 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-03-29 10:45:10 +00:00
|
|
|
class MetaGroupManager(AuthGroupManager):
|
|
|
|
def get_queryset(self):
|
2024-06-27 12:46:43 +00:00
|
|
|
return super().get_queryset().filter(is_meta=True)
|
2016-03-29 10:45:10 +00:00
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2015-12-03 15:47:03 +00:00
|
|
|
class Group(AuthGroup):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Implement both RealGroups and Meta groups.
|
2019-11-20 16:55:00 +00:00
|
|
|
|
|
|
|
Groups are sorted by their is_meta property
|
|
|
|
"""
|
|
|
|
|
|
|
|
#: If False, this is a RealGroup
|
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
|
|
|
)
|
2019-11-20 16:55:00 +00:00
|
|
|
#: Description of the group
|
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
|
|
|
|
2024-10-06 11:22:09 +00:00
|
|
|
def get_absolute_url(self) -> str:
|
2018-10-04 19:29:19 +00:00
|
|
|
return reverse("core:group_list")
|
2015-12-03 15:47:03 +00:00
|
|
|
|
2024-10-06 11:22:09 +00:00
|
|
|
def save(self, *args, **kwargs) -> None:
|
2023-05-02 10:36:59 +00:00
|
|
|
super().save(*args, **kwargs)
|
|
|
|
cache.set(f"sith_group_{self.id}", self)
|
|
|
|
cache.set(f"sith_group_{self.name.replace(' ', '_')}", self)
|
|
|
|
|
2024-10-06 11:22:09 +00:00
|
|
|
def delete(self, *args, **kwargs) -> None:
|
2023-05-02 10:36:59 +00:00
|
|
|
super().delete(*args, **kwargs)
|
|
|
|
cache.delete(f"sith_group_{self.id}")
|
|
|
|
cache.delete(f"sith_group_{self.name.replace(' ', '_')}")
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-03-29 10:45:10 +00:00
|
|
|
class MetaGroup(Group):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""MetaGroups are dynamically created groups.
|
|
|
|
|
2023-05-02 10:36:59 +00:00
|
|
|
Generally used with clubs where creating a club creates two groups:
|
2019-11-20 16:55:00 +00:00
|
|
|
|
2023-05-02 10:36:59 +00:00
|
|
|
* club-SITH_BOARD_SUFFIX
|
|
|
|
* club-SITH_MEMBER_SUFFIX
|
2019-11-20 16:55:00 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
#: Assign a manager in a way that MetaGroup.objects only return groups with is_meta=False
|
2016-03-29 10:45:10 +00:00
|
|
|
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):
|
2024-06-27 12:46:43 +00:00
|
|
|
super().__init__(*args, **kwargs)
|
2016-03-29 10:45:10 +00:00
|
|
|
self.is_meta = True
|
|
|
|
|
2023-05-02 10:36:59 +00:00
|
|
|
@cached_property
|
2024-07-12 07:34:16 +00:00
|
|
|
def associated_club(self) -> Club | None:
|
|
|
|
"""Return the group associated with this meta group.
|
2023-05-02 10:36:59 +00:00
|
|
|
|
|
|
|
The result of this function is cached
|
|
|
|
|
2024-07-12 07:34:16 +00:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
The associated club if it exists, else None
|
2023-05-02 10:36:59 +00:00
|
|
|
"""
|
|
|
|
from club.models import Club
|
|
|
|
|
|
|
|
if self.name.endswith(settings.SITH_BOARD_SUFFIX):
|
|
|
|
# replace this with str.removesuffix as soon as Python
|
|
|
|
# is upgraded to 3.10
|
|
|
|
club_name = self.name[: -len(settings.SITH_BOARD_SUFFIX)]
|
|
|
|
elif self.name.endswith(settings.SITH_MEMBER_SUFFIX):
|
|
|
|
club_name = self.name[: -len(settings.SITH_MEMBER_SUFFIX)]
|
|
|
|
else:
|
|
|
|
return None
|
|
|
|
club = cache.get(f"sith_club_{club_name}")
|
|
|
|
if club is None:
|
|
|
|
club = Club.objects.filter(unix_name=club_name).first()
|
|
|
|
cache.set(f"sith_club_{club_name}", club)
|
|
|
|
return club
|
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2016-03-29 10:45:10 +00:00
|
|
|
class RealGroup(Group):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""RealGroups are created by the developer.
|
|
|
|
|
2019-11-20 16:55:00 +00:00
|
|
|
Most of the time they match a number in settings to be easily used for permissions.
|
|
|
|
"""
|
|
|
|
|
|
|
|
#: Assign a manager in a way that MetaGroup.objects only return groups with is_meta=True
|
2016-03-29 10:45:10 +00:00
|
|
|
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
|
|
|
|
2024-10-06 11:22:09 +00:00
|
|
|
def validate_promo(value: int) -> None:
|
2016-08-11 02:24:32 +00:00
|
|
|
start_year = settings.SITH_SCHOOL_START_YEAR
|
2024-10-06 11:22:09 +00:00
|
|
|
delta = (localdate() + 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
|
|
|
|
2024-10-06 11:22:09 +00:00
|
|
|
def get_group(*, pk: int = None, name: str = None) -> Group | None:
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Search for a group by its primary key or its name.
|
2023-05-02 10:36:59 +00:00
|
|
|
Either one of the two must be set.
|
|
|
|
|
|
|
|
The result is cached for the default duration (should be 5 minutes).
|
|
|
|
|
2024-07-12 07:34:16 +00:00
|
|
|
Args:
|
|
|
|
pk: The primary key of the group
|
|
|
|
name: The name of the group
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
The group if it exists, else None
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
ValueError: If no group matches the criteria
|
2023-05-02 10:36:59 +00:00
|
|
|
"""
|
|
|
|
if pk is None and name is None:
|
|
|
|
raise ValueError("Either pk or name must be set")
|
2023-05-12 11:27:51 +00:00
|
|
|
|
|
|
|
# replace space characters to hide warnings with memcached backend
|
2024-07-12 07:34:16 +00:00
|
|
|
pk_or_name: str | int = pk if pk is not None else name.replace(" ", "_")
|
2023-05-02 10:36:59 +00:00
|
|
|
group = cache.get(f"sith_group_{pk_or_name}")
|
2023-05-12 11:27:51 +00:00
|
|
|
|
2023-05-02 10:36:59 +00:00
|
|
|
if group == "not_found":
|
|
|
|
# Using None as a cache value is a little bit tricky,
|
|
|
|
# so we use a special string to represent None
|
|
|
|
return None
|
|
|
|
elif group is not None:
|
|
|
|
return group
|
|
|
|
# if this point is reached, the group is not in cache
|
|
|
|
if pk is not None:
|
|
|
|
group = Group.objects.filter(pk=pk).first()
|
|
|
|
else:
|
|
|
|
group = Group.objects.filter(name=name).first()
|
|
|
|
if group is not None:
|
|
|
|
cache.set(f"sith_group_{group.id}", group)
|
|
|
|
cache.set(f"sith_group_{group.name.replace(' ', '_')}", group)
|
|
|
|
else:
|
|
|
|
cache.set(f"sith_group_{pk_or_name}", "not_found")
|
|
|
|
return group
|
|
|
|
|
|
|
|
|
2024-10-06 11:22:09 +00:00
|
|
|
class UserQuerySet(models.QuerySet):
|
|
|
|
def filter_inactive(self) -> Self:
|
|
|
|
from counter.models import Refilling, Selling
|
|
|
|
from subscription.models import Subscription
|
|
|
|
|
|
|
|
threshold = now() - settings.SITH_ACCOUNT_INACTIVITY_DELTA
|
|
|
|
subscriptions = Subscription.objects.filter(
|
|
|
|
member_id=OuterRef("pk"), subscription_end__gt=localdate(threshold)
|
|
|
|
)
|
|
|
|
refills = Refilling.objects.filter(
|
|
|
|
customer__user_id=OuterRef("pk"), date__gt=threshold
|
|
|
|
)
|
|
|
|
purchases = Selling.objects.filter(
|
|
|
|
customer__user_id=OuterRef("pk"), date__gt=threshold
|
|
|
|
)
|
|
|
|
return self.exclude(
|
|
|
|
Q(Exists(subscriptions)) | Q(Exists(refills)) | Q(Exists(purchases))
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class CustomUserManager(UserManager.from_queryset(UserQuerySet)):
|
|
|
|
# see https://docs.djangoproject.com/fr/stable/topics/migrations/#model-managers
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2016-07-17 22:47:56 +00:00
|
|
|
class User(AbstractBaseUser):
|
2024-07-12 07:34:16 +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,
|
2020-02-16 16:51:51 +00:00
|
|
|
null=True,
|
|
|
|
blank=True,
|
2021-09-30 16:17:22 +00:00
|
|
|
choices=[("MAN", _("Man")), ("WOMAN", _("Woman")), ("OTHER", _("Other"))],
|
2018-10-04 19:29:19 +00:00
|
|
|
)
|
2021-11-18 09:07:19 +00:00
|
|
|
pronouns = models.CharField(_("pronouns"), max_length=64, blank=True, default="")
|
2018-10-04 19:29:19 +00:00
|
|
|
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
|
|
|
|
2024-10-06 11:22:09 +00:00
|
|
|
objects = CustomUserManager()
|
2015-11-18 16:09:06 +00:00
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
USERNAME_FIELD = "username"
|
2015-11-18 16:09:06 +00:00
|
|
|
|
2024-10-06 11:22:09 +00:00
|
|
|
def __str__(self):
|
|
|
|
return self.get_display_name()
|
|
|
|
|
|
|
|
def save(self, *args, **kwargs):
|
|
|
|
with transaction.atomic():
|
|
|
|
if self.id:
|
|
|
|
old = User.objects.filter(id=self.id).first()
|
|
|
|
if old and old.username != self.username:
|
|
|
|
self._change_username(self.username)
|
|
|
|
super().save(*args, **kwargs)
|
|
|
|
|
|
|
|
def get_absolute_url(self) -> str:
|
|
|
|
return reverse("core:user_profile", kwargs={"user_id": self.pk})
|
|
|
|
|
|
|
|
def promo_has_logo(self) -> bool:
|
2024-07-26 13:14:37 +00:00
|
|
|
return Path(
|
|
|
|
settings.BASE_DIR / f"core/static/core/img/promo_{self.promo}.png"
|
|
|
|
).exists()
|
2023-04-04 20:50:19 +00:00
|
|
|
|
2024-10-06 11:22:09 +00:00
|
|
|
def has_module_perms(self, package_name: str) -> bool:
|
2016-07-20 14:34:18 +00:00
|
|
|
return self.is_active
|
|
|
|
|
2024-10-06 11:22:09 +00:00
|
|
|
def has_perm(self, perm: str, obj: Any = None) -> bool:
|
2016-07-20 14:34:18 +00:00
|
|
|
return self.is_active and self.is_superuser
|
|
|
|
|
2017-02-24 01:59:59 +00:00
|
|
|
@cached_property
|
2024-10-06 11:22:09 +00:00
|
|
|
def was_subscribed(self) -> bool:
|
2016-12-12 15:35:52 +00:00
|
|
|
return self.subscriptions.exists()
|
|
|
|
|
2017-02-24 01:59:59 +00:00
|
|
|
@cached_property
|
2024-10-06 11:22:09 +00:00
|
|
|
def is_subscribed(self) -> bool:
|
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
|
|
|
|
2022-09-25 19:29:42 +00:00
|
|
|
@cached_property
|
|
|
|
def account_balance(self):
|
|
|
|
if hasattr(self, "customer"):
|
|
|
|
return self.customer.amount
|
|
|
|
else:
|
|
|
|
return 0
|
|
|
|
|
2023-05-02 10:36:59 +00:00
|
|
|
def is_in_group(self, *, pk: int = None, name: str = None) -> bool:
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Check if this user is in the given group.
|
2023-05-02 10:36:59 +00:00
|
|
|
Either a group id or a group name must be provided.
|
|
|
|
If both are passed, only the id will be considered.
|
|
|
|
|
|
|
|
The group will be fetched using the given parameter.
|
|
|
|
If no group is found, return False.
|
|
|
|
If a group is found, check if this user is in the latter.
|
|
|
|
|
2024-07-12 07:34:16 +00:00
|
|
|
Returns:
|
|
|
|
True if the user is the group, else False
|
2023-05-02 10:36:59 +00:00
|
|
|
"""
|
|
|
|
if pk is not None:
|
|
|
|
group: Optional[Group] = get_group(pk=pk)
|
|
|
|
elif name is not None:
|
|
|
|
group: Optional[Group] = get_group(name=name)
|
2016-12-11 16:51:44 +00:00
|
|
|
else:
|
2023-05-02 10:36:59 +00:00
|
|
|
raise ValueError("You must either provide the id or the name of the group")
|
|
|
|
if group is None:
|
2016-12-11 16:51:44 +00:00
|
|
|
return False
|
2023-05-02 10:36:59 +00:00
|
|
|
if group.id == settings.SITH_GROUP_PUBLIC_ID:
|
2016-03-22 16:46:26 +00:00
|
|
|
return True
|
2023-05-02 10:36:59 +00:00
|
|
|
if group.id == settings.SITH_GROUP_SUBSCRIBERS_ID:
|
2017-02-24 01:59:59 +00:00
|
|
|
return self.is_subscribed
|
2023-05-02 10:36:59 +00:00
|
|
|
if group.id == settings.SITH_GROUP_OLD_SUBSCRIBERS_ID:
|
2017-02-24 01:59:59 +00:00
|
|
|
return self.was_subscribed
|
2023-05-02 10:36:59 +00:00
|
|
|
if group.id == settings.SITH_GROUP_ROOT_ID:
|
|
|
|
return self.is_root
|
|
|
|
if group.is_meta:
|
|
|
|
# check if this group is associated with a club
|
|
|
|
group.__class__ = MetaGroup
|
|
|
|
club = group.associated_club
|
|
|
|
if club is None:
|
|
|
|
return False
|
|
|
|
membership = club.get_membership_for(self)
|
|
|
|
if membership is None:
|
|
|
|
return False
|
|
|
|
if group.name.endswith(settings.SITH_MEMBER_SUFFIX):
|
2016-08-10 12:48:18 +00:00
|
|
|
return True
|
2023-05-02 10:36:59 +00:00
|
|
|
return membership.role > settings.SITH_MAXIMUM_FREE_ROLE
|
|
|
|
return group in self.cached_groups
|
2018-12-13 17:11:06 +00:00
|
|
|
|
2023-05-02 10:36:59 +00:00
|
|
|
@property
|
2024-07-12 07:34:16 +00:00
|
|
|
def cached_groups(self) -> list[Group]:
|
|
|
|
"""Get the list of groups this user is in.
|
|
|
|
|
2023-05-02 10:36:59 +00:00
|
|
|
The result is cached for the default duration (should be 5 minutes)
|
2024-07-12 07:34:16 +00:00
|
|
|
|
|
|
|
Returns: A list of all the groups this user is in.
|
2023-05-02 10:36:59 +00:00
|
|
|
"""
|
|
|
|
groups = cache.get(f"user_{self.id}_groups")
|
|
|
|
if groups is None:
|
|
|
|
groups = list(self.groups.all())
|
|
|
|
cache.set(f"user_{self.id}_groups", groups)
|
|
|
|
return groups
|
2016-03-15 17:26:03 +00:00
|
|
|
|
2017-02-24 00:50:14 +00:00
|
|
|
@cached_property
|
2023-05-02 10:36:59 +00:00
|
|
|
def is_root(self) -> bool:
|
|
|
|
if self.is_superuser:
|
|
|
|
return True
|
|
|
|
root_id = settings.SITH_GROUP_ROOT_ID
|
|
|
|
return any(g.id == root_id for g in self.cached_groups)
|
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):
|
2023-05-02 10:36:59 +00:00
|
|
|
main_club = settings.SITH_MAIN_CLUB["unix_name"]
|
|
|
|
return self.is_in_group(name=main_club + settings.SITH_BOARD_SUFFIX)
|
2017-07-21 22:40:51 +00:00
|
|
|
|
2022-08-31 16:39:49 +00:00
|
|
|
@cached_property
|
2022-08-31 18:53:08 +00:00
|
|
|
def can_read_subscription_history(self):
|
|
|
|
if self.is_root or self.is_board_member:
|
|
|
|
return True
|
|
|
|
|
2022-08-31 16:39:49 +00:00
|
|
|
from club.models import Club
|
|
|
|
|
|
|
|
for club in Club.objects.filter(
|
2022-08-31 18:53:08 +00:00
|
|
|
id__in=settings.SITH_CAN_READ_SUBSCRIPTION_HISTORY
|
2023-05-02 10:36:59 +00:00
|
|
|
):
|
|
|
|
if club in self.clubs_with_rights:
|
2022-08-31 16:39:49 +00:00
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
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
|
|
|
|
2023-05-02 10:36:59 +00:00
|
|
|
for club in Club.objects.filter(id__in=settings.SITH_CAN_CREATE_SUBSCRIPTIONS):
|
|
|
|
if club in self.clubs_with_rights:
|
2017-07-21 22:40:51 +00:00
|
|
|
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):
|
2023-05-02 10:36:59 +00:00
|
|
|
return self.is_in_group(pk=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):
|
2023-05-02 10:36:59 +00:00
|
|
|
return self.is_in_group(pk=settings.SITH_GROUP_BANNED_COUNTER_ID)
|
2016-10-16 01:45:06 +00:00
|
|
|
|
2022-09-25 19:29:42 +00:00
|
|
|
@cached_property
|
|
|
|
def age(self) -> int:
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Return the age this user has the day the method is called.
|
|
|
|
If the user has not filled his age, return 0.
|
2022-09-25 19:29:42 +00:00
|
|
|
"""
|
2022-11-12 12:59:58 +00:00
|
|
|
if self.date_of_birth is None:
|
|
|
|
return 0
|
2022-09-25 19:29:42 +00:00
|
|
|
today = timezone.now()
|
|
|
|
age = today.year - self.date_of_birth.year
|
|
|
|
# remove a year if this year's birthday is yet to come
|
|
|
|
age -= (today.month, today.day) < (
|
|
|
|
self.date_of_birth.month,
|
|
|
|
self.date_of_birth.day,
|
|
|
|
)
|
|
|
|
return age
|
|
|
|
|
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):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""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):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""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
|
|
|
|
2024-07-12 07:34:16 +00:00
|
|
|
def get_display_name(self) -> str:
|
|
|
|
"""Returns the display name of the user.
|
|
|
|
|
|
|
|
A nickname if possible, otherwise, the full name.
|
2015-11-19 08:46:05 +00:00
|
|
|
"""
|
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):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""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
|
|
|
|
2024-09-17 10:10:06 +00:00
|
|
|
def get_family(
|
|
|
|
self,
|
|
|
|
godfathers_depth: NonNegativeInt = 4,
|
|
|
|
godchildren_depth: NonNegativeInt = 4,
|
|
|
|
) -> set[User.godfathers.through]:
|
|
|
|
"""Get the family of the user, with the given depth.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
godfathers_depth: The number of generations of godfathers to fetch
|
|
|
|
godchildren_depth: The number of generations of godchildren to fetch
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
A list of family relationships in this user's family
|
|
|
|
"""
|
|
|
|
res = []
|
|
|
|
for depth, key, reverse_key in [
|
|
|
|
(godfathers_depth, "from_user_id", "to_user_id"),
|
|
|
|
(godchildren_depth, "to_user_id", "from_user_id"),
|
|
|
|
]:
|
|
|
|
if depth == 0:
|
|
|
|
continue
|
|
|
|
links = list(User.godfathers.through.objects.filter(**{key: self.id}))
|
|
|
|
res.extend(links)
|
|
|
|
for _ in range(1, depth):
|
|
|
|
ids = [getattr(c, reverse_key) for c in links]
|
|
|
|
links = list(
|
|
|
|
User.godfathers.through.objects.filter(
|
|
|
|
**{f"{key}__in": ids}
|
|
|
|
).exclude(id__in=[r.id for r in res])
|
|
|
|
)
|
|
|
|
if not links:
|
|
|
|
break
|
|
|
|
res.extend(links)
|
|
|
|
return set(res)
|
|
|
|
|
2015-11-18 16:09:06 +00:00
|
|
|
def email_user(self, subject, message, from_email=None, **kwargs):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""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)
|
|
|
|
|
2024-07-12 07:34:16 +00:00
|
|
|
def generate_username(self) -> str:
|
|
|
|
"""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.
|
2015-11-18 16:09:06 +00:00
|
|
|
"""
|
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):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""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
|
2023-05-02 10:36:59 +00:00
|
|
|
if hasattr(obj, "owner_group") and self.is_in_group(pk=obj.owner_group.id):
|
2016-05-31 11:00:24 +00:00
|
|
|
return True
|
2023-05-02 10:36:59 +00:00
|
|
|
if self.is_root:
|
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):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""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"):
|
2023-05-02 10:36:59 +00:00
|
|
|
for pk in obj.edit_groups.values_list("pk", flat=True):
|
|
|
|
if self.is_in_group(pk=pk):
|
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):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""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"):
|
2023-05-02 10:36:59 +00:00
|
|
|
for pk in obj.view_groups.values_list("pk", flat=True):
|
|
|
|
if self.is_in_group(pk=pk):
|
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):
|
2023-05-02 10:36:59 +00:00
|
|
|
return user.is_root or user.is_board_member
|
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>
|
|
|
|
""" % (
|
2024-06-24 09:56:38 +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-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
|
2024-07-12 07:34:16 +00:00
|
|
|
def clubs_with_rights(self) -> list[Club]:
|
|
|
|
"""The list of clubs where the user has rights"""
|
2023-05-02 10:36:59 +00:00
|
|
|
memberships = self.memberships.ongoing().board().select_related("club")
|
|
|
|
return [m.club for m in memberships]
|
2017-11-01 17:12:33 +00:00
|
|
|
|
2017-12-05 14:24:46 +00:00
|
|
|
@cached_property
|
|
|
|
def is_com_admin(self):
|
2023-05-02 10:36:59 +00:00
|
|
|
return self.is_in_group(pk=settings.SITH_GROUP_COM_ADMIN_ID)
|
2017-12-05 14:24:46 +00:00
|
|
|
|
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):
|
2024-06-27 12:46:43 +00:00
|
|
|
super().__init__()
|
2015-12-14 14:43:30 +00:00
|
|
|
|
2017-07-21 22:40:51 +00:00
|
|
|
@property
|
|
|
|
def can_create_subscription(self):
|
|
|
|
return False
|
|
|
|
|
2022-08-31 16:39:49 +00:00
|
|
|
@property
|
2022-08-31 18:53:08 +00:00
|
|
|
def can_read_subscription_history(self):
|
2022-08-31 16:39:49 +00:00
|
|
|
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
|
|
|
|
|
2023-05-02 10:36:59 +00:00
|
|
|
def is_in_group(self, *, pk: int = None, name: str = None) -> bool:
|
2024-07-12 07:34:16 +00:00
|
|
|
"""The anonymous user is only in the public group."""
|
2023-05-02 10:36:59 +00:00
|
|
|
allowed_id = settings.SITH_GROUP_PUBLIC_ID
|
|
|
|
if pk is not None:
|
|
|
|
return pk == allowed_id
|
|
|
|
elif name is not None:
|
|
|
|
group = get_group(name=name)
|
|
|
|
return group is not None and group.id == allowed_id
|
|
|
|
else:
|
|
|
|
raise ValueError("You must either provide the id or the name of the group")
|
2016-06-20 13:47:19 +00:00
|
|
|
|
2015-12-14 14:43:30 +00:00
|
|
|
def is_owner(self, obj):
|
|
|
|
return False
|
|
|
|
|
|
|
|
def can_edit(self, obj):
|
|
|
|
return False
|
|
|
|
|
2023-09-07 21:53:42 +00:00
|
|
|
@property
|
|
|
|
def is_com_admin(self):
|
|
|
|
return False
|
|
|
|
|
2015-12-14 14:43:30 +00:00
|
|
|
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
|
|
|
|
)
|
2023-03-30 12:38:40 +00:00
|
|
|
receive_weekmail = models.BooleanField(_("receive the Weekmail"), default=False)
|
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
|
|
|
)
|
|
|
|
|
2024-06-27 13:48:07 +00:00
|
|
|
def __str__(self):
|
|
|
|
return f"Preferences of {self.user}"
|
2017-01-11 00:34:16 +00:00
|
|
|
|
|
|
|
def get_absolute_url(self):
|
|
|
|
return self.user.get_absolute_url()
|
|
|
|
|
2024-06-27 13:48:07 +00:00
|
|
|
def get_display_name(self):
|
|
|
|
return self.user.get_display_name()
|
|
|
|
|
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")
|
|
|
|
|
2024-06-27 13:48:07 +00:00
|
|
|
def __str__(self):
|
|
|
|
return self.get_parent_path() + "/" + self.name
|
|
|
|
|
|
|
|
def save(self, *args, **kwargs):
|
|
|
|
sas = SithFile.objects.filter(id=settings.SITH_SAS_ROOT_DIR_ID).first()
|
|
|
|
self.is_in_sas = sas in self.get_parent_list() or self == sas
|
|
|
|
copy_rights = False
|
|
|
|
if self.id is None:
|
|
|
|
copy_rights = True
|
|
|
|
super().save(*args, **kwargs)
|
|
|
|
if copy_rights:
|
|
|
|
self.copy_rights()
|
|
|
|
if self.is_in_sas:
|
|
|
|
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
|
|
|
def is_owned_by(self, user):
|
2023-05-02 10:36:59 +00:00
|
|
|
if user.is_anonymous:
|
|
|
|
return False
|
2024-09-09 19:37:28 +00:00
|
|
|
if user.is_root:
|
2016-09-01 09:27:00 +00:00
|
|
|
return True
|
2024-09-09 19:37:28 +00:00
|
|
|
if hasattr(self, "profile_of"):
|
|
|
|
# if the `profile_of` attribute is set, this file is a profile picture
|
|
|
|
# and profile pictures may only be edited by board members
|
|
|
|
return user.is_board_member
|
2023-05-02 10:36:59 +00:00
|
|
|
if user.is_com_admin:
|
2016-11-09 08:13:57 +00:00
|
|
|
return True
|
2024-10-05 18:53:52 +00:00
|
|
|
if self.is_in_sas and user.is_in_group(pk=settings.SITH_GROUP_SAS_ADMIN_ID):
|
|
|
|
return True
|
2024-08-06 11:23:34 +00:00
|
|
|
return user.id == self.owner_id
|
2016-08-10 03:48:06 +00:00
|
|
|
|
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
|
|
|
|
|
2024-09-09 19:37:28 +00:00
|
|
|
def delete(self, *args, **kwargs):
|
2016-08-10 03:48:06 +00:00
|
|
|
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()
|
2024-06-27 12:46:43 +00:00
|
|
|
return super().delete()
|
2016-08-10 03:48:06 +00:00
|
|
|
|
|
|
|
def clean(self):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Cleans up the file."""
|
2024-06-27 12:46:43 +00:00
|
|
|
super().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"))
|
|
|
|
|
2024-09-24 10:38:10 +00:00
|
|
|
def apply_rights_recursively(self, *, only_folders: bool = False) -> None:
|
|
|
|
"""Apply the rights of this file to all children recursively.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
only_folders: If True, only apply the rights to SithFiles that are folders.
|
|
|
|
"""
|
|
|
|
file_ids = []
|
|
|
|
explored_ids = [self.id]
|
|
|
|
while len(explored_ids) > 0: # find all children recursively
|
|
|
|
file_ids.extend(explored_ids)
|
|
|
|
next_level = SithFile.objects.filter(parent_id__in=explored_ids)
|
|
|
|
if only_folders:
|
|
|
|
next_level = next_level.filter(is_folder=True)
|
|
|
|
explored_ids = list(next_level.values_list("id", flat=True))
|
|
|
|
for through in (SithFile.view_groups.through, SithFile.edit_groups.through):
|
|
|
|
# force evaluation. Without this, the iterator yields nothing
|
|
|
|
groups = list(
|
|
|
|
through.objects.filter(sithfile_id=self.id).values_list(
|
|
|
|
"group_id", flat=True
|
|
|
|
)
|
|
|
|
)
|
|
|
|
# delete previous rights
|
|
|
|
through.objects.filter(sithfile_id__in=file_ids).delete()
|
|
|
|
through.objects.bulk_create( # create new rights
|
|
|
|
[through(sithfile_id=f, group_id=g) for f in file_ids for g in groups]
|
|
|
|
)
|
2016-12-18 18:08:25 +00:00
|
|
|
|
2016-08-10 03:48:06 +00:00
|
|
|
def copy_rights(self):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Copy, if possible, the rights of the parent folder."""
|
2016-08-10 03:48:06 +00:00
|
|
|
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
|
|
|
|
2016-12-12 23:45:20 +00:00
|
|
|
def move_to(self, parent):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Move a file to a new parent.
|
2018-03-20 21:09:27 +00:00
|
|
|
`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):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Rebuilds recursively the filesystem as it should be regarding the DB tree."""
|
2018-03-20 21:09:27 +00:00
|
|
|
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
|
|
|
|
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()
|
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()
|
|
|
|
# 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:
|
2024-08-06 09:42:10 +00:00
|
|
|
logging.error(e)
|
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):
|
2024-08-06 09:42:10 +00:00
|
|
|
print("%s: WARNING: real file does not exists!" % self.id) # noqa T201
|
|
|
|
print("file path: %s" % file_path, end="") # noqa T201
|
|
|
|
print(" db path: %s" % db_path) # noqa T201
|
2018-04-05 19:16:01 +00:00
|
|
|
return False
|
2018-03-20 21:09:27 +00:00
|
|
|
if file_path != db_path:
|
2024-08-06 09:42:10 +00:00
|
|
|
print("%s: " % self.id, end="") # noqa T201
|
|
|
|
print("file path: %s" % file_path, end="") # noqa T201
|
|
|
|
print(" db path: %s" % db_path) # noqa T201
|
2018-03-20 21:09:27 +00:00
|
|
|
return False
|
2018-04-18 20:54:30 +00:00
|
|
|
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
|
|
|
|
2024-08-04 20:30:54 +00:00
|
|
|
@property
|
|
|
|
def is_file(self):
|
|
|
|
return not self.is_folder
|
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 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
|
|
|
|
2017-06-12 07:42:03 +00:00
|
|
|
|
2015-12-02 15:43:40 +00:00
|
|
|
class LockError(Exception):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""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):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""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):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""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
|
|
|
|
2024-06-27 13:48:07 +00:00
|
|
|
# This function prevents generating migration upon settings change
|
|
|
|
def get_default_owner_group():
|
|
|
|
return settings.SITH_GROUP_ROOT_ID
|
|
|
|
|
|
|
|
|
2015-12-03 15:47:03 +00:00
|
|
|
class Page(models.Model):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""The page class to build a Wiki
|
2015-11-24 09:53:16 +00:00
|
|
|
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!
|
2024-07-12 07:34:16 +00:00
|
|
|
Prefere querying pages with Page.get_page_by_full_name().
|
2015-11-24 09:53:16 +00:00
|
|
|
|
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)
|
2023-04-22 13:32:31 +00:00
|
|
|
|
2018-10-04 19:29:19 +00:00
|
|
|
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
|
|
|
)
|
|
|
|
|
2024-06-27 13:48:07 +00:00
|
|
|
def __str__(self):
|
|
|
|
return self.get_full_name()
|
|
|
|
|
|
|
|
def save(self, *args, **kwargs):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Performs some needed actions before and after saving a page in database."""
|
2024-06-27 13:48:07 +00:00
|
|
|
locked = kwargs.pop("force_lock", False)
|
|
|
|
if not locked:
|
|
|
|
locked = self.is_locked()
|
|
|
|
if not locked:
|
|
|
|
raise NotLocked("The page is not locked and thus can not be saved")
|
|
|
|
self.full_clean()
|
|
|
|
if not self.id:
|
|
|
|
super().save(
|
|
|
|
*args, **kwargs
|
|
|
|
) # Save a first time to correctly set _full_name
|
|
|
|
# This reset the _full_name just before saving to maintain a coherent field quicker for queries than the
|
|
|
|
# recursive method
|
|
|
|
# It also update all the children to maintain correct names
|
|
|
|
self._full_name = self.get_full_name()
|
|
|
|
for c in self.children.all():
|
|
|
|
c.save()
|
|
|
|
super().save(*args, **kwargs)
|
|
|
|
self.unset_lock()
|
|
|
|
|
|
|
|
def get_absolute_url(self):
|
|
|
|
return reverse("core:page", kwargs={"page_name": self._full_name})
|
|
|
|
|
2015-11-23 16:23:00 +00:00
|
|
|
@staticmethod
|
|
|
|
def get_page_by_full_name(name):
|
2024-07-12 07:34: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 clean(self):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Cleans up only the name for the moment, but this can be used to make any treatment before saving the object."""
|
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")
|
2024-06-27 12:46:43 +00:00
|
|
|
super().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-12-02 15:43:40 +00:00
|
|
|
def is_locked(self):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""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.
|
2015-12-02 15:43:40 +00:00
|
|
|
"""
|
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):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""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()
|
2024-06-27 12:46:43 +00:00
|
|
|
super().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):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Locks recursively all the child pages for editing properties."""
|
2015-12-02 15:43:40 +00:00
|
|
|
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):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Unlocks recursively all the child pages."""
|
2017-03-08 12:25:23 +00:00
|
|
|
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):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""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
|
2024-06-27 12:46:43 +00:00
|
|
|
super().save()
|
2015-12-08 10:10:29 +00:00
|
|
|
# print("Unlocking page")
|
2015-12-02 15:43:40 +00:00
|
|
|
|
|
|
|
def get_lock(self):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""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
|
|
|
|
|
|
|
def get_full_name(self):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""Computes the real full_name of the page based on its name and its parent's name
|
2015-11-24 09:53:16 +00:00
|
|
|
You can and must rely on this function when working on a page object that is not freshly fetched from the DB
|
2024-07-12 07:34:16 +00:00
|
|
|
(For example when treating a Page object coming from a form).
|
2015-11-24 09:53:16 +00:00
|
|
|
"""
|
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()
|
2024-06-27 12:46:43 +00:00
|
|
|
super().delete()
|
2017-03-08 12:25:23 +00:00
|
|
|
|
|
|
|
|
2015-12-02 10:09:50 +00:00
|
|
|
class PageRev(models.Model):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""True content of the page.
|
|
|
|
|
2015-12-09 10:22:50 +00:00
|
|
|
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
|
|
|
|
2024-06-27 13:48:07 +00:00
|
|
|
def __str__(self):
|
|
|
|
return str(self.__dict__)
|
|
|
|
|
|
|
|
def save(self, *args, **kwargs):
|
|
|
|
if self.revision is None:
|
|
|
|
self.revision = self.page.revisions.all().count() + 1
|
|
|
|
super().save(*args, **kwargs)
|
|
|
|
# Don't forget to unlock, otherwise, people will have to wait for the page's timeout
|
|
|
|
self.page.unset_lock()
|
|
|
|
|
2015-12-02 10:09:50 +00:00
|
|
|
def get_absolute_url(self):
|
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
|
|
|
|
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)
|
|
|
|
|
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
|
|
|
|
|
|
|
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
|
2024-06-27 12:46:43 +00:00
|
|
|
super().save(*args, **kwargs)
|
2017-11-05 23:22:25 +00:00
|
|
|
|
2024-06-27 13:48:07 +00:00
|
|
|
def callback(self):
|
|
|
|
# Get the callback defined in settings to update existing
|
|
|
|
# notifications
|
|
|
|
mod_name, func_name = settings.SITH_PERMANENT_NOTIFICATIONS[self.type].rsplit(
|
|
|
|
".", 1
|
|
|
|
)
|
|
|
|
mod = importlib.import_module(mod_name)
|
|
|
|
getattr(mod, func_name)(self)
|
|
|
|
|
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):
|
2023-05-02 10:36:59 +00:00
|
|
|
if user.is_anonymous:
|
|
|
|
return False
|
2017-11-05 23:22:25 +00:00
|
|
|
return user.is_board_member or user.is_root
|
2019-11-13 22:14:21 +00:00
|
|
|
|
|
|
|
|
|
|
|
class OperationLog(models.Model):
|
2024-07-12 07:34:16 +00:00
|
|
|
"""General purpose log object to register operations."""
|
2019-11-13 22:14:21 +00:00
|
|
|
|
|
|
|
date = models.DateTimeField(_("date"), auto_now_add=True)
|
|
|
|
label = models.CharField(_("label"), max_length=255)
|
|
|
|
operator = models.ForeignKey(
|
|
|
|
User, related_name="logs", on_delete=models.SET_NULL, null=True
|
|
|
|
)
|
|
|
|
operation_type = models.CharField(
|
2021-10-13 06:59:40 +00:00
|
|
|
_("operation type"), max_length=40, choices=settings.SITH_LOG_OPERATION_TYPE
|
2019-11-13 22:14:21 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return "%s - %s - %s" % (self.operation_type, self.label, self.operator)
|
2024-06-27 13:48:07 +00:00
|
|
|
|
|
|
|
def is_owned_by(self, user):
|
|
|
|
return user.is_root
|