This commit is contained in:
j3d1 2023-12-12 22:20:38 +01:00
parent 306fdf50ad
commit cb735e7880
3 changed files with 13 additions and 12 deletions

View file

@ -12,10 +12,10 @@ from files.models import File
@swagger_auto_schema(method='GET', auto_schema=None) @swagger_auto_schema(method='GET', auto_schema=None)
@api_view(['GET']) @api_view(['GET'])
def media_urls(request, hash_path): def media_urls(request, hash):
try: try:
file = File.objects.get(file=hash_path) file = File.objects.get(hash=hash)
hash_path = file.file
return HttpResponse(status=status.HTTP_200_OK, return HttpResponse(status=status.HTTP_200_OK,
content_type=file.mime_type, content_type=file.mime_type,
headers={ headers={
@ -29,16 +29,17 @@ def media_urls(request, hash_path):
@swagger_auto_schema(method='GET', auto_schema=None) @swagger_auto_schema(method='GET', auto_schema=None)
@api_view(['GET']) @api_view(['GET'])
def thumbnail_urls(request, size, hash_path): def thumbnail_urls(request, size, hash):
if size not in [32, 64, 256]: if size not in [32, 64, 256]:
return Response(status=status.HTTP_404_NOT_FOUND) return Response(status=status.HTTP_404_NOT_FOUND)
try: try:
file = File.objects.get(file=hash_path) file = File.objects.get(hash=hash)
hash_path = file.file
if not os.path.exists(MEDIA_ROOT + f'/thumbnails/{size}/{hash_path}'): if not os.path.exists(MEDIA_ROOT + f'/thumbnails/{size}/{hash_path}'):
from PIL import Image from PIL import Image
iamge = Image.open(file.file) image = Image.open(file.file)
iamge.thumbnail((size, size)) image.thumbnail((size, size))
iamge.save(MEDIA_ROOT + f'/media/thumbnails/{size}/{hash_path}', quality=90) image.save(MEDIA_ROOT + f'/media/thumbnails/{size}/{hash_path}', quality=90)
return HttpResponse(status=status.HTTP_200_OK, return HttpResponse(status=status.HTTP_200_OK,
content_type=file.mime_type, content_type=file.mime_type,
@ -52,6 +53,6 @@ def thumbnail_urls(request, size, hash_path):
urlpatterns = [ urlpatterns = [
path('<int:size>/<path:hash_path>/', thumbnail_urls), path('<int:size>/<path:hash>/', thumbnail_urls),
path('<path:hash_path>/', media_urls), path('<path:hash>/', media_urls),
] ]

View file

@ -3,7 +3,7 @@
<template #body> <template #body>
<img <img
class="img-fluid rounded mx-auto d-block mb-3 w-100" class="img-fluid rounded mx-auto d-block mb-3 w-100"
:src="`${baseUrl}/1/images/${file}`" :src="`/media/2/${file}/`"
alt="Image not available." alt="Image not available."
id="lightbox-image" id="lightbox-image"
> >

View file

@ -45,7 +45,7 @@
@itemActivated="openLightboxModalWith($event)" @itemActivated="openLightboxModalWith($event)"
> >
<img <img
:src="`/api/1/thumbs/${item.file}`" :src="`/media/2/200/${item.file}/`"
class="card-img-top img-fluid" class="card-img-top img-fluid"
> >
<div class="card-body"> <div class="card-body">