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.
5 from datetime import datetime
7 from django.db import models
8 from django.db.models import permalink, Q
10 from django.core.cache import cache
11 from django.utils.translation import ugettext_lazy as _
12 from django.contrib.auth.models import User
13 from django.core.files import File
14 from django.template.loader import render_to_string
15 from django.utils.datastructures import SortedDict
16 from django.utils.safestring import mark_safe
17 from django.utils.translation import get_language
18 from django.core.urlresolvers import reverse
19 from django.db.models.signals import post_save, m2m_changed, pre_delete
21 from django.conf import settings
23 from newtagging.models import TagBase, tags_updated
24 from newtagging import managers
25 from catalogue.fields import JSONField, OverwritingFileField
26 from catalogue.utils import ExistingFile, ORMDocProvider, create_zip, remove_zip
28 from librarian import dcparser, html, epub, NoDublinCore
30 from mutagen import id3
31 from slughifi import slughifi
32 from sortify import sortify
36 ('author', _('author')),
37 ('epoch', _('epoch')),
39 ('genre', _('genre')),
40 ('theme', _('theme')),
46 ('odt', _('ODT file')),
47 ('mp3', _('MP3 file')),
48 ('ogg', _('OGG file')),
49 ('daisy', _('DAISY file')),
52 # not quite, but Django wants you to set a timeout
53 CACHE_FOREVER = 2419200 # 28 days
56 class TagSubcategoryManager(models.Manager):
57 def __init__(self, subcategory):
58 super(TagSubcategoryManager, self).__init__()
59 self.subcategory = subcategory
61 def get_query_set(self):
62 return super(TagSubcategoryManager, self).get_query_set().filter(category=self.subcategory)
66 name = models.CharField(_('name'), max_length=50, db_index=True)
67 slug = models.SlugField(_('slug'), max_length=120, db_index=True)
68 sort_key = models.CharField(_('sort key'), max_length=120, db_index=True)
69 category = models.CharField(_('category'), max_length=50, blank=False, null=False,
70 db_index=True, choices=TAG_CATEGORIES)
71 description = models.TextField(_('description'), blank=True)
72 main_page = models.BooleanField(_('main page'), default=False, db_index=True, help_text=_('Show tag on main page'))
74 user = models.ForeignKey(User, blank=True, null=True)
75 book_count = models.IntegerField(_('book count'), blank=True, null=True)
76 gazeta_link = models.CharField(blank=True, max_length=240)
77 wiki_link = models.CharField(blank=True, max_length=240)
79 created_at = models.DateTimeField(_('creation date'), auto_now_add=True, db_index=True)
80 changed_at = models.DateTimeField(_('creation date'), auto_now=True, db_index=True)
82 class UrlDeprecationWarning(DeprecationWarning):
93 categories_dict = dict((item[::-1] for item in categories_rev.iteritems()))
96 ordering = ('sort_key',)
97 verbose_name = _('tag')
98 verbose_name_plural = _('tags')
99 unique_together = (("slug", "category"),)
101 def __unicode__(self):
105 return "Tag(slug=%r)" % self.slug
108 def get_absolute_url(self):
109 return ('catalogue.views.tagged_object_list', [self.url_chunk])
111 def has_description(self):
112 return len(self.description) > 0
113 has_description.short_description = _('description')
114 has_description.boolean = True
117 """ returns global book count for book tags, fragment count for themes """
119 if self.book_count is None:
120 if self.category == 'book':
122 objects = Book.objects.none()
123 elif self.category == 'theme':
124 objects = Fragment.tagged.with_all((self,))
126 objects = Book.tagged.with_all((self,)).order_by()
127 if self.category != 'set':
128 # eliminate descendants
129 l_tags = Tag.objects.filter(slug__in=[book.book_tag_slug() for book in objects])
130 descendants_keys = [book.pk for book in Book.tagged.with_any(l_tags)]
132 objects = objects.exclude(pk__in=descendants_keys)
133 self.book_count = objects.count()
135 return self.book_count
138 def get_tag_list(tags):
139 if isinstance(tags, basestring):
144 tags_splitted = tags.split('/')
145 for name in tags_splitted:
147 real_tags.append(Tag.objects.get(slug=name, category=category))
149 elif name in Tag.categories_rev:
150 category = Tag.categories_rev[name]
153 real_tags.append(Tag.objects.exclude(category='book').get(slug=name))
155 except Tag.MultipleObjectsReturned, e:
156 ambiguous_slugs.append(name)
159 # something strange left off
160 raise Tag.DoesNotExist()
162 # some tags should be qualified
163 e = Tag.MultipleObjectsReturned()
165 e.ambiguous_slugs = ambiguous_slugs
168 e = Tag.UrlDeprecationWarning()
173 return TagBase.get_tag_list(tags)
177 return '/'.join((Tag.categories_dict[self.category], self.slug))
180 # TODO: why is this hard-coded ?
181 def book_upload_path(ext=None, maxlen=100):
182 def get_dynamic_path(media, filename, ext=ext):
183 # how to put related book's slug here?
185 if media.type == 'daisy':
190 name = slughifi(filename.split(".")[0])
192 name = slughifi(media.name)
193 return 'book/%s/%s.%s' % (ext, name[:maxlen-len('book/%s/.%s' % (ext, ext))-4], ext)
194 return get_dynamic_path
197 class BookMedia(models.Model):
198 type = models.CharField(_('type'), choices=MEDIA_FORMATS, max_length="100")
199 name = models.CharField(_('name'), max_length="100")
200 file = OverwritingFileField(_('file'), upload_to=book_upload_path())
201 uploaded_at = models.DateTimeField(_('creation date'), auto_now_add=True, editable=False)
202 extra_info = JSONField(_('extra information'), default='{}', editable=False)
203 book = models.ForeignKey('Book', related_name='media')
204 source_sha1 = models.CharField(null=True, blank=True, max_length=40, editable=False)
206 def __unicode__(self):
207 return "%s (%s)" % (self.name, self.file.name.split("/")[-1])
210 ordering = ('type', 'name')
211 verbose_name = _('book media')
212 verbose_name_plural = _('book media')
214 def save(self, *args, **kwargs):
216 old = BookMedia.objects.get(pk=self.pk)
217 except BookMedia.DoesNotExist, e:
220 # if name changed, change the file name, too
221 if slughifi(self.name) != slughifi(old.name):
222 self.file.save(None, ExistingFile(self.file.path), save=False, leave=True)
224 super(BookMedia, self).save(*args, **kwargs)
226 # remove the zip package for book with modified media
227 remove_zip(self.book.slug)
229 extra_info = self.get_extra_info_value()
230 extra_info.update(self.read_meta())
231 self.set_extra_info_value(extra_info)
232 self.source_sha1 = self.read_source_sha1(self.file.path, self.type)
233 return super(BookMedia, self).save(*args, **kwargs)
237 Reads some metadata from the audiobook.
240 artist_name = director_name = project = funded_by = ''
241 if self.type == 'mp3':
243 audio = id3.ID3(self.file.path)
244 artist_name = ', '.join(', '.join(tag.text) for tag in audio.getall('TPE1'))
245 director_name = ', '.join(', '.join(tag.text) for tag in audio.getall('TPE3'))
246 project = ", ".join([t.data for t in audio.getall('PRIV')
247 if t.owner=='wolnelektury.pl?project'])
248 funded_by = ", ".join([t.data for t in audio.getall('PRIV')
249 if t.owner=='wolnelektury.pl?funded_by'])
252 elif self.type == 'ogg':
254 audio = mutagen.File(self.file.path)
255 artist_name = ', '.join(audio.get('artist', []))
256 director_name = ', '.join(audio.get('conductor', []))
257 project = ", ".join(audio.get('project', []))
258 funded_by = ", ".join(audio.get('funded_by', []))
263 return {'artist_name': artist_name, 'director_name': director_name,
264 'project': project, 'funded_by': funded_by}
267 def read_source_sha1(filepath, filetype):
269 Reads source file SHA1 from audiobok metadata.
272 if filetype == 'mp3':
274 audio = id3.ID3(filepath)
275 return [t.data for t in audio.getall('PRIV')
276 if t.owner=='wolnelektury.pl?flac_sha1'][0]
279 elif filetype == 'ogg':
281 audio = mutagen.File(filepath)
282 return audio.get('flac_sha1', [None])[0]
289 class Book(models.Model):
290 title = models.CharField(_('title'), max_length=120)
291 sort_key = models.CharField(_('sort key'), max_length=120, db_index=True, editable=False)
292 slug = models.SlugField(_('slug'), max_length=120, unique=True, db_index=True)
293 description = models.TextField(_('description'), blank=True)
294 created_at = models.DateTimeField(_('creation date'), auto_now_add=True, db_index=True)
295 changed_at = models.DateTimeField(_('creation date'), auto_now=True, db_index=True)
296 parent_number = models.IntegerField(_('parent number'), default=0)
297 extra_info = JSONField(_('extra information'), default='{}')
298 gazeta_link = models.CharField(blank=True, max_length=240)
299 wiki_link = models.CharField(blank=True, max_length=240)
300 # files generated during publication
302 file_types = ['epub', 'html', 'mobi', 'pdf', 'txt', 'xml']
304 parent = models.ForeignKey('self', blank=True, null=True, related_name='children')
305 objects = models.Manager()
306 tagged = managers.ModelTaggedItemManager(Tag)
307 tags = managers.TagDescriptor(Tag)
309 html_built = django.dispatch.Signal()
310 published = django.dispatch.Signal()
312 class AlreadyExists(Exception):
316 ordering = ('sort_key',)
317 verbose_name = _('book')
318 verbose_name_plural = _('books')
320 def __unicode__(self):
323 def save(self, force_insert=False, force_update=False, reset_short_html=True, **kwargs):
324 self.sort_key = sortify(self.title)
326 ret = super(Book, self).save(force_insert, force_update)
329 self.reset_short_html()
334 def get_absolute_url(self):
335 return ('catalogue.views.book_detail', [self.slug])
341 def book_tag_slug(self):
342 return ('l-' + self.slug)[:120]
345 slug = self.book_tag_slug()
346 book_tag, created = Tag.objects.get_or_create(slug=slug, category='book')
348 book_tag.name = self.title[:50]
349 book_tag.sort_key = self.title.lower()
353 def has_media(self, type):
354 if type in Book.file_types:
355 return bool(getattr(self, "%s_file" % type))
357 return self.media.filter(type=type).exists()
359 def get_media(self, type):
360 if self.has_media(type):
361 if type in Book.file_types:
362 return getattr(self, "%s_file" % type)
364 return self.media.filter(type=type)
369 return self.get_media("mp3")
371 return self.get_media("odt")
373 return self.get_media("ogg")
375 return self.get_media("daisy")
377 def reset_short_html(self):
381 cache_key = "Book.short_html/%d/%s"
382 for lang, langname in settings.LANGUAGES:
383 cache.delete(cache_key % (self.id, lang))
384 # Fragment.short_html relies on book's tags, so reset it here too
385 for fragm in self.fragments.all():
386 fragm.reset_short_html()
388 def short_html(self):
390 cache_key = "Book.short_html/%d/%s" % (self.id, get_language())
391 short_html = cache.get(cache_key)
395 if short_html is not None:
396 return mark_safe(short_html)
398 tags = self.tags.filter(~Q(category__in=('set', 'theme', 'book')))
399 tags = [mark_safe(u'<a href="%s">%s</a>' % (tag.get_absolute_url(), tag.name)) for tag in tags]
402 # files generated during publication
403 if self.has_media("html"):
404 formats.append(u'<a href="%s">%s</a>' % (reverse('book_text', kwargs={'slug': self.slug}), _('Read online')))
405 if self.has_media("pdf"):
406 formats.append(u'<a href="%s">PDF</a>' % self.get_media('pdf').url)
407 if self.has_media("mobi"):
408 formats.append(u'<a href="%s">MOBI</a>' % self.get_media('mobi').url)
409 if self.root_ancestor.has_media("epub"):
410 formats.append(u'<a href="%s">EPUB</a>' % self.root_ancestor.get_media('epub').url)
411 if self.has_media("txt"):
412 formats.append(u'<a href="%s">TXT</a>' % self.get_media('txt').url)
414 for m in self.media.order_by('type'):
415 formats.append(u'<a href="%s">%s</a>' % (m.file.url, m.type.upper()))
417 formats = [mark_safe(format) for format in formats]
419 short_html = unicode(render_to_string('catalogue/book_short.html',
420 {'book': self, 'tags': tags, 'formats': formats}))
423 cache.set(cache_key, short_html, CACHE_FOREVER)
424 return mark_safe(short_html)
427 def root_ancestor(self):
428 """ returns the oldest ancestor """
430 if not hasattr(self, '_root_ancestor'):
434 self._root_ancestor = book
435 return self._root_ancestor
438 def has_description(self):
439 return len(self.description) > 0
440 has_description.short_description = _('description')
441 has_description.boolean = True
444 def has_odt_file(self):
445 return bool(self.has_media("odt"))
446 has_odt_file.short_description = 'ODT'
447 has_odt_file.boolean = True
449 def has_mp3_file(self):
450 return bool(self.has_media("mp3"))
451 has_mp3_file.short_description = 'MP3'
452 has_mp3_file.boolean = True
454 def has_ogg_file(self):
455 return bool(self.has_media("ogg"))
456 has_ogg_file.short_description = 'OGG'
457 has_ogg_file.boolean = True
459 def has_daisy_file(self):
460 return bool(self.has_media("daisy"))
461 has_daisy_file.short_description = 'DAISY'
462 has_daisy_file.boolean = True
465 """ (Re)builds the pdf file.
468 from librarian import pdf
469 from tempfile import NamedTemporaryFile
473 pdf_file = NamedTemporaryFile(delete=False)
474 pdf.transform(ORMDocProvider(self),
475 file_path=str(self.xml_file.path),
476 output_file=pdf_file,
479 self.pdf_file.save('%s.pdf' % self.slug, File(open(pdf_file.name)))
481 unlink(pdf_file.name)
483 # remove zip with all pdf files
484 remove_zip(settings.ALL_PDF_ZIP)
486 def build_mobi(self):
487 """ (Re)builds the MOBI file.
490 from librarian import mobi
491 from tempfile import NamedTemporaryFile
495 mobi_file = NamedTemporaryFile(suffix='.mobi', delete=False)
496 mobi.transform(ORMDocProvider(self), verbose=1,
497 file_path=str(self.xml_file.path),
498 output_file=mobi_file.name,
501 self.mobi_file.save('%s.mobi' % self.slug, File(open(mobi_file.name)))
503 unlink(mobi_file.name)
505 # remove zip with all mobi files
506 remove_zip(settings.ALL_MOBI_ZIP)
508 def build_epub(self, remove_descendants=True):
509 """ (Re)builds the epub file.
510 If book has a parent, does nothing.
511 Unless remove_descendants is False, descendants' epubs are removed.
513 from StringIO import StringIO
514 from hashlib import sha1
515 from django.core.files.base import ContentFile
521 epub_file = StringIO()
523 epub.transform(ORMDocProvider(self), self.slug, output_file=epub_file)
524 self.epub_file.save('%s.epub' % self.slug, ContentFile(epub_file.getvalue()))
525 FileRecord(slug=self.slug, type='epub', sha1=sha1(epub_file.getvalue()).hexdigest()).save()
529 book_descendants = list(self.children.all())
530 while len(book_descendants) > 0:
531 child_book = book_descendants.pop(0)
532 if remove_descendants and child_book.has_epub_file():
533 child_book.epub_file.delete()
534 # save anyway, to refresh short_html
536 book_descendants += list(child_book.children.all())
538 # remove zip package with all epub files
539 remove_zip(settings.ALL_EPUB_ZIP)
542 from StringIO import StringIO
543 from django.core.files.base import ContentFile
544 from librarian import text
547 text.transform(open(self.xml_file.path), out)
548 self.txt_file.save('%s.txt' % self.slug, ContentFile(out.getvalue()))
551 def build_html(self):
552 from tempfile import NamedTemporaryFile
553 from markupstring import MarkupString
555 meta_tags = list(self.tags.filter(
556 category__in=('author', 'epoch', 'genre', 'kind')))
557 book_tag = self.book_tag()
559 html_file = NamedTemporaryFile()
560 if html.transform(self.xml_file.path, html_file, parse_dublincore=False):
561 self.html_file.save('%s.html' % self.slug, File(html_file))
563 # get ancestor l-tags for adding to new fragments
567 ancestor_tags.append(p.book_tag())
570 # Delete old fragments and create them from scratch
571 self.fragments.all().delete()
573 closed_fragments, open_fragments = html.extract_fragments(self.html_file.path)
574 for fragment in closed_fragments.values():
576 theme_names = [s.strip() for s in fragment.themes.split(',')]
577 except AttributeError:
580 for theme_name in theme_names:
583 tag, created = Tag.objects.get_or_create(slug=slughifi(theme_name), category='theme')
585 tag.name = theme_name
586 tag.sort_key = theme_name.lower()
592 text = fragment.to_string()
594 if (len(MarkupString(text)) > 240):
595 short_text = unicode(MarkupString(text)[:160])
596 new_fragment = Fragment.objects.create(anchor=fragment.id, book=self,
597 text=text, short_text=short_text)
600 new_fragment.tags = set(meta_tags + themes + [book_tag] + ancestor_tags)
602 self.html_built.send(sender=self)
607 def zip_format(format_):
608 def pretty_file_name(book):
609 return "%s/%s.%s" % (
610 b.get_extra_info_value()['author'],
614 field_name = "%s_file" % format_
615 books = Book.objects.filter(parent=None).exclude(**{field_name: ""})
616 paths = [(pretty_file_name(b), getattr(b, field_name).path)
618 result = create_zip.delay(paths,
619 getattr(settings, "ALL_%s_ZIP" % format_.upper()))
622 def zip_audiobooks(self):
623 bm = BookMedia.objects.filter(book=self, type='mp3')
624 paths = map(lambda bm: (None, bm.file.path), bm)
625 result = create_zip.delay(paths, self.slug)
629 def from_xml_file(cls, xml_file, **kwargs):
630 # use librarian to parse meta-data
631 book_info = dcparser.parse(xml_file)
633 if not isinstance(xml_file, File):
634 xml_file = File(open(xml_file))
637 return cls.from_text_and_meta(xml_file, book_info, **kwargs)
642 def from_text_and_meta(cls, raw_file, book_info, overwrite=False,
643 build_epub=True, build_txt=True, build_pdf=True, build_mobi=True):
646 # check for parts before we do anything
648 if hasattr(book_info, 'parts'):
649 for part_url in book_info.parts:
650 base, slug = part_url.rsplit('/', 1)
652 children.append(Book.objects.get(slug=slug))
653 except Book.DoesNotExist, e:
654 raise Book.DoesNotExist(_('Book with slug = "%s" does not exist.') % slug)
658 book_base, book_slug = book_info.url.rsplit('/', 1)
659 if re.search(r'[^a-zA-Z0-9-]', book_slug):
660 raise ValueError('Invalid characters in slug')
661 book, created = Book.objects.get_or_create(slug=book_slug)
667 raise Book.AlreadyExists(_('Book %s already exists') % book_slug)
668 # Save shelves for this book
669 book_shelves = list(book.tags.filter(category='set'))
671 book.title = book_info.title
672 book.set_extra_info_value(book_info.to_dict())
676 categories = (('kinds', 'kind'), ('genres', 'genre'), ('authors', 'author'), ('epochs', 'epoch'))
677 for field_name, category in categories:
679 tag_names = getattr(book_info, field_name)
681 tag_names = [getattr(book_info, category)]
682 for tag_name in tag_names:
683 tag_sort_key = tag_name
684 if category == 'author':
685 tag_sort_key = tag_name.last_name
686 tag_name = ' '.join(tag_name.first_names) + ' ' + tag_name.last_name
687 tag, created = Tag.objects.get_or_create(slug=slughifi(tag_name), category=category)
690 tag.sort_key = sortify(tag_sort_key.lower())
692 meta_tags.append(tag)
694 book.tags = set(meta_tags + book_shelves)
696 book_tag = book.book_tag()
698 for n, child_book in enumerate(children):
699 child_book.parent = book
700 child_book.parent_number = n
703 # Save XML and HTML files
704 book.xml_file.save('%s.xml' % book.slug, raw_file, save=False)
706 # delete old fragments when overwriting
707 book.fragments.all().delete()
709 if book.build_html():
710 if not settings.NO_BUILD_TXT and build_txt:
713 if not settings.NO_BUILD_EPUB and build_epub:
714 book.root_ancestor.build_epub()
716 if not settings.NO_BUILD_PDF and build_pdf:
717 book.root_ancestor.build_pdf()
719 if not settings.NO_BUILD_MOBI and build_mobi:
722 book_descendants = list(book.children.all())
723 # add l-tag to descendants and their fragments
724 # delete unnecessary EPUB files
725 while len(book_descendants) > 0:
726 child_book = book_descendants.pop(0)
727 child_book.tags = list(child_book.tags) + [book_tag]
729 for fragment in child_book.fragments.all():
730 fragment.tags = set(list(fragment.tags) + [book_tag])
731 book_descendants += list(child_book.children.all())
736 book.reset_tag_counter()
737 book.reset_theme_counter()
739 cls.published.send(sender=book)
742 def reset_tag_counter(self):
746 cache_key = "Book.tag_counter/%d" % self.id
747 cache.delete(cache_key)
749 self.parent.reset_tag_counter()
752 def tag_counter(self):
754 cache_key = "Book.tag_counter/%d" % self.id
755 tags = cache.get(cache_key)
761 for child in self.children.all().order_by():
762 for tag_pk, value in child.tag_counter.iteritems():
763 tags[tag_pk] = tags.get(tag_pk, 0) + value
764 for tag in self.tags.exclude(category__in=('book', 'theme', 'set')).order_by():
768 cache.set(cache_key, tags, CACHE_FOREVER)
771 def reset_theme_counter(self):
775 cache_key = "Book.theme_counter/%d" % self.id
776 cache.delete(cache_key)
778 self.parent.reset_theme_counter()
781 def theme_counter(self):
783 cache_key = "Book.theme_counter/%d" % self.id
784 tags = cache.get(cache_key)
790 for fragment in Fragment.tagged.with_any([self.book_tag()]).order_by():
791 for tag in fragment.tags.filter(category='theme').order_by():
792 tags[tag.pk] = tags.get(tag.pk, 0) + 1
795 cache.set(cache_key, tags, CACHE_FOREVER)
798 def pretty_title(self, html_links=False):
800 names = list(book.tags.filter(category='author'))
806 names.extend(reversed(books))
809 names = ['<a href="%s">%s</a>' % (tag.get_absolute_url(), tag.name) for tag in names]
811 names = [tag.name for tag in names]
813 return ', '.join(names)
816 def tagged_top_level(cls, tags):
817 """ Returns top-level books tagged with `tags'.
819 It only returns those books which don't have ancestors which are
820 also tagged with those tags.
823 # get relevant books and their tags
824 objects = cls.tagged.with_all(tags)
825 # eliminate descendants
826 l_tags = Tag.objects.filter(category='book', slug__in=[book.book_tag_slug() for book in objects])
827 descendants_keys = [book.pk for book in cls.tagged.with_any(l_tags)]
829 objects = objects.exclude(pk__in=descendants_keys)
834 def book_list(cls, filter=None):
835 """Generates a hierarchical listing of all books.
837 Books are optionally filtered with a test function.
842 books = cls.objects.all().order_by('parent_number', 'sort_key').only('title', 'parent', 'slug')
844 books = books.filter(filter).distinct()
845 book_ids = set((book.pk for book in books))
847 parent = book.parent_id
848 if parent not in book_ids:
850 books_by_parent.setdefault(parent, []).append(book)
853 books_by_parent.setdefault(book.parent_id, []).append(book)
856 books_by_author = SortedDict()
857 for tag in Tag.objects.filter(category='author'):
858 books_by_author[tag] = []
860 for book in books_by_parent.get(None,()):
861 authors = list(book.tags.filter(category='author'))
863 for author in authors:
864 books_by_author[author].append(book)
868 return books_by_author, orphans, books_by_parent
871 def _has_factory(ftype):
872 has = lambda self: bool(getattr(self, "%s_file" % ftype))
873 has.short_description = t.upper()
875 has.__name__ = "has_%s_file" % ftype
879 # add the file fields
880 for t in Book.file_types:
881 field_name = "%s_file" % t
882 models.FileField(_("%s file" % t.upper()),
883 upload_to=book_upload_path(t),
884 blank=True).contribute_to_class(Book, field_name)
886 setattr(Book, "has_%s_file" % t, _has_factory(t))
889 class Fragment(models.Model):
890 text = models.TextField()
891 short_text = models.TextField(editable=False)
892 anchor = models.CharField(max_length=120)
893 book = models.ForeignKey(Book, related_name='fragments')
895 objects = models.Manager()
896 tagged = managers.ModelTaggedItemManager(Tag)
897 tags = managers.TagDescriptor(Tag)
900 ordering = ('book', 'anchor',)
901 verbose_name = _('fragment')
902 verbose_name_plural = _('fragments')
904 def get_absolute_url(self):
905 return '%s#m%s' % (reverse('book_text', kwargs={'slug': self.book.slug}), self.anchor)
907 def reset_short_html(self):
911 cache_key = "Fragment.short_html/%d/%s"
912 for lang, langname in settings.LANGUAGES:
913 cache.delete(cache_key % (self.id, lang))
915 def short_html(self):
917 cache_key = "Fragment.short_html/%d/%s" % (self.id, get_language())
918 short_html = cache.get(cache_key)
922 if short_html is not None:
923 return mark_safe(short_html)
925 short_html = unicode(render_to_string('catalogue/fragment_short.html',
928 cache.set(cache_key, short_html, CACHE_FOREVER)
929 return mark_safe(short_html)
932 class FileRecord(models.Model):
933 slug = models.SlugField(_('slug'), max_length=120, db_index=True)
934 type = models.CharField(_('type'), max_length=20, db_index=True)
935 sha1 = models.CharField(_('sha-1 hash'), max_length=40)
936 time = models.DateTimeField(_('time'), auto_now_add=True)
939 ordering = ('-time','-slug', '-type')
940 verbose_name = _('file record')
941 verbose_name_plural = _('file records')
943 def __unicode__(self):
944 return "%s %s.%s" % (self.sha1, self.slug, self.type)
953 def _tags_updated_handler(sender, affected_tags, **kwargs):
954 # reset tag global counter
955 # we want Tag.changed_at updated for API to know the tag was touched
956 Tag.objects.filter(pk__in=[tag.pk for tag in affected_tags]).update(book_count=None, changed_at=datetime.now())
958 # if book tags changed, reset book tag counter
959 if isinstance(sender, Book) and \
960 Tag.objects.filter(pk__in=(tag.pk for tag in affected_tags)).\
961 exclude(category__in=('book', 'theme', 'set')).count():
962 sender.reset_tag_counter()
963 # if fragment theme changed, reset book theme counter
964 elif isinstance(sender, Fragment) and \
965 Tag.objects.filter(pk__in=(tag.pk for tag in affected_tags)).\
966 filter(category='theme').count():
967 sender.book.reset_theme_counter()
968 tags_updated.connect(_tags_updated_handler)
971 def _pre_delete_handler(sender, instance, **kwargs):
972 """ refresh Book on BookMedia delete """
973 if sender == BookMedia:
975 pre_delete.connect(_pre_delete_handler)
977 def _post_save_handler(sender, instance, **kwargs):
978 """ refresh all the short_html stuff on BookMedia update """
979 if sender == BookMedia:
981 post_save.connect(_post_save_handler)