8db23ab38c5d8e0ac716be4a27d71793d39360bc
[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     woblink = models.IntegerField(null=True, blank=True)
89     
90     class Meta:
91         verbose_name = _('author')
92         verbose_name_plural = _('authors')
93         ordering = ("last_name", "first_name", "year_of_death")
94
95     class Wikidata:
96         first_name = WIKIDATA.GIVEN_NAME
97         last_name = WIKIDATA.LAST_NAME
98         date_of_birth = WIKIDATA.DATE_OF_BIRTH
99         year_of_birth = WIKIDATA.DATE_OF_BIRTH
100         place_of_birth = WIKIDATA.PLACE_OF_BIRTH
101         date_of_death = WIKIDATA.DATE_OF_DEATH
102         year_of_death = WIKIDATA.DATE_OF_DEATH
103         place_of_death = WIKIDATA.PLACE_OF_DEATH
104         gender = WIKIDATA.GENDER
105         notes = WikiMedia.append("description")
106         plwiki = "plwiki"
107         photo = WikiMedia.download(WIKIDATA.IMAGE)
108         photo_source = WikiMedia.descriptionurl(WIKIDATA.IMAGE)
109         photo_attribution = WikiMedia.attribution(WIKIDATA.IMAGE)
110
111         def _supplement(obj):
112             if not obj.first_name and not obj.last_name:
113                 yield 'first_name', 'label'
114
115     def __str__(self):
116         name = f"{self.first_name} {self.last_name}"
117         if self.year_of_death is not None:
118             name += f' (zm. {self.year_of_death})'
119         return name
120
121     def get_absolute_url(self):
122         return reverse("catalogue_author", args=[self.slug])
123
124     @classmethod
125     def get_by_literal(cls, literal):
126         names = literal.split(',', 1)
127         names = [n.strip() for n in names]
128         if len(names) == 2:
129             return cls.objects.filter(last_name=names[0], first_name=names[1]).first()
130         else:
131             return cls.objects.filter(last_name_pl=names[0], first_name_pl='').first() or \
132                 cls.objects.filter(first_name_pl=names[0], last_name_pl='').first() or \
133                 cls.objects.filter(first_name_pl=literal, last_name_pl='').first() or \
134                 cls.objects.filter(first_name_pl=literal, last_name_pl=None).first()
135
136     @property
137     def name(self):
138         return f"{self.last_name}, {self.first_name}"
139     
140     @property
141     def pd_year(self):
142         if self.year_of_death:
143             return self.year_of_death + 71
144         elif self.year_of_death == 0:
145             return 0
146         else:
147             return None
148
149     def generate_description(self):
150         t = render_to_string(
151             'catalogue/author_description.html',
152             {'obj': self}
153         )
154         return t
155
156     def century_description(self, number):
157         n = abs(number)
158         letters = ''
159         while n > 10:
160             letters += 'X'
161             n -= 10
162         if n == 9:
163             letters += 'IX'
164             n = 0
165         elif n >= 5:
166             letters += 'V'
167             n -= 5
168         if n == 4:
169             letters += 'IV'
170             n = 0
171         letters += 'I' * n
172         letters += ' w.'
173         if number < 0:
174             letters += ' p.n.e.'
175         return letters
176
177     def birth_century_description(self):
178         return self.century_description(self.century_of_birth)
179
180     def death_century_description(self):
181         return self.century_description(self.century_of_death)
182
183     def year_description(self, number):
184         n = abs(number)
185         letters = str(n)
186         letters += ' r.'
187         if number < 0:
188             letters += ' p.n.e.'
189         return letters
190
191     def year_of_birth_description(self):
192         return self.year_description(self.year_of_birth)
193     def year_of_death_description(self):
194         return self.year_description(self.year_of_death)
195
196
197 class NotableBook(OrderableModel):
198     author = models.ForeignKey(Author, models.CASCADE)
199     book = models.ForeignKey('Book', models.CASCADE)
200
201
202 class Category(WikidataModel):
203     name = models.CharField(_("name"), max_length=255)
204     slug = models.SlugField(max_length=255, unique=True)
205     description = models.TextField(_("description"), blank=True, help_text=_('for publication'))
206
207     class Meta:
208         abstract = True
209
210     def __str__(self):
211         return self.name
212
213
214 class Epoch(Category):
215     adjective_feminine_singular = models.CharField(
216         'przymiotnik pojedynczy żeński', max_length=255, blank=True,
217         help_text='twórczość … Adama Mickiewicza'
218     )
219     adjective_nonmasculine_plural = models.CharField(
220         'przymiotnik mnogi niemęskoosobowy', max_length=255, blank=True,
221         help_text='utwory … Adama Mickiewicza'
222     )
223
224     class Meta:
225         verbose_name = _('epoch')
226         verbose_name_plural = _('epochs')
227
228
229 class Genre(Category):
230     plural = models.CharField(
231         'liczba mnoga', max_length=255, blank=True,
232     )
233     is_epoch_specific = models.BooleanField(
234         default=False,
235         help_text='Po wskazaniu tego gatunku, dodanie epoki byłoby nadmiarowe, np. „dramat romantyczny”'
236     )
237
238     class Meta:
239         verbose_name = _('genre')
240         verbose_name_plural = _('genres')
241
242
243 class Kind(Category):
244     collective_noun = models.CharField(
245         'określenie zbiorowe', max_length=255, blank=True,
246         help_text='np. „Liryka” albo „Twórczość dramatyczna”'
247     )
248
249     class Meta:
250         verbose_name = _('kind')
251         verbose_name_plural = _('kinds')
252
253
254 class Book(WikidataModel):
255     slug = models.SlugField(max_length=255, blank=True, null=True, unique=True)
256     authors = models.ManyToManyField(Author, blank=True, verbose_name=_("authors"))
257     translators = models.ManyToManyField(
258         Author,
259         related_name="translated_book_set",
260         related_query_name="translated_book",
261         blank=True,
262         verbose_name=_("translators")
263     )
264     epochs = models.ManyToManyField(Epoch, blank=True, verbose_name=_("epochs"))
265     kinds = models.ManyToManyField(Kind, blank=True, verbose_name=_("kinds"))
266     genres = models.ManyToManyField(Genre, blank=True, verbose_name=_("genres"))
267     title = models.CharField(_("title"), max_length=255, blank=True)
268     language = models.CharField(_("language"), max_length=255, blank=True)
269     based_on = models.ForeignKey(
270         "self", models.PROTECT, related_name="translation", null=True, blank=True,
271         verbose_name=_("based on")
272     )
273     scans_source = models.CharField(_("scans source"), max_length=255, blank=True)
274     text_source = models.CharField(_("text source"), max_length=255, blank=True)
275     notes = models.TextField(_("notes"), blank=True, help_text=_('private'))
276     priority = models.PositiveSmallIntegerField(
277         _("priority"),
278         default=0, choices=[(0, _("Low")), (1, _("Medium")), (2, _("High"))]
279     )
280     original_year = models.IntegerField(_('original publication year'), null=True, blank=True)
281     pd_year = models.IntegerField(_('year of entry into PD'), null=True, blank=True)
282     plwiki = models.CharField(blank=True, max_length=255)
283     gazeta_link = models.CharField(_("gazeta link"), max_length=255, blank=True)
284     collections = models.ManyToManyField("Collection", blank=True, verbose_name=_("collections"))
285
286     estimated_chars = models.IntegerField(_("estimated number of characters"), null=True, blank=True)
287     estimated_verses = models.IntegerField(_("estimated number of verses"), null=True, blank=True)
288     estimate_source = models.CharField(_("source of estimates"), max_length=2048, blank=True)
289
290     free_license = models.BooleanField(_('free license'), default=False)
291     polona_missing = models.BooleanField(_('missing on Polona'), default=False)
292
293     monthly_views_reader = models.IntegerField(default=0)
294     monthly_views_page = models.IntegerField(default=0)
295     
296     class Meta:
297         ordering = ("title",)
298         verbose_name = _('book')
299         verbose_name_plural = _('books')
300
301     class Wikidata:
302         plwiki = "plwiki"
303         authors = WIKIDATA.AUTHOR
304         translators = WIKIDATA.TRANSLATOR
305         title = WIKIDATA.TITLE
306         language = WIKIDATA.LANGUAGE
307         based_on = WIKIDATA.BASED_ON
308         original_year = WIKIDATA.PUBLICATION_DATE
309         notes = WikiMedia.append("description")
310
311     def __str__(self):
312         txt = self.title
313         if self.original_year:
314             txt = f"{txt} ({self.original_year})"
315         astr = self.authors_str()
316         if astr:
317             txt = f"{txt}, {astr}"
318         tstr = self.translators_str()
319         if tstr:
320             txt = f"{txt}, tłum. {tstr}"
321         return txt
322
323     def get_absolute_url(self):
324         return reverse("catalogue_book", args=[self.slug])
325
326     def is_text_public(self):
327         return self.free_license or (self.pd_year is not None and self.pd_year <= date.today().year)
328
329     def audio_status(self):
330         return {}
331     
332     @property
333     def wluri(self):
334         return f'https://wolnelektury.pl/katalog/lektura/{self.slug}/'
335     
336     def authors_str(self):
337         if not self.pk:
338             return ''
339         return ", ".join(str(author) for author in self.authors.all())
340     authors_str.admin_order_field = 'authors__last_name'
341     authors_str.short_description = _('Author')
342
343     def translators_str(self):
344         if not self.pk:
345             return ''
346         return ", ".join(str(author) for author in self.translators.all())
347     translators_str.admin_order_field = 'translators__last_name'
348     translators_str.short_description = _('Translator')
349
350     def authors_first_names(self):
351         return ', '.join(a.first_name for a in self.authors.all())
352
353     def authors_last_names(self):
354         return ', '.join(a.last_name for a in self.authors.all())
355
356     def translators_first_names(self):
357         return ', '.join(a.first_name for a in self.translators.all())
358
359     def translators_last_names(self):
360         return ', '.join(a.last_name for a in self.translators.all())
361
362     def document_book__project(self):
363         b = self.document_books.first()
364         if b is None: return ''
365         if b.project is None: return ''
366         return b.project.name
367
368     def audience(self):
369         try:
370             return self.document_books.first().wldocument().book_info.audience or ''
371         except:
372             return ''
373
374     def get_estimated_costs(self):
375         return {
376             work_type: work_type.calculate(self)
377             for work_type in WorkType.objects.all()
378         }
379
380     def scans_gallery(self):
381         bs = self.booksource_set.first()
382         if bs is None:
383             return ''
384         return bs.pk
385
386     def is_published(self):
387         return any(b.is_published() for b in self.document_books.all())
388     
389     def update_monthly_stats(self):
390         # Find publication date.
391         # By default, get previous 12 months.
392         this_month = date.today().replace(day=1)
393         cutoff = this_month.replace(year=this_month.year - 1)
394         months = 12
395
396         # If the book was published later,
397         # find out the denominator.
398         pbr = apps.get_model('documents', 'BookPublishRecord').objects.filter(
399             book__catalogue_book=self).order_by('timestamp').first()
400         if pbr is not None and pbr.timestamp.date() > cutoff:
401             months = (this_month - pbr.timestamp.date()).days / 365 * 12
402
403         if not months:
404             return
405
406         stats = self.bookmonthlystats_set.filter(date__gte=cutoff).aggregate(
407             views_page=models.Sum('views_page'),
408             views_reader=models.Sum('views_reader')
409         )
410         self.monthly_views_page = stats['views_page'] / months
411         self.monthly_views_reader = stats['views_reader'] / months
412         self.save(update_fields=['monthly_views_page', 'monthly_views_reader'])
413
414     @property
415     def content_stats(self):
416         if hasattr(self, '_content_stats'):
417             return self._content_stats
418         try:
419             stats = self.document_books.first().wldocument(librarian2=True).get_statistics()['total']
420         except Exception as e:
421             stats = {}
422         self._content_stats = stats
423         return stats
424
425     chars = lambda self: self.content_stats.get('chars', '')
426     chars_with_fn = lambda self: self.content_stats.get('chars_with_fn', '')
427     words = lambda self: self.content_stats.get('words', '')
428     words_with_fn = lambda self: self.content_stats.get('words_with_fn', '')
429     verses = lambda self: self.content_stats.get('verses', '')
430     verses_with_fn = lambda self: self.content_stats.get('verses_with_fn', '')
431     chars_out_verse = lambda self: self.content_stats.get('chars_out_verse', '')
432     chars_out_verse_with_fn = lambda self: self.content_stats.get('chars_out_verse_with_fn', '')
433
434 class CollectionCategory(models.Model):
435     name = models.CharField(_("name"), max_length=255)
436     parent = models.ForeignKey('self', models.SET_NULL, related_name='children', null=True, blank=True, verbose_name=_("parent"))
437     notes = models.TextField(_("notes"), blank=True, help_text=_('private'))
438
439     class Meta:
440         ordering = ('parent__name', 'name')
441         verbose_name = _('collection category')
442         verbose_name_plural = _('collection categories')
443
444     def __str__(self):
445         if self.parent:
446             return f"{self.parent} / {self.name}"
447         else:
448             return self.name
449
450
451 class Collection(models.Model):
452     name = models.CharField(_("name"), max_length=255)
453     slug = models.SlugField(max_length=255, unique=True)
454     category = models.ForeignKey(CollectionCategory, models.SET_NULL, null=True, blank=True, verbose_name=_("category"))
455     notes = models.TextField(_("notes"), blank=True, help_text=_('private'))
456     description = models.TextField(_("description"), blank=True)
457
458     class Meta:
459         ordering = ('category', 'name')
460         verbose_name = _('collection')
461         verbose_name_plural = _('collections')
462
463     def __str__(self):
464         if self.category:
465             return f"{self.category} / {self.name}"
466         else:
467             return self.name
468
469     def get_estimated_costs(self):
470         costs = Counter()
471         for book in self.book_set.all():
472             for k, v in book.get_estimated_costs().items():
473                 costs[k] += v or 0
474
475         for author in self.author_set.all():
476             for book in author.book_set.all():
477                 for k, v in book.get_estimated_costs().items():
478                     costs[k] += v or 0
479             for book in author.translated_book_set.all():
480                 for k, v in book.get_estimated_costs().items():
481                     costs[k] += v or 0
482         return costs
483
484
485 class WorkType(models.Model):
486     name = models.CharField(_("name"), max_length=255)
487
488     class Meta:
489         ordering = ('name',)
490         verbose_name = _('work type')
491         verbose_name_plural = _('work types')
492     
493     def get_rate_for(self, book):
494         for workrate in self.workrate_set.all():
495             if workrate.matches(book):
496                 return workrate
497
498     def calculate(self, book):
499         workrate = self.get_rate_for(book)
500         if workrate is not None:
501             return workrate.calculate(book)
502         
503
504
505 class WorkRate(models.Model):
506     priority = models.IntegerField(_("priority"), default=1)
507     per_normpage = models.DecimalField(_("per normalized page"), decimal_places=2, max_digits=6, null=True, blank=True)
508     per_verse = models.DecimalField(_("per verse"), decimal_places=2, max_digits=6, null=True, blank=True)
509     work_type = models.ForeignKey(WorkType, models.CASCADE, verbose_name=_("work type"))
510     epochs = models.ManyToManyField(Epoch, blank=True, verbose_name=_("epochs"))
511     kinds = models.ManyToManyField(Kind, blank=True, verbose_name=_("kinds"))
512     genres = models.ManyToManyField(Genre, blank=True, verbose_name=_("genres"))
513     collections = models.ManyToManyField(Collection, blank=True, verbose_name=_("collections"))
514
515     class Meta:
516         ordering = ('priority',)
517         verbose_name = _('work rate')
518         verbose_name_plural = _('work rates')
519
520     def matches(self, book):
521         for category in 'epochs', 'kinds', 'genres', 'collections':
522             oneof = getattr(self, category).all()
523             if oneof:
524                 if not set(oneof).intersection(
525                         getattr(book, category).all()):
526                     return False
527         return True
528
529     def calculate(self, book):
530         if self.per_verse:
531             if book.estimated_verses:
532                 return book.estimated_verses * self.per_verse
533         elif self.per_normpage:
534             if book.estimated_chars:
535                 return (decimal.Decimal(book.estimated_chars) / 1800 * self.per_normpage).quantize(decimal.Decimal('1.00'), rounding=decimal.ROUND_HALF_UP)
536
537
538 class Place(WikidataModel):
539     name = models.CharField(_('name'), max_length=255, blank=True)
540     locative = models.CharField(_('locative'), max_length=255, blank=True, help_text=_('in…'))
541
542     class Meta:
543         verbose_name = _('place')
544         verbose_name_plural = _('places')
545     
546     class Wikidata:
547         name = 'label'
548
549     def __str__(self):
550         return self.name
551
552
553 class BookMonthlyStats(models.Model):
554     book = models.ForeignKey('catalogue.Book', models.CASCADE)
555     date = models.DateField()
556     views_reader = models.IntegerField(default=0)
557     views_page = models.IntegerField(default=0)
558
559     @classmethod
560     def build_for_month(cls, date):
561         date = date.replace(day=1)
562         period = 'month'
563
564         date = date.isoformat()
565         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'
566         data = urlopen(url).read().decode('utf-16')
567         lines = data.split('\n')[1:]
568         for line in lines:
569             m = re.match('^/katalog/lektura/([^,./]+)\.html,', line)
570             if m is not None:
571                 which = 'views_reader'
572             else:
573                 m = re.match('^/katalog/lektura/([^,./]+)/,', line)
574                 if m is not None:
575                     which = 'views_page'
576             if m is not None:
577                 slug = m.group(1)
578                 _url, _uviews, views, _rest = line.split(',', 3)
579                 views = int(views)
580                 try:
581                     book = Book.objects.get(slug=slug)
582                 except Book.DoesNotExist:
583                     continue
584                 else:
585                     cls.objects.update_or_create(
586                         book=book, date=date,
587                         defaults={which: views}
588                     )
589                     book.update_monthly_stats()
590
591
592 class Thema(models.Model):
593     code = models.CharField(max_length=128, unique=True)
594     name = models.CharField(max_length=1024)
595     slug = models.SlugField(
596         max_length=255, null=True, blank=True, unique=True,
597         help_text='Element adresu na WL, w postaci: /tag/slug/. Można zmieniać.'
598     )
599     plural = models.CharField(
600         'liczba mnoga', max_length=255, blank=True,
601     )
602     description = models.TextField(blank=True)
603     public_description = models.TextField(blank=True)
604     usable = models.BooleanField()
605     usable_as_main = models.BooleanField(default=False)
606     hidden = models.BooleanField(default=False)
607     woblink_category = models.IntegerField(null=True, blank=True)
608
609     class Meta:
610         ordering = ('code',)
611         verbose_name_plural = 'Thema'
612
613
614 class Audience(models.Model):
615     code = models.CharField(
616         max_length=128, unique=True,
617         help_text='Techniczny identifyikator. W miarę możliwości nie należy zmieniać.'
618     )
619     name = models.CharField(
620         max_length=1024,
621         help_text='W formie: „dla … (kogo?)”'
622     )
623     slug = models.SlugField(
624         max_length=255, null=True, blank=True, unique=True,
625         help_text='Element adresu na WL, w postaci: /dla/slug/. Można zmieniać.'
626     )
627     description = models.TextField(blank=True)
628     thema = models.CharField(
629         max_length=32, blank=True,
630         help_text='Odpowiadający kwalifikator Thema.'
631     )
632     woblink = models.IntegerField(null=True, blank=True)
633
634     class Meta:
635         ordering = ('code',)