6196bab427313686a768354293227f64e694585b
[wolnelektury.git] / src / catalogue / management / commands / savemedia.py
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.
4 #
5 import os.path
6
7 from django.core.management.base import BaseCommand
8 from django.db import transaction
9
10 from catalogue.models import Book, BookMedia
11 from catalogue.utils import ExistingFile
12
13
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'
18
19     @transaction.atomic
20     def handle(self, *args, **options):
21         path, slug, name = args
22
23         book = Book.objects.get(slug=slug)
24
25         root, ext = os.path.splitext(path)
26         ext = ext.lower()
27         if ext:
28             ext = ext[1:]
29             if ext == 'zip':
30                 ext = 'daisy'
31
32         source_sha1 = BookMedia.read_source_sha1(path, ext)
33         print "Source file SHA1:", source_sha1
34         try:
35             assert 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"
41         bm.name = name
42         bm.file.save(None, ExistingFile(path))
43         bm.save()