29 lines
914 B
Python
29 lines
914 B
Python
from django.urls import path
|
|
from drf_yasg.utils import swagger_auto_schema
|
|
from rest_framework import status
|
|
from rest_framework.decorators import api_view
|
|
from rest_framework.response import Response
|
|
|
|
from files.models import File
|
|
|
|
|
|
# TODO check file permissions here
|
|
@swagger_auto_schema(method='GET', auto_schema=None)
|
|
@api_view(['GET'])
|
|
def media_urls(request, id, format=None):
|
|
try:
|
|
file = File.objects.get(file=id)
|
|
return Response(status=status.HTTP_200_OK,
|
|
content_type=file.mime_type,
|
|
headers={
|
|
'X-Accel-Redirect': f'/redirect_media/{id}',
|
|
'Access-Control-Allow-Origin': '*',
|
|
}) # TODO Expires and Cache-Control
|
|
|
|
except File.DoesNotExist:
|
|
return Response(status=status.HTTP_404_NOT_FOUND)
|
|
|
|
|
|
urlpatterns = [
|
|
path('<path:id>', media_urls),
|
|
]
|