pass
-class BookImportDocProvider(DocProvider):
- """Used for joined EPUB and PDF files."""
+class ORMDocProvider(DocProvider):
+ """Used for getting books' children."""
def __init__(self, book):
self.book = book
self.lock.close()
+@task
def create_zip(paths, zip_slug):
"""
Creates a zip in MEDIA_ROOT/zip directory containing files from path.
with LockFile(zip_path, zip_slug):
if not path.exists(path.join(zip_path, zip_filename)):
- with ZipFile(path.join(zip_path, zip_filename), 'w') as zipf:
- for p in paths:
- zipf.write(p, path.basename(p))
+ zipf = ZipFile(path.join(zip_path, zip_filename), 'w')
+ try:
+ for arcname, p in paths:
+ if arcname is None:
+ arcname = path.basename(p)
+ zipf.write(p, arcname)
+ finally:
+ zipf.close()
return 'zip/' + zip_filename
except OSError as oe:
if oe.errno != ENOENT:
raise oe
-
-
-@task
-def create_zip_task(*args):
- return create_zip(*args)