fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add basic login.
[wolnelektury.git]
/
src
/
catalogue
/
tasks.py
diff --git
a/src/catalogue/tasks.py
b/src/catalogue/tasks.py
index
e16f1ff
..
20690c6
100644
(file)
--- a/
src/catalogue/tasks.py
+++ b/
src/catalogue/tasks.py
@@
-1,5
+1,5
@@
-# This file is part of Wolne
l
ektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja
Nowoczesna Polska
. See NOTICE for more information.
+# This file is part of Wolne
L
ektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja
Wolne Lektury
. See NOTICE for more information.
#
from traceback import print_exc
from celery import shared_task
#
from traceback import print_exc
from celery import shared_task
@@
-32,9
+32,9
@@
def build_field(pk, field_name):
@shared_task
@shared_task
-def index_book(book_id,
book_info=None,
**kwargs):
+def index_book(book_id, **kwargs):
try:
try:
- return Book.objects.get(id=book_id).search_index(
book_info,
**kwargs)
+ return Book.objects.get(id=book_id).search_index(**kwargs)
except Exception as e:
print("Exception during index: %s" % e)
print_exc()
except Exception as e:
print("Exception during index: %s" % e)
print_exc()
@@
-62,7
+62,8
@@
def build_custom_pdf(book_id, customizations, file_name, waiter_id=None):
morefloats=settings.LIBRARIAN_PDF_MOREFLOATS,
base_url=absolute_url(gallery_url(wldoc.book_info.url.slug)),
**kwargs)
morefloats=settings.LIBRARIAN_PDF_MOREFLOATS,
base_url=absolute_url(gallery_url(wldoc.book_info.url.slug)),
**kwargs)
- DefaultStorage().save(file_name, File(open(pdf.get_filename(), 'rb')))
+ with open(pdf.get_filename(), 'rb') as f:
+ DefaultStorage().save(file_name, File(f))
finally:
if waiter_id is not None:
WaitedFile.objects.filter(pk=waiter_id).delete()
finally:
if waiter_id is not None:
WaitedFile.objects.filter(pk=waiter_id).delete()