2017-07-23 16:20:28 +02:00
|
|
|
from django.contrib.auth import get_user_model
|
2016-09-30 20:10:35 +02:00
|
|
|
from django.utils.translation import ugettext_lazy as _
|
2016-10-17 19:40:31 +02:00
|
|
|
from django.core.validators import RegexValidator
|
2016-10-21 18:49:46 +02:00
|
|
|
from django.core.exceptions import FieldError
|
2016-09-30 20:10:35 +02:00
|
|
|
from django.db import models
|
2017-07-17 17:47:34 +02:00
|
|
|
from communication.models import SubscriptionMixin
|
2016-09-30 20:10:35 +02:00
|
|
|
|
2017-07-23 16:20:28 +02:00
|
|
|
User = get_user_model()
|
|
|
|
|
2016-09-30 20:10:35 +02:00
|
|
|
|
2017-07-17 17:47:34 +02:00
|
|
|
class Event(SubscriptionMixin, models.Model):
|
2016-09-30 20:10:35 +02:00
|
|
|
title = models.CharField(
|
2017-07-15 17:44:15 +02:00
|
|
|
_("nom de l'évènement"),
|
2016-09-30 20:10:35 +02:00
|
|
|
max_length=200,
|
|
|
|
)
|
|
|
|
slug = models.SlugField(
|
2017-07-15 17:44:15 +02:00
|
|
|
_('identificateur'),
|
2016-09-30 20:10:35 +02:00
|
|
|
unique=True,
|
2016-10-21 18:49:46 +02:00
|
|
|
help_text=_("Seulement des lettres, des chiffres ou"
|
|
|
|
"les caractères '_' ou '-'."),
|
2016-09-30 20:10:35 +02:00
|
|
|
)
|
|
|
|
created_by = models.ForeignKey(
|
|
|
|
User,
|
2016-10-03 00:31:21 +02:00
|
|
|
related_name="created_events",
|
2016-09-30 20:10:35 +02:00
|
|
|
editable=False,
|
|
|
|
)
|
2017-07-26 13:15:41 +02:00
|
|
|
created_at = models.DateTimeField(
|
2017-07-15 17:44:15 +02:00
|
|
|
_('date de création'),
|
2016-09-30 20:10:35 +02:00
|
|
|
auto_now_add=True,
|
|
|
|
)
|
2017-07-15 17:44:15 +02:00
|
|
|
description = models.TextField(_('description'))
|
|
|
|
beginning_date = models.DateTimeField(_('date de début'))
|
2017-07-18 17:31:01 +02:00
|
|
|
ending_date = models.DateTimeField(_('date de fin'))
|
2016-09-30 20:10:35 +02:00
|
|
|
|
|
|
|
class Meta:
|
2016-10-13 11:51:41 +02:00
|
|
|
verbose_name = _("évènement")
|
|
|
|
verbose_name_plural = _("évènements")
|
2016-09-30 20:10:35 +02:00
|
|
|
|
2016-10-03 00:31:21 +02:00
|
|
|
def __str__(self):
|
|
|
|
return self.title
|
|
|
|
|
2016-09-30 20:10:35 +02:00
|
|
|
|
2017-07-21 16:18:19 +02:00
|
|
|
class EventSpecificMixin(models.Model):
|
|
|
|
"""Mixin allowing for event-specific models instances
|
|
|
|
or not (depending on whether the event field is null)"""
|
|
|
|
|
|
|
|
event = models.ForeignKey(
|
|
|
|
'event.Event',
|
|
|
|
verbose_name=_("évènement"),
|
|
|
|
help_text=_("Si spécifié, l'instance du modèle "
|
|
|
|
"est spécifique à l'évènement en question"),
|
|
|
|
blank=True,
|
|
|
|
null=True
|
|
|
|
)
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
abstract = True
|
|
|
|
|
|
|
|
|
2017-07-18 19:08:09 +02:00
|
|
|
class Place(EventSpecificMixin, models.Model):
|
2016-09-30 20:10:35 +02:00
|
|
|
name = models.CharField(
|
2017-07-15 17:44:15 +02:00
|
|
|
_("nom du lieu"),
|
2016-09-30 20:10:35 +02:00
|
|
|
max_length=200,
|
|
|
|
)
|
|
|
|
description = models.TextField(blank=True)
|
|
|
|
|
|
|
|
class Meta:
|
2016-10-13 11:51:41 +02:00
|
|
|
verbose_name = _("lieu")
|
|
|
|
verbose_name_plural = _("lieux")
|
2016-09-30 20:10:35 +02:00
|
|
|
|
2016-10-03 00:31:21 +02:00
|
|
|
def __str__(self):
|
|
|
|
return self.name
|
|
|
|
|
2016-09-30 20:10:35 +02:00
|
|
|
|
2017-07-18 19:08:09 +02:00
|
|
|
class ActivityTag(EventSpecificMixin, models.Model):
|
2016-09-30 20:10:35 +02:00
|
|
|
name = models.CharField(
|
2017-07-15 17:44:15 +02:00
|
|
|
_("nom du tag"),
|
2016-09-30 20:10:35 +02:00
|
|
|
max_length=200,
|
|
|
|
)
|
|
|
|
is_public = models.BooleanField(
|
2016-10-17 20:06:00 +02:00
|
|
|
help_text=_("Sert à faire une distinction dans"
|
|
|
|
" l'affichage selon que cela soit"
|
|
|
|
" destiné au public ou à l'équipe"
|
|
|
|
" organisatrice"),
|
2016-09-30 20:10:35 +02:00
|
|
|
)
|
2016-10-17 19:40:31 +02:00
|
|
|
color_regex = RegexValidator(
|
|
|
|
regex=r'^#(?:[0-9a-fA-F]{3}){1,2}$',
|
2017-04-27 01:14:47 +02:00
|
|
|
message=_("La chaîne de caractère rentrée n'est pas"
|
2017-05-16 20:20:38 +02:00
|
|
|
" une couleur en hexadécimal."),
|
2016-10-17 19:40:31 +02:00
|
|
|
)
|
2016-09-30 20:10:35 +02:00
|
|
|
color = models.CharField(
|
2017-07-15 17:44:15 +02:00
|
|
|
_('couleur'),
|
2016-09-30 20:10:35 +02:00
|
|
|
max_length=7,
|
2016-10-17 19:40:31 +02:00
|
|
|
validators=[color_regex],
|
2017-04-27 01:14:47 +02:00
|
|
|
help_text=_("Rentrer une couleur en hexadécimal"),
|
2016-09-30 20:10:35 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
class Meta:
|
2016-10-13 11:51:41 +02:00
|
|
|
verbose_name = _("tag")
|
|
|
|
verbose_name_plural = _("tags")
|
2016-09-30 20:10:35 +02:00
|
|
|
|
2016-10-03 00:31:21 +02:00
|
|
|
def __str__(self):
|
|
|
|
return self.name
|
|
|
|
|
2016-09-30 20:10:35 +02:00
|
|
|
|
2017-07-18 18:41:44 +02:00
|
|
|
class AbstractActivityTemplate(SubscriptionMixin, models.Model):
|
2016-09-30 20:10:35 +02:00
|
|
|
title = models.CharField(
|
2017-07-15 17:44:15 +02:00
|
|
|
_("nom de l'activité"),
|
2016-09-30 20:10:35 +02:00
|
|
|
max_length=200,
|
|
|
|
blank=True,
|
|
|
|
null=True,
|
|
|
|
)
|
2016-10-13 11:51:41 +02:00
|
|
|
# FIXME: voir comment on traite l'héritage de `event`
|
2017-07-18 19:08:09 +02:00
|
|
|
event = models.ForeignKey(Event)
|
2016-09-30 20:10:35 +02:00
|
|
|
is_public = models.NullBooleanField(
|
|
|
|
blank=True,
|
|
|
|
)
|
|
|
|
has_perm = models.NullBooleanField(
|
|
|
|
blank=True,
|
|
|
|
)
|
|
|
|
min_perm = models.PositiveSmallIntegerField(
|
2017-07-15 17:44:15 +02:00
|
|
|
_('nombre minimum de permanents'),
|
2016-09-30 20:10:35 +02:00
|
|
|
blank=True,
|
|
|
|
null=True,
|
|
|
|
)
|
|
|
|
max_perm = models.PositiveSmallIntegerField(
|
2017-07-15 17:44:15 +02:00
|
|
|
_('nombre maximum de permanents'),
|
2016-09-30 20:10:35 +02:00
|
|
|
blank=True,
|
|
|
|
null=True,
|
|
|
|
)
|
|
|
|
description = models.TextField(
|
2017-07-15 17:44:15 +02:00
|
|
|
_('description'),
|
2016-09-30 20:10:35 +02:00
|
|
|
help_text=_("Public, Visible par tout le monde."),
|
|
|
|
blank=True,
|
|
|
|
null=True,
|
|
|
|
)
|
|
|
|
remarks = models.TextField(
|
2017-07-15 17:44:15 +02:00
|
|
|
_('remarques'),
|
2016-09-30 20:10:35 +02:00
|
|
|
help_text=_("Visible uniquement par les organisateurs"),
|
|
|
|
blank=True,
|
|
|
|
null=True,
|
|
|
|
)
|
|
|
|
tags = models.ManyToManyField(
|
|
|
|
ActivityTag,
|
|
|
|
blank=True,
|
|
|
|
)
|
|
|
|
place = models.ManyToManyField(
|
|
|
|
Place,
|
|
|
|
blank=True,
|
|
|
|
)
|
|
|
|
|
2017-07-18 18:41:44 +02:00
|
|
|
class Meta:
|
|
|
|
abstract = True
|
|
|
|
|
|
|
|
|
|
|
|
class ActivityTemplate(AbstractActivityTemplate):
|
2016-09-30 20:10:35 +02:00
|
|
|
class Meta:
|
2016-10-13 11:51:41 +02:00
|
|
|
verbose_name = _("template activité")
|
|
|
|
verbose_name_plural = _("templates activité")
|
2016-09-30 20:10:35 +02:00
|
|
|
|
2016-10-03 00:31:21 +02:00
|
|
|
def __str__(self):
|
|
|
|
return self.title
|
|
|
|
|
2016-09-30 20:10:35 +02:00
|
|
|
|
2017-07-18 18:41:44 +02:00
|
|
|
class Activity(AbstractActivityTemplate):
|
2016-09-30 20:10:35 +02:00
|
|
|
parent = models.ForeignKey(
|
|
|
|
ActivityTemplate,
|
2016-10-03 00:31:21 +02:00
|
|
|
related_name="children",
|
2017-07-23 16:20:28 +02:00
|
|
|
blank=True,
|
2017-07-25 14:07:20 +02:00
|
|
|
null=True,
|
2016-09-30 20:10:35 +02:00
|
|
|
)
|
|
|
|
staff = models.ManyToManyField(
|
|
|
|
User,
|
2016-10-03 00:31:21 +02:00
|
|
|
related_name="in_perm_activities",
|
2016-09-30 20:10:35 +02:00
|
|
|
blank=True,
|
|
|
|
)
|
|
|
|
|
2017-07-15 17:46:13 +02:00
|
|
|
beginning = models.DateTimeField(_("heure de début"))
|
|
|
|
end = models.DateTimeField(_("heure de fin"))
|
|
|
|
|
2016-10-13 11:51:41 +02:00
|
|
|
def get_herited(self, attrname):
|
2017-07-26 13:15:41 +02:00
|
|
|
inherited_fields = [f.name for f in
|
|
|
|
ActivityTemplate._meta.get_fields()]
|
2017-07-18 18:41:44 +02:00
|
|
|
m2m_fields = [f.name for f in ActivityTemplate._meta.get_fields()
|
|
|
|
if f.many_to_many]
|
2017-07-21 16:24:53 +02:00
|
|
|
attr = getattr(self, attrname)
|
2017-07-18 18:41:44 +02:00
|
|
|
if attrname not in inherited_fields:
|
2016-10-21 18:49:46 +02:00
|
|
|
raise FieldError(
|
|
|
|
_("%(attrname)s n'est pas un champ héritable"),
|
|
|
|
params={'attrname': attrname},
|
|
|
|
)
|
2017-07-18 18:41:44 +02:00
|
|
|
elif attrname in m2m_fields:
|
2016-10-13 11:51:41 +02:00
|
|
|
if attr.exists():
|
|
|
|
return attr
|
|
|
|
else:
|
2017-07-21 16:24:53 +02:00
|
|
|
return getattr(self.parent, attrname)
|
2016-10-03 00:31:21 +02:00
|
|
|
elif attr is None:
|
2017-07-21 16:24:53 +02:00
|
|
|
return getattr(self.parent, attrname)
|
2016-09-30 20:10:35 +02:00
|
|
|
else:
|
2016-10-03 00:31:21 +02:00
|
|
|
return attr
|
2016-10-13 11:51:41 +02:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
verbose_name = _("activité")
|
|
|
|
verbose_name_plural = _("activités")
|
|
|
|
|
2016-10-13 16:26:35 +02:00
|
|
|
def __str__(self):
|
|
|
|
return self.get_herited('title')
|