forked from AkkomaGang/akkoma
activitypub transmogrifier: send Rejects in the format Mastodon wants
This commit is contained in:
parent
876ad6aa38
commit
f328de8eb7
1 changed files with 20 additions and 0 deletions
|
@ -456,6 +456,26 @@ def prepare_outgoing(%{"type" => "Accept"} = data) do
|
|||
end
|
||||
end
|
||||
|
||||
def prepare_outgoing(%{"type" => "Reject"} = data) do
|
||||
with follow_activity <- Activity.get_by_ap_id(data["object"]) do
|
||||
object = %{
|
||||
"actor" => follow_activity.actor,
|
||||
"object" => follow_activity.data["object"],
|
||||
"id" => follow_activity.data["id"],
|
||||
"type" => "Follow"
|
||||
}
|
||||
|
||||
data =
|
||||
data
|
||||
|> Map.put("object", object)
|
||||
|> Map.put("@context", "https://www.w3.org/ns/activitystreams")
|
||||
|
||||
IO.inspect(data)
|
||||
|
||||
{:ok, data}
|
||||
end
|
||||
end
|
||||
|
||||
def prepare_outgoing(%{"type" => _type} = data) do
|
||||
data =
|
||||
data
|
||||
|
|
Loading…
Reference in a new issue