1 defmodule Pleroma.Object.Containment do
5 This module contains some useful functions for containing objects to specific
6 origins and determining those origins. They previously lived in the
7 ActivityPub `Transmogrifier` module.
9 Object containment is an important step in validating remote objects to prevent
10 spoofing, therefore removal of object containment functions is NOT recommended.
12 def get_actor(%{"actor" => actor}) when is_binary(actor) do
16 def get_actor(%{"actor" => actor}) when is_list(actor) do
17 if is_binary(Enum.at(actor, 0)) do
20 Enum.find(actor, fn %{"type" => type} -> type in ["Person", "Service", "Application"] end)
25 def get_actor(%{"actor" => %{"id" => id}}) when is_bitstring(id) do
29 def get_actor(%{"actor" => nil, "attributedTo" => actor}) when not is_nil(actor) do
30 get_actor(%{"actor" => actor})
34 Checks that an imported AP object's actor matches the domain it came from.
36 def contain_origin(_id, %{"actor" => nil}), do: :error
38 def contain_origin(id, %{"actor" => _actor} = params) do
39 id_uri = URI.parse(id)
40 actor_uri = URI.parse(get_actor(params))
42 if id_uri.host == actor_uri.host do
49 def contain_origin_from_id(_id, %{"id" => nil}), do: :error
51 def contain_origin_from_id(id, %{"id" => other_id} = _params) do
52 id_uri = URI.parse(id)
53 other_uri = URI.parse(other_id)
55 if id_uri.host == other_uri.host do