2020-12-06 01:22:16 +00:00
|
|
|
'''
|
|
|
|
Start, stop and manage scheduled tasks. These are generally triggered by Django
|
|
|
|
signals (see signals.py).
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
import json
|
2020-12-06 07:33:48 +00:00
|
|
|
import math
|
2020-12-06 01:22:16 +00:00
|
|
|
from io import BytesIO
|
2020-12-06 07:33:48 +00:00
|
|
|
from PIL import Image
|
2020-12-06 01:22:16 +00:00
|
|
|
from django.conf import settings
|
|
|
|
from django.core.files.uploadedfile import SimpleUploadedFile
|
2020-12-06 07:33:48 +00:00
|
|
|
from django.utils import timezone
|
2020-12-07 04:39:58 +00:00
|
|
|
from django.db.utils import IntegrityError
|
2020-12-06 01:22:16 +00:00
|
|
|
from background_task import background
|
|
|
|
from background_task.models import Task
|
2020-12-06 02:48:10 +00:00
|
|
|
from common.logger import log
|
2020-12-06 01:22:16 +00:00
|
|
|
from .models import Source, Media
|
2020-12-06 08:10:00 +00:00
|
|
|
from .utils import get_remote_image, resize_image_to_height
|
2020-12-06 01:22:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
def delete_index_source_task(source_id):
|
|
|
|
task = None
|
|
|
|
try:
|
|
|
|
# get_task currently returns a QuerySet, but catch DoesNotExist just in case
|
|
|
|
task = Task.objects.get_task('sync.tasks.index_source_task', args=(source_id,))
|
|
|
|
except Task.DoesNotExist:
|
|
|
|
pass
|
|
|
|
if task:
|
|
|
|
# A scheduled task exists for this Source, delete it
|
2020-12-06 02:48:10 +00:00
|
|
|
log.info(f'Deleting Source index task: {task}')
|
2020-12-06 01:22:16 +00:00
|
|
|
task.delete()
|
|
|
|
|
|
|
|
|
|
|
|
@background(schedule=0)
|
|
|
|
def index_source_task(source_id):
|
|
|
|
'''
|
|
|
|
Indexes media available from a Source object.
|
|
|
|
'''
|
|
|
|
try:
|
|
|
|
source = Source.objects.get(pk=source_id)
|
|
|
|
except Source.DoesNotExist:
|
|
|
|
# Task triggered but the Source has been deleted, delete the task
|
|
|
|
delete_index_source_task(source_id)
|
|
|
|
return
|
|
|
|
videos = source.index_media()
|
|
|
|
for video in videos:
|
|
|
|
# Create or update each video as a Media object
|
|
|
|
key = video.get(source.key_field, None)
|
|
|
|
if not key:
|
|
|
|
# Video has no unique key (ID), it can't be indexed
|
|
|
|
continue
|
|
|
|
try:
|
|
|
|
media = Media.objects.get(key=key)
|
|
|
|
except Media.DoesNotExist:
|
|
|
|
media = Media(key=key)
|
|
|
|
media.source = source
|
|
|
|
media.metadata = json.dumps(video)
|
2020-12-06 07:33:48 +00:00
|
|
|
upload_date = media.upload_date
|
|
|
|
if upload_date:
|
2020-12-06 08:10:00 +00:00
|
|
|
media.published = timezone.make_aware(upload_date)
|
2020-12-07 04:39:58 +00:00
|
|
|
try:
|
|
|
|
media.save()
|
|
|
|
log.info(f'Indexed media: {source} / {media}')
|
|
|
|
except IntegrityError as e:
|
|
|
|
log.error(f'Index media failed: {source} / {media} with "{e}"')
|
2020-12-06 01:22:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
@background(schedule=0)
|
|
|
|
def download_media_thumbnail(media_id, url):
|
|
|
|
'''
|
|
|
|
Downloads an image from a URL and saves it as a local thumbnail attached to a
|
|
|
|
Media object.
|
|
|
|
'''
|
|
|
|
try:
|
|
|
|
media = Media.objects.get(pk=media_id)
|
|
|
|
except Media.DoesNotExist:
|
|
|
|
# Task triggered but the media no longer exists, ignore task
|
|
|
|
return
|
2020-12-06 08:10:00 +00:00
|
|
|
width = getattr(settings, 'MEDIA_THUMBNAIL_WIDTH', 430)
|
|
|
|
height = getattr(settings, 'MEDIA_THUMBNAIL_HEIGHT', 240)
|
2020-12-06 01:22:16 +00:00
|
|
|
i = get_remote_image(url)
|
2020-12-06 07:33:48 +00:00
|
|
|
log.info(f'Resizing {i.width}x{i.height} thumbnail to '
|
2020-12-06 08:10:00 +00:00
|
|
|
f'{width}x{height}: {url}')
|
|
|
|
i = resize_image_to_height(i, width, height)
|
2020-12-06 01:22:16 +00:00
|
|
|
image_file = BytesIO()
|
|
|
|
i.save(image_file, 'JPEG', quality=80, optimize=True, progressive=True)
|
|
|
|
image_file.seek(0)
|
|
|
|
media.thumb.save(
|
|
|
|
'thumb',
|
|
|
|
SimpleUploadedFile(
|
|
|
|
'thumb',
|
|
|
|
image_file.read(),
|
|
|
|
'image/jpeg',
|
|
|
|
),
|
|
|
|
save=True
|
|
|
|
)
|
2020-12-06 02:48:10 +00:00
|
|
|
log.info(f'Saved thumbnail for: {media} from: {url}')
|
2020-12-06 01:22:16 +00:00
|
|
|
return True
|