fix parent PDF creation, add test
[wolnelektury.git] / apps / catalogue / utils.py
index 566eaf4..368f96d 100644 (file)
@@ -10,6 +10,8 @@ from django.core.files.uploadedfile import UploadedFile
 from django.utils.hashcompat import sha_constructor
 from django.conf import settings
 
+from librarian import DocProvider
+
 
 # Use the system (hardware-based) random number generator if it exists.
 if hasattr(random, 'SystemRandom'):
@@ -44,3 +46,16 @@ class ExistingFile(UploadedFile):
 
     def close(self):
         pass
+
+
+class BookImportDocProvider(DocProvider):
+    """Used for joined EPUB and PDF files."""
+
+    def __init__(self, book):
+        self.book = book
+
+    def by_slug(self, slug):
+        if slug == self.book.slug:
+            return self.book.xml_file
+        else:
+            return type(self.book).objects.get(slug=slug).xml_file