Skip to content
Snippets Groups Projects
Commit 57549f60 authored by kaniini's avatar kaniini
Browse files

activitypub: utils: update the state of *any* pending follow relationship that...

activitypub: utils: update the state of *any* pending follow relationship that matches the actor and target
parent cbb2b709
Branches
No related tags found
No related merge requests found
......@@ -316,6 +316,25 @@ defmodule Pleroma.Web.ActivityPub.Utils do
@doc """
Updates a follow activity's state (for locked accounts).
"""
def update_follow_state(
%Activity{data: %{"actor" => actor, "object" => object, "state" => "pending"}} = activity,
state
) do
try do
Ecto.Adapters.SQL.query!(
Repo,
"UPDATE activities SET data = jsonb_set(data, '{state}', $1) WHERE data->>'type' = 'Follow' AND data->>'actor' = $2 AND data->>'object' = $3 AND data->>'state' = 'pending'",
[state, actor, object]
)
activity = Repo.get(Activity, activity.id)
{:ok, activity}
rescue
e ->
{:error, e}
end
end
def update_follow_state(%Activity{} = activity, state) do
with new_data <-
activity.data
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment