takahe/core/views.py

112 lines
3.3 KiB
Python
Raw Normal View History

import markdown_it
2022-11-16 13:53:39 +00:00
from django.http import JsonResponse
2022-12-17 22:30:51 +00:00
from django.shortcuts import redirect
2022-11-16 13:53:39 +00:00
from django.templatetags.static import static
2022-12-05 17:55:30 +00:00
from django.utils.decorators import method_decorator
from django.utils.safestring import mark_safe
2022-11-16 13:53:39 +00:00
from django.views.generic import TemplateView, View
from django.views.static import serve
2022-11-05 20:17:27 +00:00
from activities.services.timeline import TimelineService
2022-11-13 23:14:38 +00:00
from activities.views.timelines import Home
2022-12-05 17:55:30 +00:00
from core.decorators import cache_page
from core.models import Config
2022-11-05 20:17:27 +00:00
def homepage(request):
if request.user.is_authenticated:
return Home.as_view()(request)
else:
return About.as_view()(request)
2022-11-05 20:17:27 +00:00
@method_decorator(cache_page(public_only=True), name="dispatch")
class About(TemplateView):
2022-11-05 20:17:27 +00:00
template_name = "about.html"
2022-11-05 20:17:27 +00:00
def get_context_data(self):
service = TimelineService(self.request.identity)
2022-11-05 20:17:27 +00:00
return {
"current_page": "about",
"content": mark_safe(
markdown_it.MarkdownIt().render(Config.system.site_about)
),
"posts": service.local()[:10],
2022-11-05 20:17:27 +00:00
}
2022-11-16 13:53:39 +00:00
class AppManifest(View):
"""
Serves a PWA manifest file. This is a view as we want to drive some
items from settings.
"""
def get(self, request):
return JsonResponse(
{
"$schema": "https://json.schemastore.org/web-manifest-combined.json",
"name": "Takahē",
"short_name": "Takahē",
"start_url": "/",
"display": "standalone",
"background_color": "#26323c",
"theme_color": "#26323c",
"description": "An ActivityPub server",
"icons": [
{
"src": static("img/icon-128.png"),
"sizes": "128x128",
"type": "image/png",
},
{
"src": static("img/icon-1024.png"),
"sizes": "1024x1024",
"type": "image/png",
},
],
}
)
class FlatPage(TemplateView):
"""
Serves a "flat page" from a config option,
returning 404 if it is empty.
"""
template_name = "flatpage.html"
config_option = None
title = None
2022-12-17 22:30:51 +00:00
def get(self, request, *args, **kwargs):
if self.config_option is None:
raise ValueError("No config option provided")
2022-12-17 22:30:51 +00:00
self.content = getattr(Config.system, self.config_option)
# If the content is a plain URL, then redirect to it instead
if (
"\n" not in self.content
and " " not in self.content
and "://" in self.content
):
return redirect(self.content)
return super().get(request, *args, **kwargs)
def get_context_data(self):
html = markdown_it.MarkdownIt().render(self.content)
return {
"title": self.title,
"content": mark_safe(html),
}
def custom_static_serve(*args, **keywords):
"""
Set the correct `Content-Type` header for static WebP images
since Django cannot guess the MIME type of WebP images.
"""
response = serve(*args, **keywords)
if keywords["path"].endswith(".webp"):
response.headers["Content-Type"] = "image/webp"
return response