forked from AkkomaGang/akkoma
federator: do origin containment when processing inbound messages
This commit is contained in:
parent
55640c4804
commit
3d9266a8cb
1 changed files with 3 additions and 0 deletions
|
@ -101,8 +101,11 @@ def handle(:incoming_ap_doc, params) do
|
||||||
|
|
||||||
params = Utils.normalize_params(params)
|
params = Utils.normalize_params(params)
|
||||||
|
|
||||||
|
# NOTE: we use the actor ID to do the containment, this is fine because an
|
||||||
|
# actor shouldn't be acting on objects outside their own AP server.
|
||||||
with {:ok, _user} <- ap_enabled_actor(params["actor"]),
|
with {:ok, _user} <- ap_enabled_actor(params["actor"]),
|
||||||
nil <- Activity.normalize(params["id"]),
|
nil <- Activity.normalize(params["id"]),
|
||||||
|
:ok <- Transmogrifier.contain_origin_from_id(params["actor"], params),
|
||||||
{:ok, _activity} <- Transmogrifier.handle_incoming(params) do
|
{:ok, _activity} <- Transmogrifier.handle_incoming(params) do
|
||||||
else
|
else
|
||||||
%Activity{} ->
|
%Activity{} ->
|
||||||
|
|
Loading…
Reference in a new issue