X-Git-Url: https://git.mdrn.pl/audio.git/blobdiff_plain/643076d4e5abfd6b870be867fe4ba9965437d0ed..0678dd50bd89ef1ad0f0d95c1e7907e31187a0d3:/src/archive/models.py diff --git a/src/archive/models.py b/src/archive/models.py index 34fc1f4..d8b85ad 100644 --- a/src/archive/models.py +++ b/src/archive/models.py @@ -3,13 +3,20 @@ import os.path from django.db import models from time import sleep +from django.utils.functional import cached_property from django.utils.translation import gettext_lazy as _ from django_pglocks import advisory_lock +import requests from archive.constants import status -from archive.settings import FILES_SAVE_PATH, ADVERT, LICENSE, ORGANIZATION, PROJECT +from archive.settings import FILES_SAVE_PATH, ADVERT, ORGANIZATION, PROJECT from archive.utils import OverwriteStorage, sha1_file +class License(models.Model): + uri = models.CharField(max_length=255, unique=True) + name = models.CharField(max_length=255) + + class Project(models.Model): """ an audiobook project, needed for specyfing sponsors """ @@ -66,6 +73,7 @@ class Audiobook(models.Model): url = models.URLField(max_length=255, verbose_name=_('book url')) translator = models.CharField(max_length=255, null=True, blank=True, verbose_name=_('translator')) modified = models.DateTimeField(null=True, editable=False) + license = models.ForeignKey(License, models.PROTECT, null=True, blank=True, verbose_name=_('license')) # publishing process mp3_status = models.SmallIntegerField(null=True, editable=False, choices=status.choices) @@ -85,7 +93,6 @@ class Audiobook(models.Model): youtube_status = models.SmallIntegerField(null=True, editable=False, choices=status.choices) youtube_task = models.CharField(max_length=64, null=True, editable=False) youtube_tags = models.TextField(null=True, editable=False) - youtube_file = models.FileField(null=True, upload_to='archive/final', storage=OverwriteStorage(), editable=False) youtube_published_tags = models.TextField(null=True, editable=False) youtube_published = models.DateTimeField(null=True, editable=False) youtube_id = models.CharField(max_length=255, blank=True, default='') @@ -123,7 +130,7 @@ class Audiobook(models.Model): title += ' (tłum. %s)' % self.translator copyright = "%s %s. Licensed to the public under %s verify at %s" % ( - self.date, ORGANIZATION, LICENSE, self.url) + self.date, ORGANIZATION, self.license.uri, self.url) comment = "\n".join(( self.project.get_description(), @@ -141,7 +148,7 @@ class Audiobook(models.Model): 'date': self.date, 'genre': 'Speech', 'language': 'pol', - 'license': LICENSE, + 'license': self.license.uri, 'organization': ORGANIZATION, 'title': title, 'project': self.project.name, @@ -153,3 +160,9 @@ class Audiobook(models.Model): tags['flac_sha1'] = self.source_sha1 return tags + @cached_property + def book(self): + slug = self.url.rstrip('/').rsplit('/', 1)[-1] + apidata = requests.get(f'https://wolnelektury.pl/api/books/{slug}/').json() + return apidata +