working copy epub flag
[librarian.git] / scripts / book2epub
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 #
4 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
5 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
6 #
7 import os.path
8 import optparse
9
10 from librarian import DirDocProvider, ParseError
11 from librarian.parser import WLDocument
12
13
14 if __name__ == '__main__':
15     # Parse commandline arguments
16     usage = """Usage: %prog [options] SOURCE [SOURCE...]
17     Convert SOURCE files to EPUB format."""
18
19     parser = optparse.OptionParser(usage=usage)
20
21     parser.add_option('-v', '--verbose', action='store_true', dest='verbose', default=False,
22         help='print status messages to stdout')
23     parser.add_option('-c', '--with-cover', action='store_true', dest='with_cover', default=False,
24                       help='create default cover')
25     parser.add_option('-w', '--working-copy', action='store_true', dest='working_copy', default=False,
26                       help='specifies the directory for output')
27     parser.add_option('-d', '--make-dir', action='store_true', dest='make_dir', default=False,
28                       help='create a directory for author and put the PDF in it')
29     parser.add_option('-o', '--output-file', dest='output_file', metavar='FILE',
30                       help='specifies the output file')
31     parser.add_option('-O', '--output-dir', dest='output_dir', metavar='DIR',
32                       help='specifies the directory for output')
33
34     options, input_filenames = parser.parse_args()
35
36     if len(input_filenames) < 1:
37         parser.print_help()
38         exit(1)
39
40     flags = []
41     if options.working_copy:
42         flags.append('working-copy')
43
44     # Do some real work
45     try:
46         for main_input in input_filenames:
47             if options.verbose:
48                 print main_input
49
50             path, fname = os.path.realpath(main_input).rsplit('/', 1)
51             provider = DirDocProvider(path)
52             if not (options.output_file or options.output_dir):
53                 output_file = os.path.splitext(main_input)[0] + '.epub'
54             else:
55                 output_file = None
56
57             doc = WLDocument.from_file(main_input, provider=provider)
58             epub = doc.as_epub(cover=options.with_cover, flags=flags)
59
60             doc.save_output_file(epub,
61                 output_file, options.output_dir, options.make_dir, 'epub')
62
63     except ParseError, e:
64         print '%(file)s:%(name)s:%(message)s' % {
65             'file': main_input,
66             'name': e.__class__.__name__,
67             'message': e
68         }