2022-12-17 00:06:29 +00:00
|
|
|
from django.core.paginator import Paginator
|
2022-11-29 04:41:36 +00:00
|
|
|
from django.shortcuts import get_object_or_404, redirect
|
2022-11-13 23:14:38 +00:00
|
|
|
from django.utils.decorators import method_decorator
|
2022-12-18 16:44:56 +00:00
|
|
|
from django.views.generic import ListView, TemplateView
|
2022-11-13 23:14:38 +00:00
|
|
|
|
2022-12-21 19:47:48 +00:00
|
|
|
from activities.models import Hashtag, PostInteraction, TimelineEvent
|
|
|
|
from activities.services import TimelineService
|
2022-12-06 05:23:07 +00:00
|
|
|
from core.decorators import cache_page
|
2022-11-13 23:14:38 +00:00
|
|
|
from users.decorators import identity_required
|
|
|
|
|
2022-12-11 16:34:44 +00:00
|
|
|
from .compose import Compose
|
|
|
|
|
2022-11-13 23:14:38 +00:00
|
|
|
|
|
|
|
@method_decorator(identity_required, name="dispatch")
|
2022-12-18 16:44:56 +00:00
|
|
|
class Home(TemplateView):
|
2022-11-13 23:14:38 +00:00
|
|
|
|
|
|
|
template_name = "activities/home.html"
|
|
|
|
|
2022-12-11 16:34:44 +00:00
|
|
|
form_class = Compose.form_class
|
2022-11-13 23:14:38 +00:00
|
|
|
|
2022-12-15 22:55:33 +00:00
|
|
|
def get_form(self, form_class=None):
|
|
|
|
return self.form_class(request=self.request, **self.get_form_kwargs())
|
|
|
|
|
2022-11-13 23:14:38 +00:00
|
|
|
def get_context_data(self):
|
2022-12-21 19:47:48 +00:00
|
|
|
events = TimelineService(self.request.identity).home()
|
2022-12-22 01:05:30 +00:00
|
|
|
paginator = Paginator(events, 25)
|
2022-12-17 00:06:29 +00:00
|
|
|
page_number = self.request.GET.get("page")
|
2023-01-04 23:42:57 +00:00
|
|
|
event_page = paginator.get_page(page_number)
|
2022-12-18 16:44:56 +00:00
|
|
|
context = {
|
|
|
|
"interactions": PostInteraction.get_event_interactions(
|
2023-01-04 23:42:57 +00:00
|
|
|
event_page,
|
2022-12-18 16:44:56 +00:00
|
|
|
self.request.identity,
|
|
|
|
),
|
|
|
|
"current_page": "home",
|
|
|
|
"allows_refresh": True,
|
2023-01-04 23:42:57 +00:00
|
|
|
"page_obj": event_page,
|
2022-12-18 16:44:56 +00:00
|
|
|
"form": self.form_class(request=self.request),
|
|
|
|
}
|
2022-11-13 23:14:38 +00:00
|
|
|
return context
|
|
|
|
|
|
|
|
|
2022-12-05 17:55:30 +00:00
|
|
|
@method_decorator(
|
2022-12-06 05:23:07 +00:00
|
|
|
cache_page("cache_timeout_page_timeline", public_only=True), name="dispatch"
|
2022-12-05 17:55:30 +00:00
|
|
|
)
|
2022-11-29 04:41:36 +00:00
|
|
|
class Tag(ListView):
|
|
|
|
|
|
|
|
template_name = "activities/tag.html"
|
|
|
|
extra_context = {
|
|
|
|
"current_page": "tag",
|
|
|
|
"allows_refresh": True,
|
|
|
|
}
|
2022-12-22 01:05:30 +00:00
|
|
|
paginate_by = 25
|
2022-11-29 04:41:36 +00:00
|
|
|
|
|
|
|
def get(self, request, hashtag, *args, **kwargs):
|
|
|
|
tag = hashtag.lower().lstrip("#")
|
|
|
|
if hashtag != tag:
|
|
|
|
# SEO sanitize
|
|
|
|
return redirect(f"/tags/{tag}/", permanent=True)
|
|
|
|
self.hashtag = get_object_or_404(Hashtag.objects.public(), hashtag=tag)
|
|
|
|
return super().get(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def get_queryset(self):
|
2022-12-21 19:47:48 +00:00
|
|
|
return TimelineService(self.request.identity).hashtag(self.hashtag)
|
2022-11-29 04:41:36 +00:00
|
|
|
|
|
|
|
def get_context_data(self):
|
|
|
|
context = super().get_context_data()
|
|
|
|
context["hashtag"] = self.hashtag
|
|
|
|
context["interactions"] = PostInteraction.get_post_interactions(
|
|
|
|
context["page_obj"], self.request.identity
|
|
|
|
)
|
|
|
|
return context
|
|
|
|
|
|
|
|
|
2022-12-05 17:55:30 +00:00
|
|
|
@method_decorator(
|
2022-12-06 05:23:07 +00:00
|
|
|
cache_page("cache_timeout_page_timeline", public_only=True), name="dispatch"
|
2022-12-05 17:55:30 +00:00
|
|
|
)
|
2022-11-22 15:57:40 +00:00
|
|
|
class Local(ListView):
|
2022-11-14 01:42:47 +00:00
|
|
|
|
|
|
|
template_name = "activities/local.html"
|
2022-11-23 02:21:01 +00:00
|
|
|
extra_context = {
|
|
|
|
"current_page": "local",
|
|
|
|
"allows_refresh": True,
|
|
|
|
}
|
2022-12-22 01:05:30 +00:00
|
|
|
paginate_by = 25
|
2022-11-14 01:42:47 +00:00
|
|
|
|
2022-11-22 15:57:40 +00:00
|
|
|
def get_queryset(self):
|
2022-12-21 19:47:48 +00:00
|
|
|
return TimelineService(self.request.identity).local()
|
2022-11-14 01:42:47 +00:00
|
|
|
|
2022-11-23 02:58:42 +00:00
|
|
|
def get_context_data(self):
|
|
|
|
context = super().get_context_data()
|
|
|
|
context["interactions"] = PostInteraction.get_post_interactions(
|
|
|
|
context["page_obj"], self.request.identity
|
|
|
|
)
|
|
|
|
return context
|
|
|
|
|
2022-11-14 01:42:47 +00:00
|
|
|
|
2022-11-13 23:14:38 +00:00
|
|
|
@method_decorator(identity_required, name="dispatch")
|
2022-11-22 15:57:40 +00:00
|
|
|
class Federated(ListView):
|
2022-11-13 23:14:38 +00:00
|
|
|
|
|
|
|
template_name = "activities/federated.html"
|
2022-11-23 02:21:01 +00:00
|
|
|
extra_context = {
|
|
|
|
"current_page": "federated",
|
|
|
|
"allows_refresh": True,
|
|
|
|
}
|
2022-12-22 01:05:30 +00:00
|
|
|
paginate_by = 25
|
2022-11-13 23:14:38 +00:00
|
|
|
|
2022-11-22 15:57:40 +00:00
|
|
|
def get_queryset(self):
|
2022-12-21 19:47:48 +00:00
|
|
|
return TimelineService(self.request.identity).federated()
|
2022-11-14 01:42:47 +00:00
|
|
|
|
2022-11-23 02:58:42 +00:00
|
|
|
def get_context_data(self):
|
|
|
|
context = super().get_context_data()
|
|
|
|
context["interactions"] = PostInteraction.get_post_interactions(
|
|
|
|
context["page_obj"], self.request.identity
|
|
|
|
)
|
|
|
|
return context
|
|
|
|
|
2022-11-14 01:42:47 +00:00
|
|
|
|
|
|
|
@method_decorator(identity_required, name="dispatch")
|
2022-11-22 15:57:40 +00:00
|
|
|
class Notifications(ListView):
|
2022-11-14 01:42:47 +00:00
|
|
|
|
|
|
|
template_name = "activities/notifications.html"
|
2022-11-23 02:21:01 +00:00
|
|
|
extra_context = {
|
|
|
|
"current_page": "notifications",
|
|
|
|
"allows_refresh": True,
|
|
|
|
}
|
2022-12-22 01:05:30 +00:00
|
|
|
paginate_by = 25
|
2022-12-06 05:14:50 +00:00
|
|
|
notification_types = {
|
|
|
|
"followed": TimelineEvent.Types.followed,
|
|
|
|
"boosted": TimelineEvent.Types.boosted,
|
|
|
|
"mentioned": TimelineEvent.Types.mentioned,
|
|
|
|
"liked": TimelineEvent.Types.liked,
|
2023-01-15 21:48:17 +00:00
|
|
|
"identity_created": TimelineEvent.Types.identity_created,
|
2022-12-06 05:14:50 +00:00
|
|
|
}
|
2022-11-14 01:42:47 +00:00
|
|
|
|
2022-11-22 15:57:40 +00:00
|
|
|
def get_queryset(self):
|
2022-12-06 05:14:50 +00:00
|
|
|
# Did they ask to change options?
|
|
|
|
notification_options = self.request.session.get("notification_options", {})
|
|
|
|
for type_name in self.notification_types:
|
|
|
|
notification_options.setdefault(type_name, True)
|
|
|
|
if self.request.GET.get(type_name) == "true":
|
|
|
|
notification_options[type_name] = True
|
|
|
|
elif self.request.GET.get(type_name) == "false":
|
|
|
|
notification_options[type_name] = False
|
|
|
|
self.request.session["notification_options"] = notification_options
|
|
|
|
# Return appropriate events
|
|
|
|
types = []
|
|
|
|
for type_name, type in self.notification_types.items():
|
|
|
|
if notification_options.get(type_name, True):
|
|
|
|
types.append(type)
|
2022-12-21 19:47:48 +00:00
|
|
|
return TimelineService(self.request.identity).notifications(types)
|
2022-11-29 05:42:40 +00:00
|
|
|
|
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super().get_context_data(**kwargs)
|
|
|
|
# Collapse similar notifications into one
|
|
|
|
events = []
|
|
|
|
for event in context["page_obj"]:
|
|
|
|
if (
|
|
|
|
events
|
|
|
|
and event.type
|
|
|
|
in [
|
|
|
|
TimelineEvent.Types.liked,
|
|
|
|
TimelineEvent.Types.boosted,
|
|
|
|
TimelineEvent.Types.mentioned,
|
|
|
|
]
|
|
|
|
and event.subject_post_id == events[-1].subject_post_id
|
|
|
|
):
|
|
|
|
events[-1].collapsed = True
|
|
|
|
events.append(event)
|
2022-12-06 05:14:50 +00:00
|
|
|
# Retrieve what kinds of things to show
|
2022-11-29 05:42:40 +00:00
|
|
|
context["events"] = events
|
2022-12-06 05:14:50 +00:00
|
|
|
context["notification_options"] = self.request.session["notification_options"]
|
2022-12-09 05:58:58 +00:00
|
|
|
context["interactions"] = PostInteraction.get_event_interactions(
|
|
|
|
context["page_obj"],
|
|
|
|
self.request.identity,
|
|
|
|
)
|
2022-11-29 05:42:40 +00:00
|
|
|
return context
|