moviewyrm/bookwyrm/views/rss_feed.py

36 lines
1 KiB
Python
Raw Normal View History

2021-03-08 16:49:10 +00:00
""" serialize user's posts in rss feed """
2021-01-20 22:15:15 +00:00
from django.contrib.syndication.views import Feed
2021-03-23 02:17:46 +00:00
from .helpers import get_user_from_username, privacy_filter
2021-01-20 22:15:15 +00:00
2021-01-29 17:28:00 +00:00
# pylint: disable=no-self-use, unused-argument
2021-01-20 22:15:15 +00:00
class RssFeed(Feed):
2021-04-26 16:15:42 +00:00
"""serialize user's posts in rss feed"""
2021-03-08 16:49:10 +00:00
description_template = "snippets/rss_content.html"
title_template = "snippets/rss_title.html"
2021-01-20 22:15:15 +00:00
def get_object(self, request, username):
2021-04-26 16:15:42 +00:00
"""the user who's posts get serialized"""
return get_user_from_username(request.user, username)
2021-01-20 22:15:15 +00:00
def link(self, obj):
2021-04-26 16:15:42 +00:00
"""link to the user's profile"""
2021-01-20 22:15:15 +00:00
return obj.local_path
def title(self, obj):
2021-04-26 16:15:42 +00:00
"""title of the rss feed entry"""
2021-03-08 16:49:10 +00:00
return f"Status updates from {obj.display_name}"
2021-01-20 22:15:15 +00:00
def items(self, obj):
2021-04-26 16:15:42 +00:00
"""the user's activity feed"""
2021-03-23 02:17:46 +00:00
return privacy_filter(
2021-02-24 20:35:43 +00:00
obj,
2021-03-23 02:17:46 +00:00
obj.status_set.select_subclasses(),
privacy_levels=["public", "unlisted"],
2021-02-24 20:35:43 +00:00
)
2021-01-29 17:28:00 +00:00
2021-01-20 22:15:15 +00:00
def item_link(self, item):
2021-04-26 16:15:42 +00:00
"""link to the status"""
2021-01-20 22:15:15 +00:00
return item.local_path