takahe/activities/views/posts.py

244 lines
8.1 KiB
Python
Raw Normal View History

2022-11-16 13:53:39 +00:00
from django import forms
2022-11-25 05:31:45 +00:00
from django.http import JsonResponse
from django.shortcuts import get_object_or_404, redirect, render
from django.utils.decorators import method_decorator
2022-11-16 13:53:39 +00:00
from django.views.generic import FormView, TemplateView, View
from activities.models import (
Post,
PostInteraction,
PostInteractionStates,
2022-11-25 05:31:45 +00:00
PostStates,
TimelineEvent,
)
2022-11-25 05:31:45 +00:00
from core.ld import canonicalise
2022-11-18 01:52:00 +00:00
from core.models import Config
from users.decorators import identity_required
from users.shortcuts import by_handle_or_404
2022-11-16 13:53:39 +00:00
class Individual(TemplateView):
template_name = "activities/post.html"
2022-11-25 05:31:45 +00:00
def get(self, request, handle, post_id):
self.identity = by_handle_or_404(self.request, handle, local=False)
self.post_obj = get_object_or_404(self.identity.posts, pk=post_id)
# If they're coming in looking for JSON, they want the actor
accept = request.META.get("HTTP_ACCEPT", "text/html").lower()
if (
"application/json" in accept
or "application/ld" in accept
or "application/activity" in accept
):
# Return post JSON
return self.serve_object()
else:
# Show normal page
return super().get(request)
def get_context_data(self):
return {
2022-11-25 05:31:45 +00:00
"identity": self.identity,
"post": self.post_obj,
"interactions": PostInteraction.get_post_interactions(
2022-11-25 05:31:45 +00:00
[self.post_obj],
self.request.identity,
),
}
2022-11-25 05:31:45 +00:00
def serve_object(self):
# If this not a local post, redirect to its canonical URI
if not self.post_obj.local:
return redirect(self.post_obj.object_uri)
return JsonResponse(canonicalise(self.post_obj.to_ap(), include_security=True))
@method_decorator(identity_required, name="dispatch")
class Like(View):
"""
Adds/removes a like from the current identity to the post
"""
undo = False
def post(self, request, handle, post_id):
identity = by_handle_or_404(self.request, handle, local=False)
2022-11-17 06:00:10 +00:00
post = get_object_or_404(
identity.posts.prefetch_related("attachments"), pk=post_id
)
if self.undo:
# Undo any likes on the post
for interaction in PostInteraction.objects.filter(
type=PostInteraction.Types.like,
identity=request.identity,
post=post,
):
interaction.transition_perform(PostInteractionStates.undone)
else:
# Make a like on this post if we didn't already
PostInteraction.objects.get_or_create(
type=PostInteraction.Types.like,
identity=request.identity,
post=post,
)
# Return either a redirect or a HTMX snippet
if request.htmx:
return render(
request,
"activities/_like.html",
{
"post": post,
"interactions": {"like": set() if self.undo else {post.pk}},
},
)
return redirect(post.urls.view)
@method_decorator(identity_required, name="dispatch")
class Boost(View):
"""
Adds/removes a boost from the current identity to the post
"""
undo = False
def post(self, request, handle, post_id):
identity = by_handle_or_404(self.request, handle, local=False)
post = get_object_or_404(identity.posts, pk=post_id)
if self.undo:
# Undo any boosts on the post
for interaction in PostInteraction.objects.filter(
type=PostInteraction.Types.boost,
identity=request.identity,
post=post,
):
interaction.transition_perform(PostInteractionStates.undone)
else:
# Make a boost on this post if we didn't already
PostInteraction.objects.get_or_create(
type=PostInteraction.Types.boost,
identity=request.identity,
post=post,
)
# Return either a redirect or a HTMX snippet
if request.htmx:
return render(
request,
"activities/_boost.html",
{
"post": post,
"interactions": {"boost": set() if self.undo else {post.pk}},
},
)
return redirect(post.urls.view)
2022-11-16 13:53:39 +00:00
2022-11-25 05:31:45 +00:00
@method_decorator(identity_required, name="dispatch")
class Delete(TemplateView):
"""
Deletes a post
"""
template_name = "activities/post_delete.html"
def dispatch(self, request, handle, post_id):
self.identity = by_handle_or_404(self.request, handle, local=False)
self.post_obj = get_object_or_404(self.identity.posts, pk=post_id)
return super().dispatch(request)
def get_context_data(self):
return {"post": self.post_obj}
def post(self, request):
self.post_obj.transition_perform(PostStates.deleted)
return redirect("/")
2022-11-16 13:53:39 +00:00
@method_decorator(identity_required, name="dispatch")
class Compose(FormView):
template_name = "activities/compose.html"
class form_class(forms.Form):
2022-11-18 01:52:00 +00:00
2022-11-16 13:53:39 +00:00
text = forms.CharField(
widget=forms.Textarea(
attrs={
"placeholder": "What's on your mind?",
},
)
)
visibility = forms.ChoiceField(
choices=[
(Post.Visibilities.public, "Public"),
(Post.Visibilities.unlisted, "Unlisted"),
(Post.Visibilities.followers, "Followers & Mentioned Only"),
(Post.Visibilities.mentioned, "Mentioned Only"),
],
)
content_warning = forms.CharField(
required=False,
label=Config.lazy_system_value("content_warning_text"),
2022-11-16 13:53:39 +00:00
widget=forms.TextInput(
attrs={
"placeholder": Config.lazy_system_value("content_warning_text"),
2022-11-16 13:53:39 +00:00
},
),
help_text="Optional - Post will be hidden behind this text until clicked",
)
2022-11-24 22:17:32 +00:00
reply_to = forms.CharField(widget=forms.HiddenInput(), required=False)
2022-11-16 13:53:39 +00:00
2022-11-18 01:52:00 +00:00
def clean_text(self):
text = self.cleaned_data.get("text")
if not text:
return text
length = len(text)
if length > Config.system.post_length:
raise forms.ValidationError(
f"Maximum post length is {Config.system.post_length} characters (you have {length})"
)
return text
2022-11-24 22:17:32 +00:00
def get_initial(self):
initial = super().get_initial()
2022-11-26 02:33:46 +00:00
initial[
"visibility"
] = self.request.identity.config_identity.default_post_visibility
2022-11-24 22:17:32 +00:00
if self.reply_to:
initial["reply_to"] = self.reply_to.pk
initial["visibility"] = Post.Visibilities.unlisted
initial["text"] = f"@{self.reply_to.author.handle} "
return initial
2022-11-18 01:52:00 +00:00
2022-11-16 13:53:39 +00:00
def form_valid(self, form):
post = Post.create_local(
2022-11-16 13:53:39 +00:00
author=self.request.identity,
content=form.cleaned_data["text"],
2022-11-16 13:53:39 +00:00
summary=form.cleaned_data.get("content_warning"),
visibility=form.cleaned_data["visibility"],
2022-11-24 22:17:32 +00:00
reply_to=self.reply_to,
2022-11-16 13:53:39 +00:00
)
# Add their own timeline event for immediate visibility
TimelineEvent.add_post(self.request.identity, post)
2022-11-16 13:53:39 +00:00
return redirect("/")
2022-11-24 22:17:32 +00:00
def dispatch(self, request, *args, **kwargs):
# Grab the reply-to post info now
self.reply_to = None
reply_to_id = self.request.POST.get("reply_to") or self.request.GET.get(
"reply_to"
)
if reply_to_id:
try:
self.reply_to = Post.objects.get(pk=reply_to_id)
except Post.DoesNotExist:
pass
# Keep going with normal rendering
return super().dispatch(request, *args, **kwargs)
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
context["reply_to"] = self.reply_to
return context