X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/75957f735219259d3b4bc361f80ccd3d7b92a0e9..8885fd14f5f040eb3aa69f1d705856f99a1fa572:/src/funding/models.py diff --git a/src/funding/models.py b/src/funding/models.py index 3e20efc7b..23afa3c04 100644 --- a/src/funding/models.py +++ b/src/funding/models.py @@ -1,5 +1,5 @@ -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. # from datetime import date, datetime from urllib.parse import urlencode @@ -10,45 +10,46 @@ 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 django.utils.translation import override from catalogue.models import Book from catalogue.utils import get_random_hash from polls.models import Poll +import club.payu.models from wolnelektury.utils import cached_render, clear_cached_renders from . import app_settings +from . import utils class Offer(models.Model): """ A fundraiser for a particular book. """ - author = models.CharField(_('author'), max_length=255) - title = models.CharField(_('title'), max_length=255) - slug = models.SlugField(_('slug')) - description = models.TextField(_('description'), blank=True) - target = models.DecimalField(_('target'), decimal_places=2, max_digits=10) - 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, 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) - - notified_near = models.DateTimeField(_('Near-end notifications sent'), blank=True, null=True) - notified_end = models.DateTimeField(_('End notifications sent'), blank=True, null=True) + author = models.CharField('autor', max_length=255) + title = models.CharField('tytuł', max_length=255) + slug = models.SlugField('slug') + description = models.TextField('opis', blank=True) + target = models.DecimalField('kwota docelowa', decimal_places=2, max_digits=10) + start = models.DateField('początek', db_index=True) + end = models.DateField('koniec', db_index=True) + redakcja_url = models.URLField('URL na Redakcji', blank=True) + book = models.ForeignKey(Book, models.PROTECT, null=True, blank=True, help_text='Opublikowana książka.') + cover = models.ImageField('Okładka', upload_to='funding/covers') + poll = models.ForeignKey(Poll, help_text='Ankieta', null=True, blank=True, on_delete=models.SET_NULL) + + notified_near = models.DateTimeField('Wysłano powiadomienia przed końcem', blank=True, null=True) + notified_end = models.DateTimeField('Wysłano powiadomienia o zakończeniu', blank=True, null=True) def cover_img_tag(self): - return u'' % self.cover.url - cover_img_tag.short_description = _('Cover preview') - cover_img_tag.allow_tags = True + return mark_safe('' % self.cover.url) + cover_img_tag.short_description = 'Podgląd okładki' class Meta: - verbose_name = _('offer') - verbose_name_plural = _('offers') + verbose_name = 'zbiórka' + verbose_name_plural = 'zbiórki' ordering = ['-end'] def __str__(self): - return u"%s - %s" % (self.author, self.title) + return "%s - %s" % (self.author, self.title) def get_absolute_url(self): return reverse('funding_offer', args=[self.slug]) @@ -63,9 +64,11 @@ class Offer(models.Model): self.notify_published() return retval + def get_payu_payment_title(self): + return utils.sanitize_payment_title(str(self)) + 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) @@ -134,7 +137,7 @@ class Offer(models.Model): return Funding.payed().filter(offer=self) def funders(self): - return self.funding_payed().order_by('-amount', 'payed_at') + return self.funding_payed().order_by('-amount', 'completed_at') def sum(self): """ The money gathered. """ @@ -151,7 +154,7 @@ class Offer(models.Model): return assert not self.is_current() self.notify_all( - _('The fundraiser has ended!'), + _('Zbiórka dobiegła końca!'), 'funding/email/end.txt', { 'offer': self, 'is_win': self.is_win(), @@ -168,7 +171,7 @@ class Offer(models.Model): sum_ = self.sum() need = self.target - sum_ self.notify_all( - _('The fundraiser will end soon!'), + _('Zbiórka niedługo się zakończy!'), 'funding/email/near.txt', { 'days': (self.end - date.today()).days + 1, 'offer': self, @@ -182,7 +185,7 @@ class Offer(models.Model): def notify_published(self): assert self.book is not None self.notify_all( - _('The book you helped fund has been published.'), + _('Książka, którą pomogłeś/-aś ufundować, została opublikowana.'), 'funding/email/published.txt', { 'offer': self, 'book': self.book, @@ -194,16 +197,24 @@ class Offer(models.Model): offer_sum = self.sum() return { 'offer': self, - 'sum': offset_sum, + '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, + 'percentage': min(100, 100 * offer_sum / self.target), 'show_title': True, 'show_title_calling': True, } + @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} + @cached_render('funding/includes/funding.html') def top_bar(self): ctx = self.basic_info() @@ -214,15 +225,6 @@ class Offer(models.Model): }) 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() @@ -231,14 +233,6 @@ class Offer(models.Model): }) 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. @@ -246,52 +240,79 @@ class Perk(models.Model): If no attached to a particular Offer, applies to all. """ - 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) - end_date = models.DateField(_('end date'), null=True, blank=True) + offer = models.ForeignKey(Offer, models.CASCADE, verbose_name='zbiórka', null=True, blank=True) + price = models.DecimalField('cena', decimal_places=2, max_digits=10) + name = models.CharField('nazwa', max_length=255) + long_name = models.CharField('długa nazwa', max_length=255) + end_date = models.DateField('data końcowa', null=True, blank=True) class Meta: - verbose_name = _('perk') - verbose_name_plural = _('perks') + verbose_name = 'prezent' + verbose_name_plural = 'prezenty' ordering = ['-price'] def __str__(self): - return "%s (%s%s)" % (self.name, self.price, u" for %s" % self.offer if self.offer else "") + return "%s (%s%s)" % (self.name, self.price, " for %s" % self.offer if self.offer else "") -class Funding(models.Model): +class Funding(club.payu.models.Order): """ A person paying in a fundraiser. - The payment was completed if and only if payed_at is set. + The payment was completed if and only if completed_at is set. """ - 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) - payed_at = models.DateTimeField(_('payed at'), null=True, blank=True, db_index=True) - perks = models.ManyToManyField(Perk, verbose_name=_('perks'), blank=True) + offer = models.ForeignKey(Offer, models.PROTECT, verbose_name='zbiórka') + customer_ip = models.GenericIPAddressField('adres IP', null=True, blank=True) + + name = models.CharField('nazwa', max_length=127, blank=True) + email = models.EmailField('e-mail', blank=True, db_index=True) + user = models.ForeignKey(settings.AUTH_USER_MODEL, models.SET_NULL, blank=True, null=True) + amount = models.DecimalField('kwota', decimal_places=2, max_digits=10) + perks = models.ManyToManyField(Perk, verbose_name='prezenty', blank=True) language_code = models.CharField(max_length=2, null=True, blank=True) - notifications = models.BooleanField(_('notifications'), default=True, db_index=True) - notify_key = models.CharField(max_length=32) + notifications = models.BooleanField('powiadomienia', default=True, db_index=True) + notify_key = models.CharField(max_length=32, blank=True) class Meta: - verbose_name = _('funding') - verbose_name_plural = _('fundings') - ordering = ['-payed_at', 'pk'] + verbose_name = 'wpłata' + verbose_name_plural = 'wpłaty' + ordering = ['-completed_at', 'pk'] @classmethod def payed(cls): """ QuerySet for all completed payments. """ - return cls.objects.exclude(payed_at=None) + return cls.objects.exclude(completed_at=None) def __str__(self): return str(self.offer) - def get_absolute_url(self): - return reverse('funding_funding', args=[self.pk]) + def get_amount(self): + return self.amount + + def get_buyer(self): + return { + "email": self.email, + "language": self.language_code, + } + + def get_description(self): + return self.offer.get_payu_payment_title() + + def get_thanks_url(self): + return reverse('funding_thanks') + + def status_updated(self): + if self.status == 'COMPLETED': + if self.email: + self.notify( + _('Thank you for your support!'), + 'funding/email/thanks.txt' + ) + + def get_notify_url(self): + return "https://{}{}".format( + Site.objects.get_current().domain, + reverse('funding_payu_notify', args=[self.pk])) def perk_names(self): return ", ".join(perk.name for perk in self.perks.all()) @@ -304,6 +325,9 @@ 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) @@ -315,7 +339,7 @@ class Funding(models.Model): def notify_funders(cls, subject, template_name, extra_context=None, query_filter=None, payed_only=True): funders = cls.objects.exclude(email="").filter(notifications=True) if payed_only: - funders = funders.exclude(payed_at=None) + funders = funders.exclude(completed_at=None) if query_filter is not None: funders = funders.filter(query_filter) emails = set() @@ -342,46 +366,21 @@ class Funding(models.Model): type(self).objects.filter(email=self.email).update(notifications=False) -# Register the Funding model with django-getpaid for payments. -getpaid.register_to_payment(Funding, unique=False, related_name='payment') +class PayUNotification(club.payu.models.Notification): + order = models.ForeignKey(Funding, models.CASCADE, related_name='notification_set') class Spent(models.Model): """ Some of the remaining money spent on a book. """ book = models.ForeignKey(Book, models.PROTECT) - amount = models.DecimalField(_('amount'), decimal_places=2, max_digits=10) - timestamp = models.DateField(_('when')) + amount = models.DecimalField('kwota', decimal_places=2, max_digits=10) + timestamp = models.DateField('kiedy') class Meta: - verbose_name = _('money spent on a book') - verbose_name_plural = _('money spent on books') + verbose_name = 'pieniądze wydane na książkę' + verbose_name_plural = 'pieniądze wydane na książki' ordering = ['-timestamp'] def __str__(self): - return u"Spent: %s" % str(self.book) - - -@receiver(getpaid.signals.new_payment_query) -def new_payment_query_listener(sender, order=None, payment=None, **kwargs): - """ Set payment details for getpaid. """ - payment.amount = order.amount - payment.currency = 'PLN' - - -@receiver(getpaid.signals.user_data_query) -def user_data_query_listener(sender, order, user_data, **kwargs): - """ Set user data for payment. """ - user_data['email'] = order.email - + return "Spent: %s" % str(self.book) -@receiver(getpaid.signals.payment_status_changed) -def payment_status_changed_listener(sender, instance, old_status, new_status, **kwargs): - """ React to status changes from getpaid. """ - if old_status != 'paid' and new_status == 'paid': - instance.order.payed_at = datetime.utcnow().replace(tzinfo=utc) - instance.order.save() - if instance.order.email: - instance.order.notify( - _('Thank you for your support!'), - 'funding/email/thanks.txt' - )