1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
6 from django.conf import settings
7 from django.core.cache import get_cache
8 from django.db import models
9 from django.db.models import permalink
10 import django.dispatch
11 from django.utils.datastructures import SortedDict
12 from django.utils.translation import ugettext_lazy as _
14 from catalogue.models import Tag, Fragment, BookMedia
15 from catalogue.utils import create_zip, split_tags, truncate_html_words, book_upload_path
16 from catalogue import tasks
17 from newtagging import managers
20 permanent_cache = get_cache('permanent')
23 class Book(models.Model):
24 """Represents a book imported from WL-XML."""
25 title = models.CharField(_('title'), max_length=120)
26 sort_key = models.CharField(_('sort key'), max_length=120, db_index=True, editable=False)
27 slug = models.SlugField(_('slug'), max_length=120, db_index=True,
29 common_slug = models.SlugField(_('slug'), max_length=120, db_index=True)
30 language = models.CharField(_('language code'), max_length=3, db_index=True,
31 default=settings.CATALOGUE_DEFAULT_LANGUAGE)
32 description = models.TextField(_('description'), blank=True)
33 created_at = models.DateTimeField(_('creation date'), auto_now_add=True, db_index=True)
34 changed_at = models.DateTimeField(_('creation date'), auto_now=True, db_index=True)
35 parent_number = models.IntegerField(_('parent number'), default=0)
36 extra_info = jsonfield.JSONField(_('extra information'), default='{}')
37 gazeta_link = models.CharField(blank=True, max_length=240)
38 wiki_link = models.CharField(blank=True, max_length=240)
39 # files generated during publication
41 cover = models.FileField(_('cover'), upload_to=book_upload_path('png'),
42 null=True, blank=True)
43 ebook_formats = ['pdf', 'epub', 'mobi', 'fb2', 'txt']
44 formats = ebook_formats + ['html', 'xml']
46 parent = models.ForeignKey('self', blank=True, null=True, related_name='children')
48 _related_info = jsonfield.JSONField(blank=True, null=True, editable=False)
50 objects = models.Manager()
51 tagged = managers.ModelTaggedItemManager(Tag)
52 tags = managers.TagDescriptor(Tag)
54 html_built = django.dispatch.Signal()
55 published = django.dispatch.Signal()
57 class AlreadyExists(Exception):
61 ordering = ('sort_key',)
62 verbose_name = _('book')
63 verbose_name_plural = _('books')
64 app_label = 'catalogue'
66 def __unicode__(self):
69 def save(self, force_insert=False, force_update=False, reset_short_html=True, **kwargs):
70 from sortify import sortify
72 self.sort_key = sortify(self.title)
74 ret = super(Book, self).save(force_insert, force_update)
77 self.reset_short_html()
82 def get_absolute_url(self):
83 return ('catalogue.views.book_detail', [self.slug])
89 def book_tag_slug(self):
90 return ('l-' + self.slug)[:120]
93 slug = self.book_tag_slug()
94 book_tag, created = Tag.objects.get_or_create(slug=slug, category='book')
96 book_tag.name = self.title[:50]
97 book_tag.sort_key = self.title.lower()
101 def has_media(self, type_):
102 if type_ in Book.formats:
103 return bool(getattr(self, "%s_file" % type_))
105 return self.media.filter(type=type_).exists()
107 def get_media(self, type_):
108 if self.has_media(type_):
109 if type_ in Book.formats:
110 return getattr(self, "%s_file" % type_)
112 return self.media.filter(type=type_)
117 return self.get_media("mp3")
119 return self.get_media("odt")
121 return self.get_media("ogg")
123 return self.get_media("daisy")
125 def reset_short_html(self):
129 type(self).objects.filter(pk=self.pk).update(_related_info=None)
130 # Fragment.short_html relies on book's tags, so reset it here too
131 for fragm in self.fragments.all().iterator():
132 fragm.reset_short_html()
134 def has_description(self):
135 return len(self.description) > 0
136 has_description.short_description = _('description')
137 has_description.boolean = True
140 def has_mp3_file(self):
141 return bool(self.has_media("mp3"))
142 has_mp3_file.short_description = 'MP3'
143 has_mp3_file.boolean = True
145 def has_ogg_file(self):
146 return bool(self.has_media("ogg"))
147 has_ogg_file.short_description = 'OGG'
148 has_ogg_file.boolean = True
150 def has_daisy_file(self):
151 return bool(self.has_media("daisy"))
152 has_daisy_file.short_description = 'DAISY'
153 has_daisy_file.boolean = True
155 def wldocument(self, parse_dublincore=True):
156 from catalogue.import_utils import ORMDocProvider
157 from librarian.parser import WLDocument
159 return WLDocument.from_file(self.xml_file.path,
160 provider=ORMDocProvider(self),
161 parse_dublincore=parse_dublincore)
163 def build_cover(self, book_info=None):
164 """(Re)builds the cover image."""
165 from StringIO import StringIO
166 from django.core.files.base import ContentFile
167 from librarian.cover import WLCover
169 if book_info is None:
170 book_info = self.wldocument().book_info
172 cover = WLCover(book_info).image()
174 cover.save(imgstr, 'png')
175 self.cover.save(None, ContentFile(imgstr.getvalue()))
177 def build_html(self):
178 from django.core.files.base import ContentFile
179 from slughifi import slughifi
180 from sortify import sortify
181 from librarian import html
183 meta_tags = list(self.tags.filter(
184 category__in=('author', 'epoch', 'genre', 'kind')))
185 book_tag = self.book_tag()
187 html_output = self.wldocument(parse_dublincore=False).as_html()
189 self.html_file.save('%s.html' % self.slug,
190 ContentFile(html_output.get_string()))
192 # get ancestor l-tags for adding to new fragments
196 ancestor_tags.append(p.book_tag())
199 # Delete old fragments and create them from scratch
200 self.fragments.all().delete()
202 closed_fragments, open_fragments = html.extract_fragments(self.html_file.path)
203 for fragment in closed_fragments.values():
205 theme_names = [s.strip() for s in fragment.themes.split(',')]
206 except AttributeError:
209 for theme_name in theme_names:
212 tag, created = Tag.objects.get_or_create(slug=slughifi(theme_name), category='theme')
214 tag.name = theme_name
215 tag.sort_key = sortify(theme_name.lower())
221 text = fragment.to_string()
222 short_text = truncate_html_words(text, 15)
223 if text == short_text:
225 new_fragment = Fragment.objects.create(anchor=fragment.id, book=self,
226 text=text, short_text=short_text)
229 new_fragment.tags = set(meta_tags + themes + [book_tag] + ancestor_tags)
231 self.html_built.send(sender=self)
235 # Thin wrappers for builder tasks
236 def build_pdf(self, *args, **kwargs):
237 """(Re)builds PDF."""
238 return tasks.build_pdf.delay(self.pk, *args, **kwargs)
239 def build_epub(self, *args, **kwargs):
240 """(Re)builds EPUB."""
241 return tasks.build_epub.delay(self.pk, *args, **kwargs)
242 def build_mobi(self, *args, **kwargs):
243 """(Re)builds MOBI."""
244 return tasks.build_mobi.delay(self.pk, *args, **kwargs)
245 def build_fb2(self, *args, **kwargs):
247 return tasks.build_fb2.delay(self.pk, *args, **kwargs)
248 def build_txt(self, *args, **kwargs):
249 """(Re)builds TXT."""
250 return tasks.build_txt.delay(self.pk, *args, **kwargs)
253 def zip_format(format_):
254 def pretty_file_name(book):
255 return "%s/%s.%s" % (
256 b.extra_info['author'],
260 field_name = "%s_file" % format_
261 books = Book.objects.filter(parent=None).exclude(**{field_name: ""})
262 paths = [(pretty_file_name(b), getattr(b, field_name).path)
263 for b in books.iterator()]
264 return create_zip(paths,
265 getattr(settings, "ALL_%s_ZIP" % format_.upper()))
267 def zip_audiobooks(self, format_):
268 bm = BookMedia.objects.filter(book=self, type=format_)
269 paths = map(lambda bm: (None, bm.file.path), bm)
270 return create_zip(paths, "%s_%s" % (self.slug, format_))
272 def search_index(self, book_info=None, reuse_index=False, index_tags=True):
275 idx = search.ReusableIndex()
281 idx.index_book(self, book_info)
288 def from_xml_file(cls, xml_file, **kwargs):
289 from django.core.files import File
290 from librarian import dcparser
292 # use librarian to parse meta-data
293 book_info = dcparser.parse(xml_file)
295 if not isinstance(xml_file, File):
296 xml_file = File(open(xml_file))
299 return cls.from_text_and_meta(xml_file, book_info, **kwargs)
304 def from_text_and_meta(cls, raw_file, book_info, overwrite=False,
305 build_epub=True, build_txt=True, build_pdf=True, build_mobi=True, build_fb2=True,
306 search_index=True, search_index_tags=True, search_index_reuse=False):
308 # check for parts before we do anything
310 if hasattr(book_info, 'parts'):
311 for part_url in book_info.parts:
313 children.append(Book.objects.get(slug=part_url.slug))
314 except Book.DoesNotExist:
315 raise Book.DoesNotExist(_('Book "%s" does not exist.') %
320 book_slug = book_info.url.slug
321 if re.search(r'[^a-z0-9-]', book_slug):
322 raise ValueError('Invalid characters in slug')
323 book, created = Book.objects.get_or_create(slug=book_slug)
329 raise Book.AlreadyExists(_('Book %s already exists') % (
331 # Save shelves for this book
332 book_shelves = list(book.tags.filter(category='set'))
334 book.language = book_info.language
335 book.title = book_info.title
336 if book_info.variant_of:
337 book.common_slug = book_info.variant_of.slug
339 book.common_slug = book.slug
340 book.extra_info = book_info.to_dict()
343 meta_tags = Tag.tags_from_info(book_info)
345 book.tags = set(meta_tags + book_shelves)
347 obsolete_children = set(b for b in book.children.all() if b not in children)
348 for n, child_book in enumerate(children):
349 child_book.parent = book
350 child_book.parent_number = n
352 # Disown unfaithful children and let them cope on their own.
353 for child in obsolete_children:
355 child.parent_number = 0
357 tasks.fix_tree_tags.delay(child)
359 # Save XML and HTML files
360 book.xml_file.save('%s.xml' % book.slug, raw_file, save=False)
361 book.build_cover(book_info)
363 # delete old fragments when overwriting
364 book.fragments.all().delete()
366 if book.build_html():
367 # No direct saves behind this point.
368 if not settings.NO_BUILD_TXT and build_txt:
371 if not settings.NO_BUILD_EPUB and build_epub:
374 if not settings.NO_BUILD_PDF and build_pdf:
377 if not settings.NO_BUILD_MOBI and build_mobi:
380 if not settings.NO_BUILD_FB2 and build_fb2:
383 if not settings.NO_SEARCH_INDEX and search_index:
384 book.search_index(index_tags=search_index_tags, reuse_index=search_index_reuse)
385 #index_book.delay(book.id, book_info)
387 tasks.fix_tree_tags.delay(book)
388 cls.published.send(sender=book)
391 def fix_tree_tags(self):
392 """Fixes the l-tags on the book's subtree.
395 * the book has its parents book-tags,
396 * its fragments have the book's and its parents book-tags,
397 * runs those for every child book too,
398 * touches all relevant tags,
399 * resets tag and theme counter on the book and its ancestry.
401 def fix_subtree(book, parent_tags):
402 affected_tags = set(book.tags)
403 book.tags = list(book.tags.exclude(category='book')) + parent_tags
404 sub_parent_tags = parent_tags + [book.book_tag()]
405 for frag in book.fragments.all():
406 affected_tags.update(frag.tags)
407 frag.tags = list(frag.tags.exclude(category='book')) + sub_parent_tags
408 for child in book.children.all():
409 affected_tags.update(fix_subtree(child, sub_parent_tags))
414 while parent is not None:
415 parent_tags.append(parent.book_tag())
416 parent = parent.parent
418 affected_tags = fix_subtree(self, parent_tags)
419 for tag in affected_tags:
423 while book is not None:
424 book.reset_tag_counter()
425 book.reset_theme_counter()
428 def related_info(self):
429 """Keeps info about related objects (tags, media) in cache field."""
430 if self._related_info is not None:
431 return self._related_info
433 rel = {'tags': {}, 'media': {}}
435 tags = self.tags.filter(category__in=(
436 'author', 'kind', 'genre', 'epoch'))
437 tags = split_tags(tags)
438 for category in tags:
439 rel['tags'][category] = [
440 (t.name, t.slug) for t in tags[category]]
442 for media_format in BookMedia.formats:
443 rel['media'][media_format] = self.has_media(media_format)
448 parents.append((book.parent.title, book.parent.slug))
450 parents = parents[::-1]
452 rel['parents'] = parents
455 type(self).objects.filter(pk=self.pk).update(_related_info=rel)
458 def related_themes(self):
459 theme_counter = self.theme_counter
460 book_themes = list(Tag.objects.filter(pk__in=theme_counter.keys()))
461 for tag in book_themes:
462 tag.count = theme_counter[tag.pk]
465 def reset_tag_counter(self):
469 cache_key = "Book.tag_counter/%d" % self.id
470 permanent_cache.delete(cache_key)
472 self.parent.reset_tag_counter()
475 def tag_counter(self):
477 cache_key = "Book.tag_counter/%d" % self.id
478 tags = permanent_cache.get(cache_key)
484 for child in self.children.all().order_by().iterator():
485 for tag_pk, value in child.tag_counter.iteritems():
486 tags[tag_pk] = tags.get(tag_pk, 0) + value
487 for tag in self.tags.exclude(category__in=('book', 'theme', 'set')).order_by().iterator():
491 permanent_cache.set(cache_key, tags)
494 def reset_theme_counter(self):
498 cache_key = "Book.theme_counter/%d" % self.id
499 permanent_cache.delete(cache_key)
501 self.parent.reset_theme_counter()
504 def theme_counter(self):
506 cache_key = "Book.theme_counter/%d" % self.id
507 tags = permanent_cache.get(cache_key)
513 for fragment in Fragment.tagged.with_any([self.book_tag()]).order_by().iterator():
514 for tag in fragment.tags.filter(category='theme').order_by().iterator():
515 tags[tag.pk] = tags.get(tag.pk, 0) + 1
518 permanent_cache.set(cache_key, tags)
521 def pretty_title(self, html_links=False):
523 names = list(book.tags.filter(category='author'))
529 names.extend(reversed(books))
532 names = ['<a href="%s">%s</a>' % (tag.get_absolute_url(), tag.name) for tag in names]
534 names = [tag.name for tag in names]
536 return ', '.join(names)
539 def tagged_top_level(cls, tags):
540 """ Returns top-level books tagged with `tags`.
542 It only returns those books which don't have ancestors which are
543 also tagged with those tags.
546 # get relevant books and their tags
547 objects = cls.tagged.with_all(tags)
548 # eliminate descendants
549 l_tags = Tag.objects.filter(category='book',
550 slug__in=[book.book_tag_slug() for book in objects.iterator()])
551 descendants_keys = [book.pk for book in cls.tagged.with_any(l_tags).iterator()]
553 objects = objects.exclude(pk__in=descendants_keys)
558 def book_list(cls, filter=None):
559 """Generates a hierarchical listing of all books.
561 Books are optionally filtered with a test function.
566 books = cls.objects.all().order_by('parent_number', 'sort_key').only(
567 'title', 'parent', 'slug')
569 books = books.filter(filter).distinct()
571 book_ids = set(b['pk'] for b in books.values("pk").iterator())
572 for book in books.iterator():
573 parent = book.parent_id
574 if parent not in book_ids:
576 books_by_parent.setdefault(parent, []).append(book)
578 for book in books.iterator():
579 books_by_parent.setdefault(book.parent_id, []).append(book)
582 books_by_author = SortedDict()
583 for tag in Tag.objects.filter(category='author').iterator():
584 books_by_author[tag] = []
586 for book in books_by_parent.get(None,()):
587 authors = list(book.tags.filter(category='author'))
589 for author in authors:
590 books_by_author[author].append(book)
594 return books_by_author, orphans, books_by_parent
597 "SP1": (1, u"szkoła podstawowa"),
598 "SP2": (1, u"szkoła podstawowa"),
599 "P": (1, u"szkoła podstawowa"),
600 "G": (2, u"gimnazjum"),
602 "LP": (3, u"liceum"),
604 def audiences_pl(self):
605 audiences = self.extra_info.get('audiences', [])
606 audiences = sorted(set([self._audiences_pl[a] for a in audiences]))
607 return [a[1] for a in audiences]
609 def choose_fragment(self):
610 tag = self.book_tag()
611 fragments = Fragment.tagged.with_any([tag])
612 if fragments.exists():
613 return fragments.order_by('?')[0]
615 return self.parent.choose_fragment()
620 def _has_factory(ftype):
621 has = lambda self: bool(getattr(self, "%s_file" % ftype))
622 has.short_description = ftype.upper()
625 has.__name__ = "has_%s_file" % ftype
629 # add the file fields
630 for t in Book.formats:
631 field_name = "%s_file" % t
632 models.FileField(_("%s file" % t.upper()),
633 upload_to=book_upload_path(t),
634 blank=True).contribute_to_class(Book, field_name)
636 setattr(Book, "has_%s_file" % t, _has_factory(t))