From 3d7d1142d38d647796a5ca1b241a01774b710073 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Sat, 8 Mar 2025 01:15:34 -0600 Subject: [PATCH] Attempt to load pinned posts when loading a timeline for an user --- src/controller/buffers/mastodon/base.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/controller/buffers/mastodon/base.py b/src/controller/buffers/mastodon/base.py index 8c7f0b3f..667e87f5 100644 --- a/src/controller/buffers/mastodon/base.py +++ b/src/controller/buffers/mastodon/base.py @@ -108,13 +108,24 @@ 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 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 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: