1 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
4 from os.path import join
5 from waiter.models import WaitedFile
6 from waiter.settings import WAITER_URL
7 from django.shortcuts import render, get_object_or_404
8 from django.http import HttpResponse
9 from django.views.decorators.cache import never_cache
13 def wait(request, path):
14 if WaitedFile.exists(path):
15 file_url = join(WAITER_URL, path)
19 waiting = get_object_or_404(WaitedFile, path=path)
22 return HttpResponse(file_url)
24 return render(request, "waiter/wait.html", {