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.
7 from django.core.management.base import BaseCommand
8 from django.db import transaction
10 from catalogue.models import Book, BookMedia
11 from catalogue.utils import ExistingFile
14 class Command(BaseCommand):
15 help = "Saves uploaded media with a given book and a given name. " \
16 "If media has a source SHA1 info - matching media is replaced."
17 args = 'path slug name'
20 def handle(self, *args, **options):
21 path, slug, name = args
23 book = Book.objects.get(slug=slug)
25 root, ext = os.path.splitext(path)
32 source_sha1 = BookMedia.read_source_sha1(path, ext)
33 print "Source file SHA1:", source_sha1
36 bm = book.media.get(type=ext, source_sha1=source_sha1)
37 print "Replacing media: %s (%s)" % (bm.name.encode('utf-8'), ext)
38 except (AssertionError, BookMedia.DoesNotExist):
39 bm = BookMedia(book=book, type=ext)
40 print "Creating new media"
42 bm.file.save(None, ExistingFile(path))