23 lines
757 B
Python
23 lines
757 B
Python
# This file is part of photo21
|
|
# Copyright (C) 2021-2022 Amicale des élèves de l'ENS Paris-Saclay
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from django.contrib.auth.mixins import LoginRequiredMixin
|
|
from django.http import HttpResponse
|
|
from django.views.generic import ListView, View
|
|
from photologue.models import Gallery
|
|
|
|
|
|
class MediaAccess(LoginRequiredMixin, View):
|
|
def get(self, request, path):
|
|
response = HttpResponse()
|
|
# Content-type will be detected by nginx
|
|
del response["Content-Type"]
|
|
response["X-Accel-Redirect"] = "/protected/media/" + path
|
|
return response
|
|
|
|
|
|
class IndexView(LoginRequiredMixin, ListView):
|
|
queryset = Gallery.objects.all()
|
|
paginate_by = 4
|
|
template_name = "index.html"
|