Merge pull request #763 from MCV-Software/features/pinned-posts

Mastodon: Loads pinned posts in user timelines and supports announcing when the focused post is pinned
This commit is contained in:
Manuel Cortez 2025-03-08 11:08:16 -06:00 committed by GitHub
commit 921fe631e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 23 additions and 1 deletions

View File

@ -108,13 +108,28 @@ class BaseBuffer(base.Buffer):
min_id = self.session.db[self.name][0].id
else:
min_id = self.session.db[self.name][-1].id
# loads pinned posts from user accounts.
# Load those posts only when there are no items previously loaded.
if "-timeline" in self.name and "account_statuses" in self.function and len(self.session.db.get(self.name, [])) == 0:
pinned_posts = self.session.api.account_statuses(pinned=True, limit=count, *self.args, **self.kwargs)
pinned_posts.reverse()
else:
pinned_posts = None
try:
results = getattr(self.session.api, self.function)(min_id=min_id, limit=count, *self.args, **self.kwargs)
results.reverse()
except Exception as e:
log.exception("Error %s" % (str(e)))
return
if self.session.settings["general"]["reverse_timelines"]:
if pinned_posts != None and len(pinned_posts) > 0:
amount_of_pinned_posts = self.session.order_buffer(self.name, pinned_posts)
number_of_items = self.session.order_buffer(self.name, results)
if self.session.settings["general"]["reverse_timelines"] == False:
if pinned_posts != None and len(pinned_posts) > 0:
amount_of_pinned_posts = self.session.order_buffer(self.name, pinned_posts)
if pinned_posts != None and len(pinned_posts) > 0:
number_of_items = amount_of_pinned_posts+number_of_items
log.debug("Number of items retrieved: %d" % (number_of_items,))
if hasattr(self, "finished_timeline") and self.finished_timeline == False:
if "-timeline" in self.name:

View File

@ -9,7 +9,7 @@ from . import utils, compose
# This will be used for the edit template dialog.
# Available variables for post objects.
# safe_text will be the content warning in case a post contains one, text will always be the full text, no matter if has a content warning or not.
post_variables = ["date", "display_name", "screen_name", "source", "lang", "safe_text", "text", "image_descriptions", "visibility"]
post_variables = ["date", "display_name", "screen_name", "source", "lang", "safe_text", "text", "image_descriptions", "visibility", "pinned"]
person_variables = ["display_name", "screen_name", "description", "followers", "following", "favorites", "posts", "created_at"]
conversation_variables = ["users", "last_post"]
notification_variables = ["display_name", "screen_name", "text", "date"]
@ -57,6 +57,7 @@ def render_post(post, template, settings, relative_times=False, offset_hours=0):
$text: Toot text. This always displays the full text, even if there is a content warning present.
$image_descriptions: Information regarding image descriptions added by twitter users.
$visibility: post's visibility: public, not listed, followers only or direct.
$pinned: Wether the post is pinned or not (if not pinned, this will be blank).
"""
global post_variables
available_data = dict(source="")
@ -88,6 +89,12 @@ def render_post(post, template, settings, relative_times=False, offset_hours=0):
else:
image_descriptions = process_image_descriptions(post.media_attachments)
available_data.update(image_descriptions=image_descriptions)
# Process if the post is pinned
if post.get("pinned", False):
pinned = _("Pinned.")
else:
pinned = ""
available_data.update(pinned=pinned)
result = Template(_(template)).safe_substitute(**available_data)
return result