2012-07-11 17:39:20 +02:00
|
|
|
# coding: utf-8
|
|
|
|
|
2014-08-19 12:54:22 +02:00
|
|
|
import calendar
|
|
|
|
|
2012-07-11 17:39:20 +02:00
|
|
|
from django.db import models
|
|
|
|
from django.contrib.auth.models import User
|
2016-06-10 23:53:29 +02:00
|
|
|
from django.template import loader, Context
|
|
|
|
from django.core import mail
|
|
|
|
from django.conf import settings
|
2016-07-10 14:19:19 +02:00
|
|
|
from django.utils import timezone
|
2016-06-10 23:53:29 +02:00
|
|
|
|
2016-07-10 13:19:10 +02:00
|
|
|
|
2016-06-10 23:53:29 +02:00
|
|
|
def render_template(template_name, data):
|
|
|
|
tmpl = loader.get_template(template_name)
|
|
|
|
ctxt = Context(data)
|
|
|
|
return tmpl.render(ctxt)
|
2012-07-11 17:39:20 +02:00
|
|
|
|
2016-07-09 22:31:56 +02:00
|
|
|
|
2016-06-04 17:57:06 +02:00
|
|
|
class Tirage(models.Model):
|
|
|
|
title = models.CharField("Titre", max_length=300)
|
|
|
|
ouverture = models.DateTimeField("Date et heure d'ouverture du tirage")
|
|
|
|
fermeture = models.DateTimeField("Date et heure de fermerture du tirage")
|
2016-07-08 00:18:58 +02:00
|
|
|
tokens = models.TextField("Graine(s) du tirage", blank=True)
|
2016-06-07 23:07:28 +02:00
|
|
|
active = models.BooleanField("Tirage actif", default=False)
|
2016-07-08 00:18:58 +02:00
|
|
|
enable_do_tirage = models.BooleanField("Le tirage peut être lancé",
|
|
|
|
default=False)
|
2016-06-04 17:57:06 +02:00
|
|
|
|
|
|
|
def date_no_seconds(self):
|
|
|
|
return self.fermeture.strftime('%d %b %Y %H:%M')
|
|
|
|
|
|
|
|
def __unicode__(self):
|
2016-06-06 13:21:16 +02:00
|
|
|
return u"%s - %s" % (self.title, self.date_no_seconds())
|
2016-07-09 21:19:37 +02:00
|
|
|
|
2016-07-09 22:31:56 +02:00
|
|
|
|
2016-06-07 22:36:43 +02:00
|
|
|
class Salle(models.Model):
|
2016-07-09 21:19:37 +02:00
|
|
|
name = models.CharField("Nom", max_length=300)
|
2016-06-07 22:36:43 +02:00
|
|
|
address = models.TextField("Adresse")
|
2013-09-05 22:20:52 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
def __unicode__(self):
|
2013-09-05 22:20:52 +02:00
|
|
|
return self.name
|
|
|
|
|
2016-07-09 22:31:56 +02:00
|
|
|
|
2016-06-07 22:36:43 +02:00
|
|
|
class Spectacle(models.Model):
|
|
|
|
title = models.CharField("Titre", max_length=300)
|
|
|
|
date = models.DateTimeField("Date & heure")
|
2013-09-05 22:20:52 +02:00
|
|
|
location = models.ForeignKey(Salle)
|
2016-06-07 22:36:43 +02:00
|
|
|
description = models.TextField("Description", blank=True)
|
|
|
|
slots_description = models.TextField("Description des places", blank=True)
|
2016-06-07 22:34:23 +02:00
|
|
|
price = models.FloatField("Prix d'une place")
|
2016-06-07 22:36:43 +02:00
|
|
|
slots = models.IntegerField("Places")
|
|
|
|
priority = models.IntegerField("Priorité", default=1000)
|
|
|
|
tirage = models.ForeignKey(Tirage)
|
2016-06-10 02:00:50 +02:00
|
|
|
listing = models.BooleanField("Les places sont sur listing")
|
2016-07-10 14:19:19 +02:00
|
|
|
rappel_sent = models.DateTimeField("Mail de rappel envoyé", blank=True,
|
|
|
|
null=True)
|
2012-07-11 17:39:20 +02:00
|
|
|
|
|
|
|
class Meta:
|
|
|
|
verbose_name = "Spectacle"
|
2016-07-09 21:19:37 +02:00
|
|
|
ordering = ("priority", "date", "title",)
|
2012-07-11 17:39:20 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
def __repr__(self):
|
2012-07-11 17:39:20 +02:00
|
|
|
return u"[%s]" % self.__unicode__()
|
|
|
|
|
2014-08-19 12:54:22 +02:00
|
|
|
def timestamp(self):
|
|
|
|
return "%d" % calendar.timegm(self.date.utctimetuple())
|
|
|
|
|
2013-09-05 22:20:52 +02:00
|
|
|
def date_no_seconds(self):
|
|
|
|
return self.date.strftime('%d %b %Y %H:%M')
|
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
def __unicode__(self):
|
2016-06-04 17:57:06 +02:00
|
|
|
return u"%s - %s, %s, %.02f€" % (self.title, self.date_no_seconds(),
|
2016-07-09 22:31:56 +02:00
|
|
|
self.location, self.price)
|
2013-09-05 22:20:52 +02:00
|
|
|
|
2016-06-10 23:53:29 +02:00
|
|
|
def send_rappel(self):
|
|
|
|
# On récupère la liste des participants
|
|
|
|
members = {}
|
|
|
|
for attr in Attribution.objects.filter(spectacle=self).all():
|
|
|
|
member = attr.participant.user
|
|
|
|
if member.id in members:
|
|
|
|
members[member.id].nb_attr = 2
|
|
|
|
else:
|
|
|
|
member.nb_attr = 1
|
|
|
|
members[member.id] = member
|
|
|
|
# On écrit un mail personnalisé à chaque participant
|
|
|
|
mails_to_send = []
|
|
|
|
mail_object = "%s - %s - %s" % (self.title, self.date_no_seconds(),
|
|
|
|
self.location)
|
|
|
|
for member in members.values():
|
|
|
|
mail_body = render_template('mail-rappel.txt', {
|
|
|
|
'member': member,
|
|
|
|
'show': self})
|
2016-07-10 13:19:10 +02:00
|
|
|
mail_tot = mail.EmailMessage(
|
|
|
|
mail_object, mail_body,
|
2016-06-10 23:53:29 +02:00
|
|
|
settings.RAPPEL_FROM, [member.email],
|
|
|
|
[], headers={'Reply-To': settings.RAPPEL_REPLY_TO})
|
|
|
|
mails_to_send.append(mail_tot)
|
|
|
|
# On envoie les mails
|
2016-06-10 23:55:57 +02:00
|
|
|
connection = mail.get_connection()
|
2016-06-10 23:53:29 +02:00
|
|
|
connection.send_messages(mails_to_send)
|
2016-07-10 14:19:19 +02:00
|
|
|
# On enregistre le fait que l'envoi a bien eu lieu
|
|
|
|
self.rappel_sent = timezone.now()
|
|
|
|
self.save()
|
2016-06-10 23:53:29 +02:00
|
|
|
# On renvoie la liste des destinataires
|
|
|
|
return members.values()
|
2013-09-05 22:20:52 +02:00
|
|
|
|
|
|
|
PAYMENT_TYPES = (
|
2016-07-09 21:19:37 +02:00
|
|
|
("cash", u"Cash"),
|
|
|
|
("cb", "CB"),
|
|
|
|
("cheque", u"Chèque"),
|
|
|
|
("autre", u"Autre"),
|
2013-09-05 22:20:52 +02:00
|
|
|
)
|
2012-07-11 17:39:20 +02:00
|
|
|
|
2016-07-09 22:31:56 +02:00
|
|
|
|
2016-06-07 22:36:43 +02:00
|
|
|
class Participant(models.Model):
|
2016-06-04 17:57:06 +02:00
|
|
|
user = models.ForeignKey(User)
|
|
|
|
choices = models.ManyToManyField(Spectacle,
|
2016-07-09 22:31:56 +02:00
|
|
|
through="ChoixSpectacle",
|
|
|
|
related_name="chosen_by")
|
2016-06-04 17:57:06 +02:00
|
|
|
attributions = models.ManyToManyField(Spectacle,
|
2016-07-09 22:31:56 +02:00
|
|
|
through="Attribution",
|
|
|
|
related_name="attributed_to")
|
2016-07-09 21:19:37 +02:00
|
|
|
paid = models.BooleanField(u"A payé", default=False)
|
2016-06-04 17:57:06 +02:00
|
|
|
paymenttype = models.CharField(u"Moyen de paiement",
|
2016-07-09 22:31:56 +02:00
|
|
|
max_length=6, choices=PAYMENT_TYPES,
|
|
|
|
blank=True)
|
2016-06-04 17:57:06 +02:00
|
|
|
tirage = models.ForeignKey(Tirage)
|
2016-07-09 21:19:37 +02:00
|
|
|
|
|
|
|
def __unicode__(self):
|
2012-07-11 17:39:20 +02:00
|
|
|
return u"%s" % (self.user)
|
|
|
|
|
2015-09-13 18:23:47 +02:00
|
|
|
DOUBLE_CHOICES = (
|
|
|
|
("1", "1 place"),
|
|
|
|
("autoquit", "2 places si possible, 1 sinon"),
|
|
|
|
("double", "2 places sinon rien"),
|
|
|
|
)
|
|
|
|
|
2016-07-09 22:31:56 +02:00
|
|
|
|
2016-06-07 22:36:43 +02:00
|
|
|
class ChoixSpectacle(models.Model):
|
2012-07-11 17:39:20 +02:00
|
|
|
participant = models.ForeignKey(Participant)
|
2016-06-04 17:57:06 +02:00
|
|
|
spectacle = models.ForeignKey(Spectacle, related_name="participants")
|
2012-07-11 17:39:20 +02:00
|
|
|
priority = models.PositiveIntegerField("Priorité")
|
2016-06-04 17:57:06 +02:00
|
|
|
double_choice = models.CharField("Nombre de places",
|
2016-07-09 22:31:56 +02:00
|
|
|
default="1", choices=DOUBLE_CHOICES,
|
|
|
|
max_length=10)
|
2015-09-13 18:23:47 +02:00
|
|
|
|
|
|
|
def get_double(self):
|
|
|
|
return self.double_choice != "1"
|
|
|
|
double = property(get_double)
|
|
|
|
|
|
|
|
def get_autoquit(self):
|
|
|
|
return self.double_choice == "autoquit"
|
|
|
|
autoquit = property(get_autoquit)
|
|
|
|
|
2012-07-11 17:39:20 +02:00
|
|
|
class Meta:
|
|
|
|
ordering = ("priority",)
|
2013-09-05 22:20:52 +02:00
|
|
|
unique_together = (("participant", "spectacle",),)
|
2012-07-11 17:39:20 +02:00
|
|
|
verbose_name = "voeu"
|
2013-09-05 22:20:52 +02:00
|
|
|
verbose_name_plural = "voeux"
|
|
|
|
|
2016-07-09 22:31:56 +02:00
|
|
|
|
2016-06-07 22:36:43 +02:00
|
|
|
class Attribution(models.Model):
|
2013-09-05 22:20:52 +02:00
|
|
|
participant = models.ForeignKey(Participant)
|
2016-06-04 17:57:06 +02:00
|
|
|
spectacle = models.ForeignKey(Spectacle, related_name="attribues")
|
|
|
|
given = models.BooleanField(u"Donnée", default=False)
|
2013-09-05 22:20:52 +02:00
|
|
|
|
2016-07-09 21:19:37 +02:00
|
|
|
def __unicode__(self):
|
2013-09-05 22:20:52 +02:00
|
|
|
return u"%s -- %s" % (self.participant, self.spectacle)
|