summaryrefslogtreecommitdiffstats
path: root/activities/views/timelines.py
blob: 9be988db97e497a0ac3a8c07648d4cfdf1099187 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
from django import forms
from django.shortcuts import redirect
from django.template.defaultfilters import linebreaks_filter
from django.utils.decorators import method_decorator
from django.views.generic import FormView, TemplateView

from activities.models import Post, TimelineEvent
from users.decorators import identity_required


@method_decorator(identity_required, name="dispatch")
class Home(FormView):

    template_name = "activities/home.html"

    class form_class(forms.Form):
        text = forms.CharField(
            widget=forms.Textarea(
                attrs={
                    "placeholder": "What's on your mind?",
                },
            )
        )
        content_warning = forms.CharField(
            required=False,
            widget=forms.TextInput(
                attrs={
                    "placeholder": "Content Warning",
                    "class": "hidden",
                },
            ),
        )

    def get_context_data(self):
        context = super().get_context_data()
        context["events"] = (
            TimelineEvent.objects.filter(
                identity=self.request.identity,
                type__in=[TimelineEvent.Types.post, TimelineEvent.Types.boost],
            )
            .select_related("subject_post", "subject_post__author")
            .order_by("-created")[:100]
        )

        context["current_page"] = "home"
        return context

    def form_valid(self, form):
        Post.create_local(
            author=self.request.identity,
            content=linebreaks_filter(form.cleaned_data["text"]),
            summary=form.cleaned_data.get("content_warning"),
        )
        return redirect(".")


@method_decorator(identity_required, name="dispatch")
class Local(TemplateView):

    template_name = "activities/local.html"

    def get_context_data(self):
        context = super().get_context_data()
        context["posts"] = (
            Post.objects.filter(visibility=Post.Visibilities.public, author__local=True)
            .select_related("author")
            .order_by("-created")[:100]
        )
        context["current_page"] = "local"
        return context


@method_decorator(identity_required, name="dispatch")
class Federated(TemplateView):

    template_name = "activities/federated.html"

    def get_context_data(self):
        context = super().get_context_data()
        context["posts"] = (
            Post.objects.filter(visibility=Post.Visibilities.public)
            .select_related("author")
            .order_by("-created")[:100]
        )
        context["current_page"] = "federated"
        return context


@method_decorator(identity_required, name="dispatch")
class Notifications(TemplateView):

    template_name = "activities/notifications.html"

    def get_context_data(self):
        context = super().get_context_data()
        context["events"] = (
            TimelineEvent.objects.filter(
                identity=self.request.identity,
            )
            .exclude(type__in=[TimelineEvent.Types.post, TimelineEvent.Types.boost])
            .select_related("subject_post", "subject_post__author", "subject_identity")
        )
        context["current_page"] = "notifications"
        return context