Use FILE_UPLOAD_TEMP_DIR for big files.
[audio.git] / src / youtube / models.py
index df071f1..76a02b9 100644 (file)
@@ -1,6 +1,5 @@
 import io
 from os import unlink
-from tempfile import NamedTemporaryFile
 from django.db import models
 from django.utils.translation import gettext_lazy as _
 from django.template import Template, Context
@@ -232,12 +231,18 @@ class ThumbnailTemplate(models.Model):
 
     def generate(self, audiobook):
         try:
+            title = audiobook.book['title']
+            if audiobook.book.get('parent'):
+                parent_title = audiobook.book['parent']['title']
+                if not title.startswith(parent_title):
+                    title = ", ".join((parent_title, title))
+
             img = create_thumbnail(
                 self.background.path,
                 self.definition,
                 {
                     "author": ', '.join((a['name'] for a in audiobook.book['authors'])),
-                    "title": audiobook.book['title'],
+                    "title": title,
                     "part": (audiobook.youtube_volume or audiobook.part_name).strip(),
                 },
                 lambda name: Font.objects.get(name=name).truetype.path