8321b54e282ca195ad09a235e1b349a26810008f
[redakcja.git] / src / catalogue / models.py
1 from collections import Counter
2 from datetime import date, timedelta
3 import decimal
4 import re
5 from urllib.request import urlopen
6 from django.apps import apps
7 from django.conf import settings
8 from django.db import models
9 from django.template.loader import render_to_string
10 from django.urls import reverse
11 from django.utils.translation import gettext_lazy as _
12 from admin_ordering.models import OrderableModel
13 from wikidata.client import Client
14 from .constants import WIKIDATA
15 from .wikidata import WikidataModel
16 from .wikimedia import WikiMedia
17
18
19 class Author(WikidataModel):
20     slug = models.SlugField(max_length=255, null=True, blank=True, unique=True)
21     first_name = models.CharField(_("first name"), max_length=255, blank=True)
22     last_name = models.CharField(_("last name"), max_length=255, blank=True)
23     genitive = models.CharField(
24         'dopełniacz', max_length=255, blank=True,
25         help_text='utwory … (czyje?)'
26     )
27
28     name_de = models.CharField(_("name (de)"), max_length=255, blank=True)
29     name_lt = models.CharField(_("name (lt)"), max_length=255, blank=True)
30
31     gender = models.CharField(_("gender"), max_length=255, blank=True)
32     nationality = models.CharField(_("nationality"), max_length=255, blank=True)
33
34     year_of_birth = models.SmallIntegerField(_("year of birth"), null=True, blank=True)
35     year_of_birth_inexact = models.BooleanField(_("inexact"), default=False)
36     year_of_birth_range = models.SmallIntegerField(_("year of birth, range end"), null=True, blank=True)
37     date_of_birth = models.DateField(_("date_of_birth"), null=True, blank=True)
38     century_of_birth = models.SmallIntegerField(
39         _("century of birth"), null=True, blank=True,
40         help_text=_('Set if year unknown. Negative for BC.')
41     )
42     place_of_birth = models.ForeignKey(
43         'Place', models.PROTECT, null=True, blank=True,
44         verbose_name=_('place of birth'),
45         related_name='authors_born'
46     )
47     year_of_death = models.SmallIntegerField(_("year of death"), null=True, blank=True)
48     year_of_death_inexact = models.BooleanField(_("inexact"), default=False)
49     year_of_death_range = models.SmallIntegerField(_("year of death, range end"), null=True, blank=True)
50     date_of_death = models.DateField(_("date_of_death"), null=True, blank=True)
51     century_of_death = models.SmallIntegerField(
52         _("century of death"), null=True, blank=True,
53         help_text=_('Set if year unknown. Negative for BC.')
54     )
55     place_of_death = models.ForeignKey(
56         'Place', models.PROTECT, null=True, blank=True,
57         verbose_name=_('place of death'),
58         related_name='authors_died'
59     )
60     status = models.PositiveSmallIntegerField(
61         _("status"), 
62         null=True,
63         blank=True,
64         choices=[
65             (1, _("Alive")),
66             (2, _("Dead")),
67             (3, _("Long dead")),
68             (4, _("Unknown")),
69         ],
70     )
71     notes = models.TextField(_("notes"), blank=True, help_text=_('private'))
72
73     gazeta_link = models.CharField(_("gazeta link"), max_length=255, blank=True)
74     culturepl_link = models.CharField(_("culture.pl link"), max_length=255, blank=True)
75     plwiki = models.CharField(blank=True, max_length=255)
76     photo = models.ImageField(blank=True, null=True, upload_to='catalogue/author/')
77     photo_source = models.CharField(blank=True, max_length=255)
78     photo_attribution = models.CharField(max_length=255, blank=True)
79
80     description = models.TextField(_("description"), blank=True, help_text=_('for publication'))
81
82     priority = models.PositiveSmallIntegerField(
83         _("priority"), 
84         default=0, choices=[(0, _("Low")), (1, _("Medium")), (2, _("High"))]
85     )
86     collections = models.ManyToManyField("Collection", blank=True, verbose_name=_("collections"))
87
88     class Meta:
89         verbose_name = _('author')
90         verbose_name_plural = _('authors')
91         ordering = ("last_name", "first_name", "year_of_death")
92
93     class Wikidata:
94         first_name = WIKIDATA.GIVEN_NAME
95         last_name = WIKIDATA.LAST_NAME
96         date_of_birth = WIKIDATA.DATE_OF_BIRTH
97         year_of_birth = WIKIDATA.DATE_OF_BIRTH
98         place_of_birth = WIKIDATA.PLACE_OF_BIRTH
99         date_of_death = WIKIDATA.DATE_OF_DEATH
100         year_of_death = WIKIDATA.DATE_OF_DEATH
101         place_of_death = WIKIDATA.PLACE_OF_DEATH
102         gender = WIKIDATA.GENDER
103         notes = WikiMedia.append("description")
104         plwiki = "plwiki"
105         photo = WikiMedia.download(WIKIDATA.IMAGE)
106         photo_source = WikiMedia.descriptionurl(WIKIDATA.IMAGE)
107         photo_attribution = WikiMedia.attribution(WIKIDATA.IMAGE)
108
109         def _supplement(obj):
110             if not obj.first_name and not obj.last_name:
111                 yield 'first_name', 'label'
112
113     def __str__(self):
114         name = f"{self.first_name} {self.last_name}"
115         if self.year_of_death is not None:
116             name += f' (zm. {self.year_of_death})'
117         return name
118
119     def get_absolute_url(self):
120         return reverse("catalogue_author", args=[self.slug])
121
122     @property
123     def name(self):
124         return f"{self.last_name}, {self.first_name}"
125     
126     @property
127     def pd_year(self):
128         if self.year_of_death:
129             return self.year_of_death + 71
130         elif self.year_of_death == 0:
131             return 0
132         else:
133             return None
134
135     def generate_description(self):
136         t = render_to_string(
137             'catalogue/author_description.html',
138             {'obj': self}
139         )
140         return t
141
142     def century_description(self, number):
143         n = abs(number)
144         letters = ''
145         while n > 10:
146             letters += 'X'
147             n -= 10
148         if n == 9:
149             letters += 'IX'
150             n = 0
151         elif n >= 5:
152             letters += 'V'
153             n -= 5
154         if n == 4:
155             letters += 'IV'
156             n = 0
157         letters += 'I' * n
158         letters += ' w.'
159         if number < 0:
160             letters += ' p.n.e.'
161         return letters
162
163     def birth_century_description(self):
164         return self.century_description(self.century_of_birth)
165
166     def death_century_description(self):
167         return self.century_description(self.century_of_death)
168
169     
170 class NotableBook(OrderableModel):
171     author = models.ForeignKey(Author, models.CASCADE)
172     book = models.ForeignKey('Book', models.CASCADE)
173
174
175 class Category(WikidataModel):
176     name = models.CharField(_("name"), max_length=255)
177     slug = models.SlugField(max_length=255, unique=True)
178     description = models.TextField(_("description"), blank=True, help_text=_('for publication'))
179
180     class Meta:
181         abstract = True
182
183     def __str__(self):
184         return self.name
185
186
187 class Epoch(Category):
188     adjective_feminine_singular = models.CharField(
189         'przymiotnik pojedynczy żeński', max_length=255, blank=True,
190         help_text='twórczość … Adama Mickiewicza'
191     )
192     adjective_nonmasculine_plural = models.CharField(
193         'przymiotnik mnogi niemęskoosobowy', max_length=255, blank=True,
194         help_text='utwory … Adama Mickiewicza'
195     )
196
197     class Meta:
198         verbose_name = _('epoch')
199         verbose_name_plural = _('epochs')
200
201
202 class Genre(Category):
203     plural = models.CharField(
204         'liczba mnoga', max_length=255, blank=True,
205         help_text='dotyczy gatunków'
206     )
207     is_epoch_specific = models.BooleanField(
208         default=False,
209         help_text='Po wskazaniu tego gatunku, dodanie epoki byłoby nadmiarowe, np. „dramat romantyczny”'
210     )
211
212     class Meta:
213         verbose_name = _('genre')
214         verbose_name_plural = _('genres')
215
216
217 class Kind(Category):
218     collective_noun = models.CharField(
219         'określenie zbiorowe', max_length=255, blank=True,
220         help_text='np. „Liryka” albo „Twórczość dramatyczna”'
221     )
222
223     class Meta:
224         verbose_name = _('kind')
225         verbose_name_plural = _('kinds')
226
227
228 class Book(WikidataModel):
229     slug = models.SlugField(max_length=255, blank=True, null=True, unique=True)
230     authors = models.ManyToManyField(Author, blank=True, verbose_name=_("authors"))
231     translators = models.ManyToManyField(
232         Author,
233         related_name="translated_book_set",
234         related_query_name="translated_book",
235         blank=True,
236         verbose_name=_("translators")
237     )
238     epochs = models.ManyToManyField(Epoch, blank=True, verbose_name=_("epochs"))
239     kinds = models.ManyToManyField(Kind, blank=True, verbose_name=_("kinds"))
240     genres = models.ManyToManyField(Genre, blank=True, verbose_name=_("genres"))
241     title = models.CharField(_("title"), max_length=255, blank=True)
242     language = models.CharField(_("language"), max_length=255, blank=True)
243     based_on = models.ForeignKey(
244         "self", models.PROTECT, related_name="translation", null=True, blank=True,
245         verbose_name=_("based on")
246     )
247     scans_source = models.CharField(_("scans source"), max_length=255, blank=True)
248     text_source = models.CharField(_("text source"), max_length=255, blank=True)
249     notes = models.TextField(_("notes"), blank=True, help_text=_('private'))
250     priority = models.PositiveSmallIntegerField(
251         _("priority"),
252         default=0, choices=[(0, _("Low")), (1, _("Medium")), (2, _("High"))]
253     )
254     original_year = models.IntegerField(_('original publication year'), null=True, blank=True)
255     pd_year = models.IntegerField(_('year of entry into PD'), null=True, blank=True)
256     gazeta_link = models.CharField(_("gazeta link"), max_length=255, blank=True)
257     collections = models.ManyToManyField("Collection", blank=True, verbose_name=_("collections"))
258
259     estimated_chars = models.IntegerField(_("estimated number of characters"), null=True, blank=True)
260     estimated_verses = models.IntegerField(_("estimated number of verses"), null=True, blank=True)
261     estimate_source = models.CharField(_("source of estimates"), max_length=2048, blank=True)
262
263     free_license = models.BooleanField(_('free license'), default=False)
264     polona_missing = models.BooleanField(_('missing on Polona'), default=False)
265
266     monthly_views_reader = models.IntegerField(default=0)
267     monthly_views_page = models.IntegerField(default=0)
268     
269     class Meta:
270         ordering = ("title",)
271         verbose_name = _('book')
272         verbose_name_plural = _('books')
273
274     class Wikidata:
275         authors = WIKIDATA.AUTHOR
276         translators = WIKIDATA.TRANSLATOR
277         title = WIKIDATA.TITLE
278         language = WIKIDATA.LANGUAGE
279         based_on = WIKIDATA.BASED_ON
280         original_year = WIKIDATA.PUBLICATION_DATE
281         notes = WikiMedia.append("description")
282
283     def __str__(self):
284         txt = self.title
285         if self.original_year:
286             txt = f"{txt} ({self.original_year})"
287         astr = self.authors_str()
288         if astr:
289             txt = f"{txt}, {astr}"
290         tstr = self.translators_str()
291         if tstr:
292             txt = f"{txt}, tłum. {tstr}"
293         return txt
294
295     def get_absolute_url(self):
296         return reverse("catalogue_book", args=[self.slug])
297
298     @property
299     def wluri(self):
300         return f'https://wolnelektury.pl/katalog/lektura/{self.slug}/'
301     
302     def authors_str(self):
303         if not self.pk:
304             return ''
305         return ", ".join(str(author) for author in self.authors.all())
306     authors_str.admin_order_field = 'authors__last_name'
307     authors_str.short_description = _('Author')
308
309     def translators_str(self):
310         if not self.pk:
311             return ''
312         return ", ".join(str(author) for author in self.translators.all())
313     translators_str.admin_order_field = 'translators__last_name'
314     translators_str.short_description = _('Translator')
315
316     def authors_first_names(self):
317         return ', '.join(a.first_name for a in self.authors.all())
318
319     def authors_last_names(self):
320         return ', '.join(a.last_name for a in self.authors.all())
321
322     def translators_first_names(self):
323         return ', '.join(a.first_name for a in self.translators.all())
324
325     def translators_last_names(self):
326         return ', '.join(a.last_name for a in self.translators.all())
327
328     def document_book__project(self):
329         b = self.document_books.first()
330         if b is None: return ''
331         if b.project is None: return ''
332         return b.project.name
333
334     def audience(self):
335         try:
336             return self.document_books.first().wldocument().book_info.audience or ''
337         except:
338             return ''
339
340     def get_estimated_costs(self):
341         return {
342             work_type: work_type.calculate(self)
343             for work_type in WorkType.objects.all()
344         }
345
346     def update_monthly_stats(self):
347         # Find publication date.
348         # By default, get previous 12 months.
349         this_month = date.today().replace(day=1)
350         cutoff = this_month.replace(year=this_month.year - 1)
351         months = 12
352
353         # If the book was published later,
354         # find out the denominator.
355         pbr = apps.get_model('documents', 'BookPublishRecord').objects.filter(
356             book__catalogue_book=self).order_by('timestamp').first()
357         if pbr is not None and pbr.timestamp.date() > cutoff:
358             months = (this_month - pbr.timestamp.date()).days / 365 * 12
359
360         if not months:
361             return
362
363         stats = self.bookmonthlystats_set.filter(date__gte=cutoff).aggregate(
364             views_page=models.Sum('views_page'),
365             views_reader=models.Sum('views_reader')
366         )
367         self.monthly_views_page = stats['views_page'] / months
368         self.monthly_views_reader = stats['views_reader'] / months
369         self.save(update_fields=['monthly_views_page', 'monthly_views_reader'])
370
371     @property
372     def content_stats(self):
373         if hasattr(self, '_content_stats'):
374             return self._content_stats
375         try:
376             stats = self.document_books.first().wldocument().get_statistics()['total']
377         except Exception as e:
378             stats = {}
379         self._content_stats = stats
380         return stats
381
382     chars = lambda self: self.content_stats.get('chars', '')
383     chars_with_fn = lambda self: self.content_stats.get('chars_with_fn', '')
384     words = lambda self: self.content_stats.get('words', '')
385     words_with_fn = lambda self: self.content_stats.get('words_with_fn', '')
386     verses = lambda self: self.content_stats.get('verses', '')
387     verses_with_fn = lambda self: self.content_stats.get('verses_with_fn', '')
388     chars_out_verse = lambda self: self.content_stats.get('chars_out_verse', '')
389     chars_out_verse_with_fn = lambda self: self.content_stats.get('chars_out_verse_with_fn', '')
390
391 class CollectionCategory(models.Model):
392     name = models.CharField(_("name"), max_length=255)
393     parent = models.ForeignKey('self', models.SET_NULL, related_name='children', null=True, blank=True, verbose_name=_("parent"))
394     notes = models.TextField(_("notes"), blank=True, help_text=_('private'))
395
396     class Meta:
397         ordering = ('parent__name', 'name')
398         verbose_name = _('collection category')
399         verbose_name_plural = _('collection categories')
400
401     def __str__(self):
402         if self.parent:
403             return f"{self.parent} / {self.name}"
404         else:
405             return self.name
406
407
408 class Collection(models.Model):
409     name = models.CharField(_("name"), max_length=255)
410     slug = models.SlugField(max_length=255, unique=True)
411     category = models.ForeignKey(CollectionCategory, models.SET_NULL, null=True, blank=True, verbose_name=_("category"))
412     notes = models.TextField(_("notes"), blank=True, help_text=_('private'))
413     description = models.TextField(_("description"), blank=True)
414
415     class Meta:
416         ordering = ('category', 'name')
417         verbose_name = _('collection')
418         verbose_name_plural = _('collections')
419
420     def __str__(self):
421         if self.category:
422             return f"{self.category} / {self.name}"
423         else:
424             return self.name
425
426     def get_estimated_costs(self):
427         costs = Counter()
428         for book in self.book_set.all():
429             for k, v in book.get_estimated_costs().items():
430                 costs[k] += v or 0
431
432         for author in self.author_set.all():
433             for book in author.book_set.all():
434                 for k, v in book.get_estimated_costs().items():
435                     costs[k] += v or 0
436             for book in author.translated_book_set.all():
437                 for k, v in book.get_estimated_costs().items():
438                     costs[k] += v or 0
439         return costs
440
441
442 class WorkType(models.Model):
443     name = models.CharField(_("name"), max_length=255)
444
445     class Meta:
446         ordering = ('name',)
447         verbose_name = _('work type')
448         verbose_name_plural = _('work types')
449     
450     def get_rate_for(self, book):
451         for workrate in self.workrate_set.all():
452             if workrate.matches(book):
453                 return workrate
454
455     def calculate(self, book):
456         workrate = self.get_rate_for(book)
457         if workrate is not None:
458             return workrate.calculate(book)
459         
460
461
462 class WorkRate(models.Model):
463     priority = models.IntegerField(_("priority"), default=1)
464     per_normpage = models.DecimalField(_("per normalized page"), decimal_places=2, max_digits=6, null=True, blank=True)
465     per_verse = models.DecimalField(_("per verse"), decimal_places=2, max_digits=6, null=True, blank=True)
466     work_type = models.ForeignKey(WorkType, models.CASCADE, verbose_name=_("work type"))
467     epochs = models.ManyToManyField(Epoch, blank=True, verbose_name=_("epochs"))
468     kinds = models.ManyToManyField(Kind, blank=True, verbose_name=_("kinds"))
469     genres = models.ManyToManyField(Genre, blank=True, verbose_name=_("genres"))
470     collections = models.ManyToManyField(Collection, blank=True, verbose_name=_("collections"))
471
472     class Meta:
473         ordering = ('priority',)
474         verbose_name = _('work rate')
475         verbose_name_plural = _('work rates')
476
477     def matches(self, book):
478         for category in 'epochs', 'kinds', 'genres', 'collections':
479             oneof = getattr(self, category).all()
480             if oneof:
481                 if not set(oneof).intersection(
482                         getattr(book, category).all()):
483                     return False
484         return True
485
486     def calculate(self, book):
487         if self.per_verse:
488             if book.estimated_verses:
489                 return book.estimated_verses * self.per_verse
490         elif self.per_normpage:
491             if book.estimated_chars:
492                 return (decimal.Decimal(book.estimated_chars) / 1800 * self.per_normpage).quantize(decimal.Decimal('1.00'), rounding=decimal.ROUND_HALF_UP)
493
494
495 class Place(WikidataModel):
496     name = models.CharField(_('name'), max_length=255, blank=True)
497     locative = models.CharField(_('locative'), max_length=255, blank=True, help_text=_('in…'))
498
499     class Meta:
500         verbose_name = _('place')
501         verbose_name_plural = _('places')
502     
503     class Wikidata:
504         name = 'label'
505
506     def __str__(self):
507         return self.name
508
509
510 class BookMonthlyStats(models.Model):
511     book = models.ForeignKey('catalogue.Book', models.CASCADE)
512     date = models.DateField()
513     views_reader = models.IntegerField(default=0)
514     views_page = models.IntegerField(default=0)
515
516     @classmethod
517     def build_for_month(cls, date):
518         date = date.replace(day=1)
519         period = 'month'
520
521         date = date.isoformat()
522         url = f'{settings.PIWIK_URL}?date={date}&filter_limit=-1&format=CSV&idSite={settings.PIWIK_WL_SITE_ID}&language=pl&method=Actions.getPageUrls&module=API&period={period}&segment=&token_auth={settings.PIWIK_TOKEN}&flat=1'
523         data = urlopen(url).read().decode('utf-16')
524         lines = data.split('\n')[1:]
525         for line in lines:
526             m = re.match('^/katalog/lektura/([^,./]+)\.html,', line)
527             if m is not None:
528                 which = 'views_reader'
529             else:
530                 m = re.match('^/katalog/lektura/([^,./]+)/,', line)
531                 if m is not None:
532                     which = 'views_page'
533             if m is not None:
534                 slug = m.group(1)
535                 _url, _uviews, views, _rest = line.split(',', 3)
536                 views = int(views)
537                 try:
538                     book = Book.objects.get(slug=slug)
539                 except Book.DoesNotExist:
540                     continue
541                 else:
542                     cls.objects.update_or_create(
543                         book=book, date=date,
544                         defaults={which: views}
545                     )
546                     book.update_monthly_stats()