blob: fe39a98cc23ea852cb27d37731cb6c2003fc3395 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
from pathlib import Path
from django.conf import settings
from django.core.handlers.wsgi import WSGIRequest
from django.http import Http404, HttpResponse
from django.template import Context, Template
from django.views import View
PAGES_PATH = Path(settings.BASE_DIR, "pydis_site", "apps", "events", "pages")
class PageView(View):
"""Handles event pages showing."""
def get(self, request: WSGIRequest, path: str) -> HttpResponse:
"""Render event page rendering based on path."""
# We need to get rid from trailing slash when path have this
if path.endswith("/"):
path = path[:-1]
page_path = PAGES_PATH.joinpath(path)
if page_path.exists() and page_path.is_dir():
page_path = page_path.joinpath("_index.html")
else:
page_path = PAGES_PATH.joinpath(f"{path}.html")
if not page_path.exists():
raise Http404
template = Template(page_path.read_text())
return HttpResponse(template.render(Context()))
|