Skip to content

Commit

Permalink
Merge pull request #183 from Sorixelle/gts-following-401
Browse files Browse the repository at this point in the history
Include access token when fetching user followers/followings
  • Loading branch information
nanos authored Oct 9, 2024
2 parents 0dfac70 + 3f4c87f commit 6a158cf
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 10 deletions.
16 changes: 10 additions & 6 deletions find_posts.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,9 +301,11 @@ def filter_known_users(users, known_users):
users
))

def get_new_followers(server, user_id, max, known_followers):
def get_new_followers(server, user_id, access_token, max, known_followers):
"""Get any new followings for the specified user, up to the max number provided"""
followers = get_paginated_mastodon(f"https://{server}/api/v1/accounts/{user_id}/followers", max)
followers = get_paginated_mastodon(f"https://{server}/api/v1/accounts/{user_id}/followers", max, {
"Authorization": f"Bearer {access_token}",
})

# Remove any we already know about
new_followers = filter_known_users(followers, known_followers)
Expand All @@ -312,9 +314,11 @@ def get_new_followers(server, user_id, max, known_followers):

return new_followers

def get_new_followings(server, user_id, max, known_followings):
def get_new_followings(server, user_id, access_token, max, known_followings):
"""Get any new followings for the specified user, up to the max number provided"""
following = get_paginated_mastodon(f"https://{server}/api/v1/accounts/{user_id}/following", max)
following = get_paginated_mastodon(f"https://{server}/api/v1/accounts/{user_id}/following", max, {
"Authorization": f"Bearer {access_token}",
})

# Remove any we already know about
new_followings = filter_known_users(following, known_followings)
Expand Down Expand Up @@ -1698,13 +1702,13 @@ def fetch_timeline_context(timeline_posts, token, parsed_urls, seen_hosts, seen_
if arguments.max_followings > 0:
logger.info(f"Getting posts from last {arguments.max_followings} followings")
user_id = get_user_id(arguments.server, arguments.user, token)
followings = get_new_followings(arguments.server, user_id, arguments.max_followings, all_known_users)
followings = get_new_followings(arguments.server, user_id, token, arguments.max_followings, all_known_users)
add_user_posts(arguments.server, token, followings, known_followings, all_known_users, seen_urls, seen_hosts)

if arguments.max_followers > 0:
logger.info(f"Getting posts from last {arguments.max_followers} followers")
user_id = get_user_id(arguments.server, arguments.user, token)
followers = get_new_followers(arguments.server, user_id, arguments.max_followers, all_known_users)
followers = get_new_followers(arguments.server, user_id, token, arguments.max_followers, all_known_users)
add_user_posts(arguments.server, token, followers, recently_checked_users, all_known_users, seen_urls, seen_hosts)

if arguments.max_follow_requests > 0:
Expand Down
13 changes: 9 additions & 4 deletions tests/test_find_posts.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,14 +448,17 @@ def test_get_new_followers(

server = "server"
user_id = 1
access_token = "access_token"
max = 50
known_followers = ["follower1"]

expected_result = ["follower2", "follower3"]
result = find_posts.get_new_followers(server, user_id, max, known_followers)
result = find_posts.get_new_followers(server, user_id, access_token, max, known_followers)

mock_get_paginated_mastodon.assert_called_once_with(
f"https://{server}/api/v1/accounts/{user_id}/followers", max
f"https://{server}/api/v1/accounts/{user_id}/followers", max, {
"Authorization": f"Bearer {access_token}",
},
)
mock_filter_known_users.assert_called_once_with(
["follower1", "follower2", "follower3"], known_followers
Expand All @@ -473,9 +476,11 @@ def test_get_new_followings(
):
mock_get_paginated_mastodon.return_value = ["user1", "user2", "user3"]
mock_filter_known_users.return_value = ["user1", "user2"]
result = get_new_followings("server", "100", 5, "known_users")
result = get_new_followings("server", "100", "access_token", 5, "known_users")
mock_get_paginated_mastodon.assert_called_with(
"https://server/api/v1/accounts/100/following", 5
"https://server/api/v1/accounts/100/following", 5, {
"Authorization": "Bearer access_token",
}
)
mock_filter_known_users.assert_called_with(
["user1", "user2", "user3"], "known_users"
Expand Down

0 comments on commit 6a158cf

Please sign in to comment.