forked from AkkomaGang/akkoma
activitypub transmogrifier: use fetch_latest_follow to verify a follow object exists
This commit is contained in:
parent
7cf3cf77cf
commit
7e873756e7
1 changed files with 8 additions and 0 deletions
|
@ -171,12 +171,16 @@ def handle_incoming(
|
|||
with %User{} = followed <- User.get_or_fetch_by_ap_id(actor),
|
||||
{:ok, follow_activity} <- get_follow_activity(follow_object),
|
||||
%User{local: true} = follower <- User.get_cached_by_ap_id(follow_activity["actor"]),
|
||||
follow_activity <- Utils.fetch_latest_follow(follower, followed),
|
||||
false <- is_nil(follow_activity),
|
||||
{:ok, activity} <- ActivityPub.insert(data, true) do
|
||||
if not User.following?(follower, followed) do
|
||||
{:ok, follower} = User.follow(follower, followed)
|
||||
end
|
||||
|
||||
{:ok, activity}
|
||||
else
|
||||
_e -> :error
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -186,10 +190,14 @@ def handle_incoming(
|
|||
with %User{} = followed <- User.get_or_fetch_by_ap_id(actor),
|
||||
{:ok, follow_activity} <- get_follow_activity(follow_object),
|
||||
%User{local: true} = follower <- User.get_cached_by_ap_id(follow_activity["actor"]),
|
||||
follow_activity <- Utils.fetch_latest_follow(follower, followed),
|
||||
false <- is_nil(follow_activity),
|
||||
{:ok, activity} <- ActivityPub.insert(data, true) do
|
||||
User.unfollow(follower, followed)
|
||||
|
||||
{:ok, activity}
|
||||
else
|
||||
_e -> :error
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue