mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 15:21:01 +00:00
76 lines
2.7 KiB
Python
76 lines
2.7 KiB
Python
from django.utils.decorators import method_decorator
|
|
from django.views.generic import ListView
|
|
|
|
from users.decorators import identity_required
|
|
from users.models import Follow, FollowStates
|
|
|
|
|
|
@method_decorator(identity_required, name="dispatch")
|
|
class Follows(ListView):
|
|
"""
|
|
Shows followers/follows.
|
|
"""
|
|
|
|
template_name = "activities/follows.html"
|
|
extra_context = {
|
|
"section": "follows",
|
|
}
|
|
paginate_by = 50
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
self.inbound = self.request.GET.get("inbound")
|
|
return super().get(request, *args, **kwargs)
|
|
|
|
def get_queryset(self):
|
|
if self.inbound:
|
|
return Follow.objects.filter(
|
|
target=self.request.identity,
|
|
state__in=FollowStates.group_active(),
|
|
).order_by("-created")
|
|
else:
|
|
return Follow.objects.filter(
|
|
source=self.request.identity,
|
|
state__in=FollowStates.group_active(),
|
|
).order_by("-created")
|
|
|
|
def follows_to_identities(self, follows, attr):
|
|
"""
|
|
Turns a list of follows into a list of identities (ith the
|
|
follow creation date preserved on them.
|
|
"""
|
|
result = []
|
|
for follow in follows:
|
|
identity = getattr(follow, attr)
|
|
identity.follow_date = follow.state_changed
|
|
result.append(identity)
|
|
return result
|
|
|
|
def get_context_data(self):
|
|
context = super().get_context_data()
|
|
# Go work out if any of these people also follow us/are followed
|
|
if self.inbound:
|
|
context["page_obj"].object_list = self.follows_to_identities(
|
|
context["page_obj"], "source"
|
|
)
|
|
identity_ids = [identity.id for identity in context["page_obj"]]
|
|
context["outbound_ids"] = Follow.objects.filter(
|
|
source=self.request.identity, target_id__in=identity_ids
|
|
).values_list("target_id", flat=True)
|
|
else:
|
|
context["page_obj"].object_list = self.follows_to_identities(
|
|
context["page_obj"], "target"
|
|
)
|
|
identity_ids = [identity.id for identity in context["page_obj"]]
|
|
context["inbound_ids"] = Follow.objects.filter(
|
|
target=self.request.identity, source_id__in=identity_ids
|
|
).values_list("source_id", flat=True)
|
|
context["inbound"] = self.inbound
|
|
context["num_inbound"] = Follow.objects.filter(
|
|
target=self.request.identity,
|
|
state__in=FollowStates.group_active(),
|
|
).count()
|
|
context["num_outbound"] = Follow.objects.filter(
|
|
source=self.request.identity,
|
|
state__in=FollowStates.group_active(),
|
|
).count()
|
|
return context
|