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 django.conf import settings
 
   6 from django.core.files import File
 
   7 from django.db import models
 
   8 from django.db.models.fields.files import FieldFile
 
   9 from catalogue import app_settings
 
  10 from catalogue.constants import LANGUAGES_3TO2
 
  11 from catalogue.utils import remove_zip, truncate_html_words
 
  12 from celery.task import Task, task
 
  13 from waiter.utils import clear_cache
 
  16 class EbookFieldFile(FieldFile):
 
  17     """Represents contents of an ebook file field."""
 
  20         """Build the ebook immediately."""
 
  21         return self.field.builder.build(self)
 
  23     def build_delay(self):
 
  24         """Builds the ebook in a delayed task."""
 
  25         return self.field.builder.delay(self.instance, self.field.attname)
 
  28 class EbookField(models.FileField):
 
  29     """Represents an ebook file field, attachable to a model."""
 
  30     attr_class = EbookFieldFile
 
  32     def __init__(self, format_name, *args, **kwargs):
 
  33         super(EbookField, self).__init__(*args, **kwargs)
 
  34         self.format_name = format_name
 
  38         """Finds a celery task suitable for the format of the field."""
 
  39         return BuildEbook.for_format(self.format_name)
 
  41     def contribute_to_class(self, cls, name):
 
  42         super(EbookField, self).contribute_to_class(cls, name)
 
  44         def has(model_instance):
 
  45             return bool(getattr(model_instance, self.attname, None))
 
  47         has.__name__ = "has_%s" % self.attname
 
  48         has.short_description = self.name
 
  50         setattr(cls, 'has_%s' % self.attname, has)
 
  53 class BuildEbook(Task):
 
  57     def register(cls, format_name):
 
  58         """A decorator for registering subclasses for particular formats."""
 
  60             cls.formats[format_name] = builder
 
  65     def for_format(cls, format_name):
 
  66         """Returns a celery task suitable for specified format."""
 
  67         return cls.formats.get(format_name, BuildEbookTask)
 
  70     def transform(wldoc, fieldfile):
 
  71         """Transforms an librarian.WLDocument into an librarian.OutputFile.
 
  73         By default, it just calls relevant wldoc.as_??? method.
 
  76         return getattr(wldoc, "as_%s" % fieldfile.field.format_name)()
 
  78     def run(self, obj, field_name):
 
  79         """Just run `build` on FieldFile, can't pass it directly to Celery."""
 
  80         return self.build(getattr(obj, field_name))
 
  82     def build(self, fieldfile):
 
  83         book = fieldfile.instance
 
  84         out = self.transform(book.wldocument(), fieldfile)
 
  85         fieldfile.save(None, File(open(out.get_filename())), save=False)
 
  86         if book.pk is not None:
 
  87             type(book).objects.filter(pk=book.pk).update(**{
 
  88                 fieldfile.field.attname: fieldfile
 
  90         if fieldfile.field.format_name in app_settings.FORMAT_ZIPS:
 
  91             remove_zip(app_settings.FORMAT_ZIPS[fieldfile.field.format_name])
 
  92 # Don't decorate BuildEbook, because we want to subclass it.
 
  93 BuildEbookTask = task(BuildEbook, ignore_result=True)
 
  96 @BuildEbook.register('txt')
 
  97 @task(ignore_result=True)
 
  98 class BuildTxt(BuildEbook):
 
 100     def transform(wldoc, fieldfile):
 
 101         return wldoc.as_text()
 
 104 @BuildEbook.register('pdf')
 
 105 @task(ignore_result=True)
 
 106 class BuildPdf(BuildEbook):
 
 108     def transform(wldoc, fieldfile):
 
 109         return wldoc.as_pdf(morefloats=settings.LIBRARIAN_PDF_MOREFLOATS,
 
 112     def build(self, fieldfile):
 
 113         BuildEbook.build(self, fieldfile)
 
 114         clear_cache(fieldfile.instance.slug)
 
 117 @BuildEbook.register('epub')
 
 118 @task(ignore_result=True)
 
 119 class BuildEpub(BuildEbook):
 
 121     def transform(wldoc, fieldfile):
 
 122         return wldoc.as_epub(cover=True)
 
 125 @BuildEbook.register('html')
 
 126 @task(ignore_result=True)
 
 127 class BuildHtml(BuildEbook):
 
 128     def build(self, fieldfile):
 
 129         from django.core.files.base import ContentFile
 
 130         from fnpdjango.utils.text.slughifi import slughifi
 
 131         from sortify import sortify
 
 132         from librarian import html
 
 133         from catalogue.models import Fragment, Tag
 
 135         book = fieldfile.instance
 
 137         meta_tags = list(book.tags.filter(
 
 138             category__in=('author', 'epoch', 'genre', 'kind')))
 
 139         book_tag = book.book_tag()
 
 141         html_output = self.transform(
 
 142                         book.wldocument(parse_dublincore=False),
 
 145         lang = LANGUAGES_3TO2.get(lang, lang)
 
 146         if lang not in [ln[0] for ln in settings.LANGUAGES]:
 
 149         # Delete old fragments, create from scratch if necessary.
 
 150         book.fragments.all().delete()
 
 153             fieldfile.save(None, ContentFile(html_output.get_string()),
 
 155             type(book).objects.filter(pk=book.pk).update(**{
 
 156                 fieldfile.field.attname: fieldfile
 
 159             # get ancestor l-tags for adding to new fragments
 
 163                 ancestor_tags.append(p.book_tag())
 
 167             closed_fragments, open_fragments = html.extract_fragments(fieldfile.path)
 
 168             for fragment in closed_fragments.values():
 
 170                     theme_names = [s.strip() for s in fragment.themes.split(',')]
 
 171                 except AttributeError:
 
 174                 for theme_name in theme_names:
 
 177                     if lang == settings.LANGUAGE_CODE:
 
 178                         # Allow creating themes if book in default language.
 
 179                         tag, created = Tag.objects.get_or_create(
 
 180                                             slug=slughifi(theme_name),
 
 183                             tag.name = theme_name
 
 184                             setattr(tag, "name_%s" % lang, theme_name)
 
 185                             tag.sort_key = sortify(theme_name.lower())
 
 188                     elif lang is not None:
 
 189                         # Don't create unknown themes in non-default languages.
 
 191                             tag = Tag.objects.get(category='theme',
 
 192                                     **{"name_%s" % lang: theme_name})
 
 193                         except Tag.DoesNotExist:
 
 200                 text = fragment.to_string()
 
 201                 short_text = truncate_html_words(text, 15)
 
 202                 if text == short_text:
 
 204                 new_fragment = Fragment.objects.create(anchor=fragment.id,
 
 205                         book=book, text=text, short_text=short_text)
 
 208                 new_fragment.tags = set(meta_tags + themes + [book_tag] + ancestor_tags)
 
 210             book.html_built.send(sender=book)
 
 214 @BuildEbook.register('cover_thumb')
 
 215 @task(ignore_result=True)
 
 216 class BuildCoverThumb(BuildEbook):
 
 218     def transform(cls, wldoc, fieldfile):
 
 219         from librarian.cover import WLCover
 
 220         return WLCover(wldoc.book_info, height=193).output_file()
 
 224 class OverwritingFieldFile(FieldFile):
 
 226         Deletes the old file before saving the new one.
 
 229     def save(self, name, content, *args, **kwargs):
 
 230         leave = kwargs.pop('leave', None)
 
 231         # delete if there's a file already and there's a new one coming
 
 232         if not leave and self and (not hasattr(content, 'path') or
 
 233                                    content.path != self.path):
 
 234             self.delete(save=False)
 
 235         return super(OverwritingFieldFile, self).save(
 
 236                 name, content, *args, **kwargs)
 
 239 class OverwritingFileField(models.FileField):
 
 240     attr_class = OverwritingFieldFile
 
 245     from south.modelsinspector import add_introspection_rules
 
 249     add_introspection_rules([
 
 253             {'format_name': ('format_name', {})}
 
 255     ], ["^catalogue\.fields\.EbookField"])
 
 256     add_introspection_rules([], ["^catalogue\.fields\.OverwritingFileField"])