2024-02-07 01:26:49 +00:00
|
|
|
# Copyright (C) 2018-2024 by BDE ENS Paris-Saclay
|
2020-03-27 00:31:54 +00:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2020-08-06 12:11:55 +00:00
|
|
|
|
|
|
|
from datetime import timedelta
|
2020-08-30 22:13:38 +00:00
|
|
|
from random import shuffle
|
2020-03-27 00:31:54 +00:00
|
|
|
|
|
|
|
from django import forms
|
2020-03-27 17:02:22 +00:00
|
|
|
from django.contrib.contenttypes.models import ContentType
|
2020-08-06 12:11:55 +00:00
|
|
|
from django.utils import timezone
|
2020-04-19 23:26:53 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2020-03-27 15:19:33 +00:00
|
|
|
from member.models import Club
|
2020-08-10 13:30:39 +00:00
|
|
|
from note.models import Note, NoteUser
|
|
|
|
from note_kfet.inputs import Autocomplete, DateTimePickerInput
|
2021-06-15 12:40:32 +00:00
|
|
|
from note_kfet.middlewares import get_current_request
|
2020-08-30 22:13:38 +00:00
|
|
|
from permission.backends import PermissionBackend
|
2020-03-27 00:31:54 +00:00
|
|
|
|
2020-03-27 17:02:22 +00:00
|
|
|
from .models import Activity, Guest
|
|
|
|
|
2020-03-27 00:31:54 +00:00
|
|
|
|
|
|
|
class ActivityForm(forms.ModelForm):
|
2020-08-30 22:13:38 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
# By default, the Kfet club is attended
|
|
|
|
self.fields["attendees_club"].initial = Club.objects.get(name="Kfet")
|
|
|
|
self.fields["attendees_club"].widget.attrs["placeholder"] = "Kfet"
|
|
|
|
clubs = list(Club.objects.filter(PermissionBackend
|
2021-06-15 12:40:32 +00:00
|
|
|
.filter_queryset(get_current_request(), Club, "view")).all())
|
2020-08-30 22:13:38 +00:00
|
|
|
shuffle(clubs)
|
|
|
|
self.fields["organizer"].widget.attrs["placeholder"] = ", ".join(club.name for club in clubs[:4]) + ", ..."
|
|
|
|
|
2021-09-28 15:03:32 +00:00
|
|
|
def clean_organizer(self):
|
|
|
|
organizer = self.cleaned_data['organizer']
|
|
|
|
if not organizer.note.is_active:
|
|
|
|
self.add_error('organiser', _('The note of this club is inactive.'))
|
|
|
|
return organizer
|
|
|
|
|
2020-08-18 10:10:52 +00:00
|
|
|
def clean_date_end(self):
|
|
|
|
date_end = self.cleaned_data["date_end"]
|
|
|
|
date_start = self.cleaned_data["date_start"]
|
|
|
|
if date_end < date_start:
|
|
|
|
self.add_error("date_end", _("The end date must be after the start date."))
|
|
|
|
return date_end
|
|
|
|
|
2020-03-27 00:31:54 +00:00
|
|
|
class Meta:
|
|
|
|
model = Activity
|
2020-03-28 18:05:21 +00:00
|
|
|
exclude = ('creater', 'valid', 'open', )
|
2020-03-27 12:50:02 +00:00
|
|
|
widgets = {
|
2020-03-29 22:42:32 +00:00
|
|
|
"organizer": Autocomplete(
|
2020-03-27 15:19:33 +00:00
|
|
|
model=Club,
|
|
|
|
attrs={"api_url": "/api/members/club/"},
|
|
|
|
),
|
2020-03-29 22:42:32 +00:00
|
|
|
"note": Autocomplete(
|
2020-03-27 21:48:20 +00:00
|
|
|
model=Note,
|
|
|
|
attrs={
|
|
|
|
"api_url": "/api/note/note/",
|
|
|
|
'placeholder': 'Note de l\'événement sur laquelle envoyer les crédits d\'invitation ...'
|
|
|
|
},
|
|
|
|
),
|
2020-03-29 22:42:32 +00:00
|
|
|
"attendees_club": Autocomplete(
|
2020-03-27 15:19:33 +00:00
|
|
|
model=Club,
|
|
|
|
attrs={"api_url": "/api/members/club/"},
|
|
|
|
),
|
2020-03-27 12:50:02 +00:00
|
|
|
"date_start": DateTimePickerInput(),
|
|
|
|
"date_end": DateTimePickerInput(),
|
|
|
|
}
|
2020-03-27 17:02:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
class GuestForm(forms.ModelForm):
|
2020-03-29 22:42:32 +00:00
|
|
|
def clean(self):
|
2020-08-19 09:31:15 +00:00
|
|
|
"""
|
|
|
|
Someone can be invited as a Guest to an Activity if:
|
|
|
|
- the activity has not already started.
|
|
|
|
- the activity is validated.
|
|
|
|
- the Guest has not already been invited more than 5 times.
|
|
|
|
- the Guest is already invited.
|
|
|
|
- the inviter already invited 3 peoples.
|
|
|
|
"""
|
|
|
|
|
2020-03-29 22:42:32 +00:00
|
|
|
cleaned_data = super().clean()
|
|
|
|
|
2020-08-06 15:41:30 +00:00
|
|
|
if timezone.now() > timezone.localtime(self.activity.date_start):
|
2020-03-30 15:27:02 +00:00
|
|
|
self.add_error("inviter", _("You can't invite someone once the activity is started."))
|
|
|
|
|
2020-03-30 15:35:47 +00:00
|
|
|
if not self.activity.valid:
|
|
|
|
self.add_error("inviter", _("This activity is not validated yet."))
|
|
|
|
|
2020-03-29 22:42:32 +00:00
|
|
|
one_year = timedelta(days=365)
|
|
|
|
|
|
|
|
qs = Guest.objects.filter(
|
2020-08-06 15:41:30 +00:00
|
|
|
first_name__iexact=cleaned_data["first_name"],
|
|
|
|
last_name__iexact=cleaned_data["last_name"],
|
2020-03-29 22:42:32 +00:00
|
|
|
activity__date_start__gte=self.activity.date_start - one_year,
|
|
|
|
)
|
2020-08-15 21:03:49 +00:00
|
|
|
if qs.filter(entry__isnull=False).count() >= 5:
|
2020-03-29 22:42:32 +00:00
|
|
|
self.add_error("last_name", _("This person has been already invited 5 times this year."))
|
|
|
|
|
|
|
|
qs = qs.filter(activity=self.activity)
|
|
|
|
if qs.exists():
|
|
|
|
self.add_error("last_name", _("This person is already invited."))
|
|
|
|
|
2020-08-06 15:41:30 +00:00
|
|
|
if "inviter" in cleaned_data:
|
|
|
|
if Guest.objects.filter(inviter=cleaned_data["inviter"], activity=self.activity).count() >= 3:
|
|
|
|
self.add_error("inviter", _("You can't invite more than 3 people to this activity."))
|
2020-03-29 22:42:32 +00:00
|
|
|
|
|
|
|
return cleaned_data
|
|
|
|
|
2020-03-27 17:02:22 +00:00
|
|
|
class Meta:
|
|
|
|
model = Guest
|
|
|
|
fields = ('last_name', 'first_name', 'inviter', )
|
|
|
|
widgets = {
|
2020-03-29 22:42:32 +00:00
|
|
|
"inviter": Autocomplete(
|
2020-03-27 17:02:22 +00:00
|
|
|
NoteUser,
|
|
|
|
attrs={
|
|
|
|
'api_url': '/api/note/note/',
|
|
|
|
# We don't evaluate the content type at launch because the DB might be not initialized
|
|
|
|
'api_url_suffix':
|
2020-03-27 21:48:20 +00:00
|
|
|
lambda: '&polymorphic_ctype=' + str(ContentType.objects.get_for_model(NoteUser).pk),
|
2020-03-27 17:02:22 +00:00
|
|
|
'placeholder': 'Note ...',
|
|
|
|
},
|
|
|
|
),
|
|
|
|
}
|