backfill any user mentioned in the home timeline
This commit is contained in:
parent
dc0d94a274
commit
5f438ee873
1 changed files with 29 additions and 16 deletions
|
@ -74,6 +74,18 @@ def pull_context(
|
|||
known_context_urls = get_all_known_context_urls(server, timeline_toots,parsed_urls)
|
||||
add_context_urls(server, access_token, known_context_urls, seen_urls)
|
||||
|
||||
# Backfill any mentioned users
|
||||
timeline_toots_with_mentions = list(filter(
|
||||
lambda toot: len(toot['mentions']) > 0,
|
||||
timeline_toots
|
||||
))
|
||||
|
||||
mentioned_users = []
|
||||
for toot in timeline_toots_with_mentions:
|
||||
mentioned_users = mentioned_users + toot['mentions']
|
||||
|
||||
add_user_posts(server, access_token, filter_known_users(mentioned_users, all_known_users), recently_checked_users, all_known_users, seen_urls)
|
||||
|
||||
if max_followings > 0:
|
||||
log(f"Getting posts from last {max_followings} followings")
|
||||
user_id = get_user_id(server, backfill_followings_for_user, access_token)
|
||||
|
@ -126,6 +138,7 @@ def get_bookmarks(server, access_token, max):
|
|||
|
||||
def add_user_posts(server, access_token, followings, know_followings, all_known_users, seen_urls):
|
||||
for user in followings:
|
||||
if user['acct'] not in all_known_users:
|
||||
posts = get_user_posts(user, know_followings, server)
|
||||
|
||||
if(posts != None):
|
||||
|
|
Loading…
Reference in a new issue