+
+
+class AttachmentHttpResponse(HttpResponse):
+ """Response serving a file to be downloaded.
+ """
+ def __init__ (self, file_path, file_name, mimetype):
+ super(AttachmentHttpResponse, self).__init__(mimetype=mimetype)
+ self['Content-Disposition'] = 'attachment; filename=%s' % file_name
+ self.file_path = file_path
+ self.file_name = file_name
+
+ with open(self.file_path) as f:
+ for chunk in read_chunks(f):
+ self.write(chunk)
+
+@task
+def create_custom_pdf(book_id, customizations, file_name):
+ book = catalogue.models.Book.objects.get(id=book_id)
+ if not path.exists(file_name):
+ book.build_pdf(customizations=customizations, file_name=file_name)