1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
8 from optparse import make_option
9 from django.conf import settings
10 from django.core.management.base import BaseCommand
11 from django.core.management.color import color_style
12 from django.core.files import File
13 from librarian.picture import ImageStore
14 from wolnelektury_core.management.profile import profile
16 from catalogue.models import Book
17 from picture.models import Picture
19 from search.index import Index
22 class Command(BaseCommand):
23 option_list = BaseCommand.option_list + (
24 make_option('-q', '--quiet', action='store_false', dest='verbose', default=True,
25 help='Verbosity level; 0=minimal output, 1=normal output, 2=all output'),
26 make_option('-f', '--force', action='store_true', dest='force', default=False,
27 help='Overwrite works already in the catalogue'),
28 make_option('-D', '--dont-build', dest='dont_build',
30 help="Skip building specified formats"),
31 make_option('-S', '--no-search-index', action='store_false', dest='search_index', default=True,
32 help='Skip indexing imported works for search'),
33 make_option('-w', '--wait-until', dest='wait_until', metavar='TIME',
34 help='Wait until specified time (Y-M-D h:m:s)'),
35 make_option('-p', '--picture', action='store_true', dest='import_picture', default=False,
36 help='Import pictures'),
38 help = 'Imports books from the specified directories.'
39 args = 'directory [directory ...]'
41 def import_book(self, file_path, options):
42 verbose = options.get('verbose')
43 if options.get('dont_build'):
44 dont_build = options.get('dont_build').lower().split(',')
47 file_base, ext = os.path.splitext(file_path)
48 book = Book.from_xml_file(file_path, overwrite=options.get('force'),
49 dont_build=dont_build,
50 search_index_tags=False)
51 for ebook_format in Book.ebook_formats:
52 if os.path.isfile(file_base + '.' + ebook_format):
53 getattr(book, '%s_file' % ebook_format).save(
54 '%s.%s' % (book.slug, ebook_format),
55 File(file(file_base + '.' + ebook_format)),
59 print "Importing %s.%s" % (file_base, ebook_format)
62 def import_picture(self, file_path, options, continue_on_error=True):
64 image_store = ImageStore(os.path.dirname(file_path))
65 picture = Picture.from_xml_file(file_path, image_store=image_store, overwrite=options.get('force'))
68 print "%s: %s" % (file_path, ex)
75 def handle(self, *directories, **options):
76 from django.db import transaction
78 self.style = color_style()
80 verbose = options.get('verbose')
81 import_picture = options.get('import_picture')
84 if options.get('wait_until'):
85 wait_until = time.mktime(time.strptime(options.get('wait_until'), '%Y-%m-%d %H:%M:%S'))
87 print "Will wait until %s; it's %f seconds from now" % (
88 time.strftime('%Y-%m-%d %H:%M:%S',
89 time.localtime(wait_until)), wait_until - time.time())
92 if options.get('search_index') and not settings.NO_SEARCH_INDEX:
98 index.index.rollback()
101 # Start transaction management.
102 with transaction.atomic():
107 for dir_name in directories:
108 if not os.path.isdir(dir_name):
109 print self.style.ERROR("%s: Not a directory. Skipping." % dir_name)
112 files = sorted(os.listdir(dir_name))
115 file_name = files.pop(0)
116 file_path = os.path.join(dir_name, file_name)
117 file_base, ext = os.path.splitext(file_path)
119 # Skip files that are not XML files
120 if not ext == '.xml':
124 print "Parsing '%s'" % file_path
126 sys.stdout.write('.')
132 self.import_picture(file_path, options)
134 self.import_book(file_path, options)
138 except (Book.AlreadyExists, Picture.AlreadyExists):
139 print self.style.ERROR('%s: Book or Picture already imported. Skipping. To overwrite use --force.' %
143 except Book.DoesNotExist, e:
144 if file_name not in postponed or postponed[file_name] < files_imported:
145 # push it back into the queue, maybe the missing child will show up
147 print self.style.NOTICE('Waiting for missing children')
148 files.append(file_name)
149 postponed[file_name] = files_imported
151 # we're in a loop, nothing's being imported - some child is really missing
156 print "Results: %d files imported, %d skipped, %d total." % (
157 files_imported, files_skipped, files_imported + files_skipped)
163 time.sleep(wait_until - time.time())
165 print "it's already too late"