X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/b2d342589a7889a3b096e7192453d53bd28eed7d..a18466c5b58ffbcca36e9834fd713b10265ead29:/src/funding/models.py diff --git a/src/funding/models.py b/src/funding/models.py index 392666f24..289ec3379 100644 --- a/src/funding/models.py +++ b/src/funding/models.py @@ -1,23 +1,23 @@ -# -*- coding: utf-8 -*- # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # from datetime import date, datetime -from urllib import urlencode +from urllib.parse import urlencode from django.conf import settings from django.contrib.sites.models import Site -from django.core.urlresolvers import reverse from django.core.mail import send_mail from django.db import models from django.dispatch import receiver from django.template.loader import render_to_string +from django.urls import reverse +from django.utils.html import mark_safe from django.utils.timezone import utc from django.utils.translation import ugettext_lazy as _, override import getpaid -from ssify import flush_ssi_includes from catalogue.models import Book from catalogue.utils import get_random_hash from polls.models import Poll +from wolnelektury.utils import cached_render, clear_cached_renders from . import app_settings @@ -31,7 +31,7 @@ class Offer(models.Model): start = models.DateField(_('start'), db_index=True) end = models.DateField(_('end'), db_index=True) redakcja_url = models.URLField(_('redakcja URL'), blank=True) - book = models.ForeignKey(Book, null=True, blank=True, help_text=_('Published book.')) + book = models.ForeignKey(Book, models.PROTECT, null=True, blank=True, help_text=_('Published book.')) cover = models.ImageField(_('Cover'), upload_to='funding/covers') poll = models.ForeignKey(Poll, help_text=_('Poll'), null=True, blank=True, on_delete=models.SET_NULL) @@ -39,17 +39,16 @@ class Offer(models.Model): notified_end = models.DateTimeField(_('End notifications sent'), blank=True, null=True) def cover_img_tag(self): - return u'' % self.cover.url + return mark_safe('' % self.cover.url) cover_img_tag.short_description = _('Cover preview') - cover_img_tag.allow_tags = True class Meta: verbose_name = _('offer') verbose_name_plural = _('offers') ordering = ['-end'] - def __unicode__(self): - return u"%s - %s" % (self.author, self.title) + def __str__(self): + return "%s - %s" % (self.author, self.title) def get_absolute_url(self): return reverse('funding_offer', args=[self.slug]) @@ -59,26 +58,17 @@ class Offer(models.Model): self.book_id is not None and self.pk is not None and type(self).objects.values('book').get(pk=self.pk)['book'] != self.book_id) retval = super(Offer, self).save(*args, **kw) - self.flush_includes() + self.clear_cache() if published_now: self.notify_published() return retval - def flush_includes(self): - flush_ssi_includes([ - template % (self.pk, lang) - for template in [ - '/wesprzyj/o/%d/top-bar.%s.html', - '/wesprzyj/o/%d/detail-bar.%s.html', - '/wesprzyj/o/%d/list-bar.%s.html', - '/wesprzyj/o/%d/status.%s.html', - '/wesprzyj/o/%d/status-more.%s.html', - ] + [ - '/wesprzyj/o/%%d/fundings/%d.%%s.html' % page - for page in range(1, len(self.funding_payed()) // 10 + 2) - ] - for lang in [lc for (lc, _ln) in settings.LANGUAGES] - ]) + def clear_cache(self): + clear_cached_renders(self.top_bar) + clear_cached_renders(self.list_bar) + clear_cached_renders(self.detail_bar) + clear_cached_renders(self.status) + clear_cached_renders(self.status_more) def is_current(self): return self.start <= date.today() <= self.end and self == self.current() @@ -200,6 +190,55 @@ class Offer(models.Model): 'current': self.current(), }) + def basic_info(self): + offer_sum = self.sum() + return { + 'offer': self, + 'sum': offer_sum, + 'is_current': self.is_current(), + 'is_win': offer_sum >= self.target, + 'missing': self.target - offer_sum, + 'percentage': 100 * offer_sum / self.target, + + 'show_title': True, + 'show_title_calling': True, + } + + @cached_render('funding/includes/funding.html') + def top_bar(self): + ctx = self.basic_info() + ctx.update({ + 'link': True, + 'closeable': True, + 'add_class': 'funding-top-header', + }) + return ctx + + @cached_render('funding/includes/funding.html') + def list_bar(self): + ctx = self.basic_info() + ctx.update({ + 'link': True, + 'show_title_calling': False, + }) + return ctx + + @cached_render('funding/includes/funding.html') + def detail_bar(self): + ctx = self.basic_info() + ctx.update({ + 'show_title': False, + }) + return ctx + + @cached_render('funding/includes/offer_status.html') + def status(self): + return {'offer': self} + + @cached_render('funding/includes/offer_status_more.html') + def status_more(self): + return {'offer': self} + class Perk(models.Model): """ A perk offer. @@ -207,7 +246,7 @@ class Perk(models.Model): If no attached to a particular Offer, applies to all. """ - offer = models.ForeignKey(Offer, verbose_name=_('offer'), null=True, blank=True) + offer = models.ForeignKey(Offer, models.CASCADE, verbose_name=_('offer'), null=True, blank=True) price = models.DecimalField(_('price'), decimal_places=2, max_digits=10) name = models.CharField(_('name'), max_length=255) long_name = models.CharField(_('long name'), max_length=255) @@ -218,8 +257,8 @@ class Perk(models.Model): verbose_name_plural = _('perks') ordering = ['-price'] - def __unicode__(self): - return "%s (%s%s)" % (self.name, self.price, u" for %s" % self.offer if self.offer else "") + def __str__(self): + return "%s (%s%s)" % (self.name, self.price, " for %s" % self.offer if self.offer else "") class Funding(models.Model): @@ -228,7 +267,7 @@ class Funding(models.Model): The payment was completed if and only if payed_at is set. """ - offer = models.ForeignKey(Offer, verbose_name=_('offer')) + offer = models.ForeignKey(Offer, models.PROTECT, verbose_name=_('offer')) name = models.CharField(_('name'), max_length=127, blank=True) email = models.EmailField(_('email'), blank=True, db_index=True) amount = models.DecimalField(_('amount'), decimal_places=2, max_digits=10) @@ -241,15 +280,15 @@ class Funding(models.Model): class Meta: verbose_name = _('funding') verbose_name_plural = _('fundings') - ordering = ['-payed_at'] + ordering = ['-payed_at', 'pk'] @classmethod def payed(cls): """ QuerySet for all completed payments. """ return cls.objects.exclude(payed_at=None) - def __unicode__(self): - return unicode(self.offer) + def __str__(self): + return str(self.offer) def get_absolute_url(self): return reverse('funding_funding', args=[self.pk]) @@ -265,11 +304,14 @@ class Funding(models.Model): 'key': self.notify_key, })) + def wl_optout_url(self): + return 'https://wolnelektury.pl' + self.get_disable_notifications_url() + def save(self, *args, **kwargs): if self.email and not self.notify_key: self.notify_key = get_random_hash(self.email) ret = super(Funding, self).save(*args, **kwargs) - self.offer.flush_includes() + self.offer.clear_cache() return ret @classmethod @@ -309,7 +351,7 @@ getpaid.register_to_payment(Funding, unique=False, related_name='payment') class Spent(models.Model): """ Some of the remaining money spent on a book. """ - book = models.ForeignKey(Book) + book = models.ForeignKey(Book, models.PROTECT) amount = models.DecimalField(_('amount'), decimal_places=2, max_digits=10) timestamp = models.DateField(_('when')) @@ -318,8 +360,8 @@ class Spent(models.Model): verbose_name_plural = _('money spent on books') ordering = ['-timestamp'] - def __unicode__(self): - return u"Spent: %s" % unicode(self.book) + def __str__(self): + return "Spent: %s" % str(self.book) @receiver(getpaid.signals.new_payment_query)