forked from mirrors/bookwyrm
231 lines
7.4 KiB
Python
231 lines
7.4 KiB
Python
""" non-interactive pages """
|
|
from django.contrib.auth.decorators import login_required
|
|
from django.core.paginator import Paginator
|
|
from django.db.models import Q
|
|
from django.http import HttpResponseNotFound, Http404
|
|
from django.shortcuts import get_object_or_404
|
|
from django.template.response import TemplateResponse
|
|
from django.utils import timezone
|
|
from django.utils.decorators import method_decorator
|
|
from django.views import View
|
|
|
|
from bookwyrm import activitystreams, forms, models
|
|
from bookwyrm.activitypub import ActivitypubResponse
|
|
from bookwyrm.settings import PAGE_LENGTH, STREAMS
|
|
from bookwyrm.suggested_users import suggested_users
|
|
from .helpers import get_user_from_username
|
|
from .helpers import is_api_request, is_bookwyrm_request
|
|
|
|
|
|
# pylint: disable= no-self-use
|
|
@method_decorator(login_required, name="dispatch")
|
|
class Feed(View):
|
|
"""activity stream"""
|
|
|
|
def get(self, request, tab):
|
|
"""user's homepage with activity feed"""
|
|
tab = [s for s in STREAMS if s["key"] == tab]
|
|
tab = tab[0] if tab else STREAMS[0]
|
|
|
|
activities = activitystreams.streams[tab["key"]].get_activity_stream(
|
|
request.user
|
|
)
|
|
paginated = Paginator(activities, PAGE_LENGTH)
|
|
|
|
suggestions = suggested_users.get_suggestions(request.user)
|
|
|
|
data = {
|
|
**feed_page_data(request.user),
|
|
**{
|
|
"user": request.user,
|
|
"activities": paginated.get_page(request.GET.get("page")),
|
|
"suggested_users": suggestions,
|
|
"tab": tab,
|
|
"streams": STREAMS,
|
|
"goal_form": forms.GoalForm(),
|
|
"path": f"/{tab['key']}",
|
|
},
|
|
}
|
|
return TemplateResponse(request, "feed/feed.html", data)
|
|
|
|
|
|
@method_decorator(login_required, name="dispatch")
|
|
class DirectMessage(View):
|
|
"""dm view"""
|
|
|
|
def get(self, request, username=None):
|
|
"""like a feed but for dms only"""
|
|
# remove fancy subclasses of status, keep just good ol' notes
|
|
activities = (
|
|
models.Status.privacy_filter(request.user, privacy_levels=["direct"])
|
|
.filter(
|
|
review__isnull=True,
|
|
comment__isnull=True,
|
|
quotation__isnull=True,
|
|
generatednote__isnull=True,
|
|
)
|
|
.order_by("-published_date")
|
|
)
|
|
|
|
user = None
|
|
if username:
|
|
try:
|
|
user = get_user_from_username(request.user, username)
|
|
except Http404:
|
|
pass
|
|
if user:
|
|
activities = activities.filter(Q(user=user) | Q(mention_users=user))
|
|
|
|
paginated = Paginator(activities, PAGE_LENGTH)
|
|
data = {
|
|
**feed_page_data(request.user),
|
|
**{
|
|
"user": request.user,
|
|
"partner": user,
|
|
"activities": paginated.get_page(request.GET.get("page")),
|
|
"path": "/direct-messages",
|
|
},
|
|
}
|
|
return TemplateResponse(request, "feed/direct_messages.html", data)
|
|
|
|
|
|
class Status(View):
|
|
"""get posting"""
|
|
|
|
def get(self, request, username, status_id):
|
|
"""display a particular status (and replies, etc)"""
|
|
user = get_user_from_username(request.user, username)
|
|
status = get_object_or_404(
|
|
models.Status.objects.select_subclasses(),
|
|
user=user,
|
|
id=status_id,
|
|
deleted=False,
|
|
)
|
|
# make sure the user is authorized to see the status
|
|
status.raise_visible_to_user(request.user)
|
|
|
|
if is_api_request(request):
|
|
return ActivitypubResponse(
|
|
status.to_activity(pure=not is_bookwyrm_request(request))
|
|
)
|
|
|
|
visible_thread = (
|
|
models.Status.privacy_filter(request.user)
|
|
.filter(thread_id=status.thread_id)
|
|
.values_list("id", flat=True)
|
|
)
|
|
visible_thread = list(visible_thread)
|
|
|
|
ancestors = models.Status.objects.select_subclasses().raw(
|
|
"""
|
|
WITH RECURSIVE get_thread(depth, id, path) AS (
|
|
|
|
SELECT 1, st.id, ARRAY[st.id]
|
|
FROM bookwyrm_status st
|
|
WHERE id = '%s' AND id = ANY(%s)
|
|
|
|
UNION
|
|
|
|
SELECT (gt.depth + 1), st.reply_parent_id, path || st.id
|
|
FROM get_thread gt, bookwyrm_status st
|
|
|
|
WHERE st.id = gt.id AND depth < 5 AND st.id = ANY(%s)
|
|
|
|
)
|
|
|
|
SELECT * FROM get_thread ORDER BY path DESC;
|
|
""",
|
|
params=[status.reply_parent_id or 0, visible_thread, visible_thread],
|
|
)
|
|
children = models.Status.objects.select_subclasses().raw(
|
|
"""
|
|
WITH RECURSIVE get_thread(depth, id, path) AS (
|
|
|
|
SELECT 1, st.id, ARRAY[st.id]
|
|
FROM bookwyrm_status st
|
|
WHERE reply_parent_id = '%s' AND id = ANY(%s)
|
|
|
|
UNION
|
|
|
|
SELECT (gt.depth + 1), st.id, path || st.id
|
|
FROM get_thread gt, bookwyrm_status st
|
|
|
|
WHERE st.reply_parent_id = gt.id AND depth < 5 AND st.id = ANY(%s)
|
|
|
|
)
|
|
|
|
SELECT * FROM get_thread ORDER BY path;
|
|
""",
|
|
params=[status.id, visible_thread, visible_thread],
|
|
)
|
|
|
|
data = {
|
|
**feed_page_data(request.user),
|
|
**{
|
|
"status": status,
|
|
"children": children,
|
|
"ancestors": ancestors,
|
|
},
|
|
}
|
|
return TemplateResponse(request, "feed/status.html", data)
|
|
|
|
|
|
class Replies(View):
|
|
"""replies page (a json view of status)"""
|
|
|
|
def get(self, request, username, status_id):
|
|
"""ordered collection of replies to a status"""
|
|
# the html view is the same as Status
|
|
if not is_api_request(request):
|
|
status_view = Status.as_view()
|
|
return status_view(request, username, status_id)
|
|
|
|
# the json view is different than Status
|
|
status = models.Status.objects.get(id=status_id)
|
|
if status.user.localname != username:
|
|
return HttpResponseNotFound()
|
|
status.raise_visible_to_user(request.user)
|
|
|
|
return ActivitypubResponse(status.to_replies(**request.GET))
|
|
|
|
|
|
def feed_page_data(user):
|
|
"""info we need for every feed page"""
|
|
if not user.is_authenticated:
|
|
return {}
|
|
|
|
goal = models.AnnualGoal.objects.filter(user=user, year=timezone.now().year).first()
|
|
return {
|
|
"suggested_books": get_suggested_books(user),
|
|
"goal": goal,
|
|
"goal_form": forms.GoalForm(),
|
|
}
|
|
|
|
|
|
def get_suggested_books(user, max_books=5):
|
|
"""helper to get a user's recent books"""
|
|
book_count = 0
|
|
preset_shelves = [("reading", max_books), ("read", 2), ("to-read", max_books)]
|
|
suggested_books = []
|
|
for (preset, shelf_max) in preset_shelves:
|
|
limit = (
|
|
shelf_max
|
|
if shelf_max < (max_books - book_count)
|
|
else max_books - book_count
|
|
)
|
|
shelf = user.shelf_set.get(identifier=preset)
|
|
if not shelf.books.exists():
|
|
continue
|
|
|
|
shelf_preview = {
|
|
"name": shelf.name,
|
|
"identifier": shelf.identifier,
|
|
"books": models.Edition.viewer_aware_objects(user)
|
|
.filter(
|
|
shelfbook__shelf=shelf,
|
|
)
|
|
.prefetch_related("authors")[:limit],
|
|
}
|
|
suggested_books.append(shelf_preview)
|
|
book_count += len(shelf_preview["books"])
|
|
return suggested_books
|