from fnpdjango.utils.text.slughifi import slughifi
from mutagen import MutagenError
-from catalogue.fields import OverwritingFileField
+from catalogue.fields import OverwriteStorage
def _file_upload_to(i, _n):
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)
+ part_name = models.CharField(_('part name'), default='', blank=True, max_length=512)
+ index = models.IntegerField(_('index'), default=0)
+ file = models.FileField(_('file'), max_length=600, upload_to=_file_upload_to, storage=OverwriteStorage())
uploaded_at = models.DateTimeField(_('creation date'), auto_now_add=True, editable=False, db_index=True)
extra_info = jsonfield.JSONField(_('extra information'), default={}, editable=False)
book = models.ForeignKey('Book', related_name='media')
def save(self, *args, **kwargs):
from catalogue.utils import ExistingFile, remove_zip
+ parts_count = 1 + BookMedia.objects.filter(book=self.book, type=self.type).exclude(pk=self.pk).count()
+ if parts_count == 1:
+ self.name = self.book.pretty_title()
+ else:
+ no = ('%02d' if parts_count < 100 else '%03d') % self.index
+ self.name = '%s. %s' % (no, self.book.pretty_title())
+ if self.part_name:
+ self.name += ', ' + self.part_name
+
try:
old = BookMedia.objects.get(pk=self.pk)
except BookMedia.DoesNotExist:
else:
# if name changed, change the file name, too
if slughifi(self.name) != slughifi(old.name):
- self.file.save(None, ExistingFile(self.file.path), save=False, leave=True)
+ self.file.save(None, ExistingFile(self.file.path), save=False)
super(BookMedia, self).save(*args, **kwargs)
audio = id3.ID3(filepath)
return [t.data for t in audio.getall('PRIV')
if t.owner == 'wolnelektury.pl?flac_sha1'][0]
- except MutagenError:
+ except (MutagenError, IndexError):
return None
elif filetype == 'ogg':
try:
audio = mutagen.File(filepath)
return audio.get('flac_sha1', [None])[0]
- except (MutagenError, AttributeError):
+ except (MutagenError, AttributeError, IndexError):
return None
else:
return None