2015-12-15 16:50:50 +00:00
|
|
|
from datetime import date, timedelta
|
|
|
|
from django.db import models
|
|
|
|
from django.utils import timezone
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from django.conf import settings
|
2016-01-29 14:20:00 +00:00
|
|
|
from django.core.exceptions import ValidationError
|
|
|
|
from django.core.urlresolvers import reverse
|
2015-12-15 16:50:50 +00:00
|
|
|
|
|
|
|
from core.models import User
|
|
|
|
|
|
|
|
def validate_type(value):
|
2016-03-31 08:36:00 +00:00
|
|
|
if value not in settings.SITH_SUBSCRIPTIONS.keys():
|
2015-12-15 16:50:50 +00:00
|
|
|
raise ValidationError(_('Bad subscription type'))
|
|
|
|
|
|
|
|
def validate_payment(value):
|
2016-04-20 00:07:01 +00:00
|
|
|
if value not in settings.SITH_SUBSCRIPTION_PAYMENT_METHOD:
|
2015-12-15 16:50:50 +00:00
|
|
|
raise ValidationError(_('Bad payment method'))
|
|
|
|
|
2016-01-29 14:20:00 +00:00
|
|
|
class Subscriber(User):
|
|
|
|
class Meta:
|
|
|
|
proxy = True
|
2015-12-15 16:50:50 +00:00
|
|
|
|
|
|
|
def is_subscribed(self):
|
2016-02-05 15:59:42 +00:00
|
|
|
s = self.subscriptions.last()
|
|
|
|
return s.is_valid_now() if s is not None else False
|
2015-12-15 16:50:50 +00:00
|
|
|
|
|
|
|
class Subscription(models.Model):
|
2016-01-29 14:20:00 +00:00
|
|
|
member = models.ForeignKey(Subscriber, related_name='subscriptions')
|
2015-12-15 16:50:50 +00:00
|
|
|
subscription_type = models.CharField(_('subscription type'),
|
|
|
|
max_length=255,
|
2016-03-31 08:36:00 +00:00
|
|
|
choices=((k, v['name']) for k,v in sorted(settings.SITH_SUBSCRIPTIONS.items())))
|
2015-12-15 16:50:50 +00:00
|
|
|
subscription_start = models.DateField(_('subscription start'))
|
|
|
|
subscription_end = models.DateField(_('subscription end'))
|
2016-04-20 00:07:01 +00:00
|
|
|
payment_method = models.CharField(_('payment method'), max_length=255, choices=settings.SITH_SUBSCRIPTION_PAYMENT_METHOD)
|
2016-08-04 22:50:42 +00:00
|
|
|
location = models.CharField(choices=settings.SITH_SUBSCRIPTION_LOCATIONS,
|
|
|
|
max_length=20, verbose_name=_('location'))
|
2016-03-22 10:42:00 +00:00
|
|
|
# TODO add location!
|
2015-12-15 16:50:50 +00:00
|
|
|
|
2016-01-29 14:20:00 +00:00
|
|
|
class Meta:
|
2016-07-19 22:28:49 +00:00
|
|
|
ordering = ['subscription_start',]
|
2016-01-29 14:20:00 +00:00
|
|
|
|
|
|
|
def clean(self):
|
2016-07-06 22:52:30 +00:00
|
|
|
try:
|
|
|
|
for s in Subscription.objects.filter(member=self.member).exclude(pk=self.pk).all():
|
|
|
|
if s.is_valid_now():
|
|
|
|
raise ValidationError(_("You can not subscribe many time for the same period"))
|
|
|
|
except: # This should not happen, because the form should have handled the data before, but sadly, it still
|
|
|
|
# calls the model validation :'(
|
|
|
|
# TODO see SubscriptionForm's clean method
|
|
|
|
raise ValidationError(_("You are trying to create a subscription without member"))
|
2016-01-29 14:20:00 +00:00
|
|
|
|
2016-07-19 22:28:49 +00:00
|
|
|
def save(self):
|
|
|
|
super(Subscription, self).save()
|
|
|
|
from counter.models import Customer
|
|
|
|
if not Customer.objects.filter(user=self.member).exists():
|
2016-08-04 22:50:25 +00:00
|
|
|
Customer(user=self.member, account_id=Customer.generate_account_id(self.id), amount=0).save()
|
2016-08-10 14:23:12 +00:00
|
|
|
self.member.make_home()
|
2015-12-15 16:50:50 +00:00
|
|
|
|
2016-01-29 14:20:00 +00:00
|
|
|
def get_absolute_url(self):
|
|
|
|
return reverse('core:user_profile', kwargs={'user_id': self.member.pk})
|
|
|
|
|
2016-01-28 16:42:22 +00:00
|
|
|
def __str__(self):
|
2016-07-06 22:52:30 +00:00
|
|
|
if hasattr(self, "member") and self.member is not None:
|
|
|
|
return self.member.username+' - '+str(self.pk)
|
|
|
|
else:
|
|
|
|
return 'No user - '+str(self.pk)
|
|
|
|
|
2016-01-28 16:42:22 +00:00
|
|
|
|
2015-12-15 16:50:50 +00:00
|
|
|
@staticmethod
|
2016-07-28 10:41:29 +00:00
|
|
|
def compute_start(d=date.today(), duration=1):
|
2015-12-15 16:50:50 +00:00
|
|
|
"""
|
|
|
|
This function computes the start date of the subscription with respect to the given date (default is today),
|
2016-03-31 08:36:00 +00:00
|
|
|
and the start date given in settings.SITH_START_DATE.
|
2015-12-15 16:50:50 +00:00
|
|
|
It takes the nearest past start date.
|
2016-03-31 08:36:00 +00:00
|
|
|
Exemples: with SITH_START_DATE = (8, 15)
|
2015-12-15 16:50:50 +00:00
|
|
|
Today -> Start date
|
|
|
|
2015-03-17 -> 2015-02-15
|
|
|
|
2015-01-11 -> 2014-08-15
|
|
|
|
"""
|
2016-07-28 10:41:29 +00:00
|
|
|
if duration <= 2: # Sliding subscriptions for 1 or 2 semesters
|
|
|
|
return d
|
2015-12-15 16:50:50 +00:00
|
|
|
today = d
|
|
|
|
year = today.year
|
2016-03-31 08:36:00 +00:00
|
|
|
start = date(year, settings.SITH_START_DATE[0], settings.SITH_START_DATE[1])
|
2015-12-15 16:50:50 +00:00
|
|
|
start2 = start.replace(month=(start.month+6)%12)
|
|
|
|
if start > start2:
|
|
|
|
start, start2 = start2, start
|
|
|
|
if today < start:
|
|
|
|
return start2.replace(year=year-1)
|
|
|
|
elif today < start2:
|
|
|
|
return start
|
|
|
|
else:
|
|
|
|
return start2
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def compute_end(duration, start=None):
|
|
|
|
"""
|
|
|
|
This function compute the end date of the subscription given a start date and a duration in number of semestre
|
|
|
|
Exemple:
|
|
|
|
Start - Duration -> End date
|
|
|
|
2015-09-18 - 1 -> 2016-03-18
|
|
|
|
2015-09-18 - 2 -> 2016-09-18
|
|
|
|
2015-09-18 - 3 -> 2017-03-18
|
|
|
|
2015-09-18 - 4 -> 2017-09-18
|
|
|
|
"""
|
|
|
|
if start is None:
|
2016-07-28 10:41:29 +00:00
|
|
|
start = Subscription.compute_start(duration=duration)
|
2015-12-15 16:50:50 +00:00
|
|
|
# This can certainly be simplified, but it works like this
|
2016-07-28 10:41:29 +00:00
|
|
|
try:
|
|
|
|
return start.replace(month=(start.month-1+6*duration)%12+1,
|
|
|
|
year=start.year+int(duration/2)+(1 if start.month > 6 and duration%2 == 1 else 0))
|
|
|
|
except ValueError as e:
|
|
|
|
return start.replace(day=1, month=(start.month+6*duration)%12+1,
|
2015-12-15 16:50:50 +00:00
|
|
|
year=start.year+int(duration/2)+(1 if start.month > 6 and duration%2 == 1 else 0))
|
|
|
|
|
2016-07-28 10:41:29 +00:00
|
|
|
|
2016-03-22 10:42:00 +00:00
|
|
|
def can_be_edited_by(self, user):
|
2016-08-14 02:35:08 +00:00
|
|
|
return user.is_in_group(settings.SITH_MAIN_BOARD_GROUP) or user.is_root
|
2016-03-22 10:42:00 +00:00
|
|
|
|
2015-12-15 16:50:50 +00:00
|
|
|
def is_valid_now(self):
|
|
|
|
return self.subscription_start <= date.today() and date.today() <= self.subscription_end
|
|
|
|
|
2016-07-28 10:41:29 +00:00
|
|
|
def guy_test(date, duration=4):
|
|
|
|
print(str(date)+" - "+str(duration)+" -> "+str(Subscription.compute_start(date, duration)))
|
|
|
|
def bibou_test(duration, date=date.today()):
|
|
|
|
print(str(date)+" - "+str(duration)+" -> "+str(Subscription.compute_end(duration, Subscription.compute_start(date, duration))))
|
2015-12-15 16:50:50 +00:00
|
|
|
def guy():
|
|
|
|
guy_test(date(2015, 7, 11))
|
|
|
|
guy_test(date(2015, 8, 11))
|
|
|
|
guy_test(date(2015, 2, 17))
|
|
|
|
guy_test(date(2015, 3, 17))
|
|
|
|
guy_test(date(2015, 1, 11))
|
|
|
|
guy_test(date(2015, 2, 11))
|
|
|
|
guy_test(date(2015, 8, 17))
|
|
|
|
guy_test(date(2015, 9, 17))
|
|
|
|
print('='*80)
|
2016-07-28 10:41:29 +00:00
|
|
|
guy_test(date(2015, 7, 11), 1)
|
|
|
|
guy_test(date(2015, 8, 11), 2)
|
|
|
|
guy_test(date(2015, 2, 17), 3)
|
|
|
|
guy_test(date(2015, 3, 17), 4)
|
|
|
|
guy_test(date(2015, 1, 11), 1)
|
|
|
|
guy_test(date(2015, 2, 11), 2)
|
|
|
|
guy_test(date(2015, 8, 17), 3)
|
|
|
|
guy_test(date(2015, 9, 17), 4)
|
|
|
|
print('='*80)
|
2015-12-15 16:50:50 +00:00
|
|
|
bibou_test(1, date(2015, 2, 18))
|
|
|
|
bibou_test(2, date(2015, 2, 18))
|
|
|
|
bibou_test(3, date(2015, 2, 18))
|
|
|
|
bibou_test(4, date(2015, 2, 18))
|
|
|
|
bibou_test(1, date(2015, 9, 18))
|
|
|
|
bibou_test(2, date(2015, 9, 18))
|
|
|
|
bibou_test(3, date(2015, 9, 18))
|
|
|
|
bibou_test(4, date(2015, 9, 18))
|
2016-07-28 10:41:29 +00:00
|
|
|
print('='*80)
|
2016-07-28 11:02:10 +00:00
|
|
|
bibou_test(1, date(2000, 2, 29))
|
2016-07-28 10:41:29 +00:00
|
|
|
bibou_test(2, date(2000, 2, 29))
|
|
|
|
bibou_test(1, date(2000, 5, 31))
|
|
|
|
bibou_test(1, date(2000, 7, 31))
|
2015-12-15 16:50:50 +00:00
|
|
|
bibou_test(1)
|
|
|
|
bibou_test(2)
|
|
|
|
bibou_test(3)
|
|
|
|
bibou_test(4)
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
guy()
|