1 # -*- coding: utf-8 -*-
2 # This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
3 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
5 from os.path import join
6 from waiter.models import WaitedFile
7 from waiter.settings import WAITER_URL
8 from django.shortcuts import render, get_object_or_404
9 from django.http import HttpResponse
10 from django.views.decorators.cache import never_cache
14 def wait(request, path):
15 if WaitedFile.exists(path):
16 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", locals())