mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-04-05 03:12:29 -04:00
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:
commit
921fe631e0
@ -108,13 +108,28 @@ class BaseBuffer(base.Buffer):
|
|||||||
min_id = self.session.db[self.name][0].id
|
min_id = self.session.db[self.name][0].id
|
||||||
else:
|
else:
|
||||||
min_id = self.session.db[self.name][-1].id
|
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:
|
try:
|
||||||
results = getattr(self.session.api, self.function)(min_id=min_id, limit=count, *self.args, **self.kwargs)
|
results = getattr(self.session.api, self.function)(min_id=min_id, limit=count, *self.args, **self.kwargs)
|
||||||
results.reverse()
|
results.reverse()
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
log.exception("Error %s" % (str(e)))
|
log.exception("Error %s" % (str(e)))
|
||||||
return
|
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)
|
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,))
|
log.debug("Number of items retrieved: %d" % (number_of_items,))
|
||||||
if hasattr(self, "finished_timeline") and self.finished_timeline == False:
|
if hasattr(self, "finished_timeline") and self.finished_timeline == False:
|
||||||
if "-timeline" in self.name:
|
if "-timeline" in self.name:
|
||||||
|
@ -9,7 +9,7 @@ from . import utils, compose
|
|||||||
# This will be used for the edit template dialog.
|
# This will be used for the edit template dialog.
|
||||||
# Available variables for post objects.
|
# 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.
|
# 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"]
|
person_variables = ["display_name", "screen_name", "description", "followers", "following", "favorites", "posts", "created_at"]
|
||||||
conversation_variables = ["users", "last_post"]
|
conversation_variables = ["users", "last_post"]
|
||||||
notification_variables = ["display_name", "screen_name", "text", "date"]
|
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.
|
$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.
|
$image_descriptions: Information regarding image descriptions added by twitter users.
|
||||||
$visibility: post's visibility: public, not listed, followers only or direct.
|
$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
|
global post_variables
|
||||||
available_data = dict(source="")
|
available_data = dict(source="")
|
||||||
@ -88,6 +89,12 @@ def render_post(post, template, settings, relative_times=False, offset_hours=0):
|
|||||||
else:
|
else:
|
||||||
image_descriptions = process_image_descriptions(post.media_attachments)
|
image_descriptions = process_image_descriptions(post.media_attachments)
|
||||||
available_data.update(image_descriptions=image_descriptions)
|
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)
|
result = Template(_(template)).safe_substitute(**available_data)
|
||||||
return result
|
return result
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user