X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/dbb1ae2cf25105f7a3831961b08386a1326baef8..08433423130c027b64c87c13c1bb4d2390694263:/apps/catalogue/models/bookmedia.py?ds=sidebyside diff --git a/apps/catalogue/models/bookmedia.py b/apps/catalogue/models/bookmedia.py index 42781e9d0..9688e86ce 100644 --- a/apps/catalogue/models/bookmedia.py +++ b/apps/catalogue/models/bookmedia.py @@ -8,10 +8,14 @@ from django.db import models from django.utils.translation import ugettext_lazy as _ from django.utils.datastructures import SortedDict import jsonfield +from fnpdjango.utils.text.slughifi import slughifi from catalogue.fields import OverwritingFileField -from catalogue.utils import book_upload_path +def _file_upload_to(i, _n): + return 'book/%(ext)s/%(name)s.%(ext)s' % { + 'ext': i.ext(), 'name': slughifi(i.name)} + class BookMedia(models.Model): """Represents media attached to a book.""" FileFormat = namedtuple("FileFormat", "name ext") @@ -20,14 +24,15 @@ class BookMedia(models.Model): ('ogg', FileFormat(name='Ogg Vorbis', ext='ogg')), ('daisy', FileFormat(name='DAISY', ext='daisy.zip')), ]) - format_choices = [(k, _('%s file') % t.name) + format_choices = [(k, _('%s file' % t.name)) for k, t in formats.items()] - type = models.CharField(_('type'), db_index=True, choices=format_choices, max_length="100") - name = models.CharField(_('name'), max_length=512) - file = OverwritingFileField(_('file'), upload_to=book_upload_path()) + type = models.CharField(_('type'), db_index=True, choices=format_choices, max_length=20) + name = models.CharField(_('name'), max_length=512) + file = OverwritingFileField(_('file'), max_length=600, + upload_to=_file_upload_to) uploaded_at = models.DateTimeField(_('creation date'), auto_now_add=True, editable=False, db_index=True) - extra_info = jsonfield.JSONField(_('extra information'), default={}, editable=False) + extra_info = jsonfield.JSONField(_('extra information'), default={}, editable=False) book = models.ForeignKey('Book', related_name='media') source_sha1 = models.CharField(null=True, blank=True, max_length=40, editable=False) @@ -102,6 +107,9 @@ class BookMedia(models.Model): return {'artist_name': artist_name, 'director_name': director_name, 'project': project, 'funded_by': funded_by} + def ext(self): + return self.formats[self.type].ext + @staticmethod def read_source_sha1(filepath, filetype): """