1 # -*- coding: utf-8 -*-
3 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
4 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
7 from librarian import pdf, epub, mobi, DirDocProvider, ParseError, cover
8 from librarian.parser import WLDocument
11 class Packager(object):
16 def transform(cls, *args, **kwargs):
17 return cls.converter.transform(*args, **kwargs)
20 def prepare_file(cls, main_input, output_dir, verbose=False, overwrite=False):
21 path, fname = os.path.realpath(main_input).rsplit('/', 1)
22 provider = DirDocProvider(path)
23 slug, ext = os.path.splitext(fname)
27 os.makedirs(output_dir)
30 outfile = os.path.join(output_dir, slug + '.' + cls.ext)
31 if os.path.exists(outfile) and not overwrite:
34 doc = WLDocument.from_file(main_input, provider=provider)
35 output_file = cls.transform(doc,
36 cover=cls.cover, flags=cls.flags)
37 doc.save_output_file(output_file, output_path=outfile)
41 def prepare(cls, input_filenames, output_dir='', verbose=False, overwrite=False):
43 for main_input in input_filenames:
46 cls.prepare_file(main_input, output_dir, verbose, overwrite)
48 print '%(file)s:%(name)s:%(message)s' % {
50 'name': e.__class__.__name__,
55 class EpubPackager(Packager):
59 class MobiPackager(Packager):
63 class PdfPackager(Packager):
68 def transform(cls, *args, **kwargs):
69 return cls.converter.transform(*args, morefloats='new', **kwargs)