2019-06-14 11:26:36 +02:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 06:08:45 +01:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-06-14 11:26:36 +02:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-12-01 23:29:41 +01:00
|
|
|
defmodule Pleroma.Object.Containment do
|
|
|
|
@moduledoc """
|
|
|
|
This module contains some useful functions for containing objects to specific
|
|
|
|
origins and determining those origins. They previously lived in the
|
|
|
|
ActivityPub `Transmogrifier` module.
|
|
|
|
|
|
|
|
Object containment is an important step in validating remote objects to prevent
|
|
|
|
spoofing, therefore removal of object containment functions is NOT recommended.
|
|
|
|
"""
|
|
|
|
def get_actor(%{"actor" => actor}) when is_binary(actor) do
|
|
|
|
actor
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_actor(%{"actor" => actor}) when is_list(actor) do
|
|
|
|
if is_binary(Enum.at(actor, 0)) do
|
|
|
|
Enum.at(actor, 0)
|
|
|
|
else
|
|
|
|
Enum.find(actor, fn %{"type" => type} -> type in ["Person", "Service", "Application"] end)
|
|
|
|
|> Map.get("id")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_actor(%{"actor" => %{"id" => id}}) when is_bitstring(id) do
|
|
|
|
id
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_actor(%{"actor" => nil, "attributedTo" => actor}) when not is_nil(actor) do
|
|
|
|
get_actor(%{"actor" => actor})
|
|
|
|
end
|
|
|
|
|
2019-10-16 17:03:21 +02:00
|
|
|
def get_object(%{"object" => id}) when is_binary(id) do
|
|
|
|
id
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_object(%{"object" => %{"id" => id}}) when is_binary(id) do
|
|
|
|
id
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_object(_) do
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2019-10-18 17:34:36 +02:00
|
|
|
# TODO: We explicitly allow 'tag' URIs through, due to references to legacy OStatus
|
|
|
|
# objects being present in the test suite environment. Once these objects are
|
|
|
|
# removed, please also remove this.
|
|
|
|
if Mix.env() == :test do
|
2019-10-18 17:39:15 +02:00
|
|
|
defp compare_uris(_, %URI{scheme: "tag"}), do: :ok
|
2019-10-18 17:34:36 +02:00
|
|
|
end
|
|
|
|
|
2020-02-25 15:34:56 +01:00
|
|
|
defp compare_uris(%URI{host: host} = _id_uri, %URI{host: host} = _other_uri), do: :ok
|
|
|
|
defp compare_uris(_id_uri, _other_uri), do: :error
|
2019-10-18 17:34:36 +02:00
|
|
|
|
2018-12-01 23:29:41 +01:00
|
|
|
@doc """
|
2020-06-18 04:05:42 +02:00
|
|
|
Checks that an imported AP object's actor matches the host it came from.
|
2018-12-01 23:29:41 +01:00
|
|
|
"""
|
2019-04-17 11:22:32 +02:00
|
|
|
def contain_origin(_id, %{"actor" => nil}), do: :error
|
2018-12-01 23:29:41 +01:00
|
|
|
|
2019-04-17 11:22:32 +02:00
|
|
|
def contain_origin(id, %{"actor" => _actor} = params) do
|
2018-12-01 23:29:41 +01:00
|
|
|
id_uri = URI.parse(id)
|
|
|
|
actor_uri = URI.parse(get_actor(params))
|
|
|
|
|
2019-10-18 17:34:36 +02:00
|
|
|
compare_uris(actor_uri, id_uri)
|
2018-12-01 23:29:41 +01:00
|
|
|
end
|
|
|
|
|
2019-07-14 19:47:08 +02:00
|
|
|
def contain_origin(id, %{"attributedTo" => actor} = params),
|
|
|
|
do: contain_origin(id, Map.put(params, "actor", actor))
|
|
|
|
|
2019-11-12 12:07:17 +01:00
|
|
|
def contain_origin(_id, _data), do: :error
|
|
|
|
|
2019-11-08 21:51:28 +01:00
|
|
|
def contain_origin_from_id(id, %{"id" => other_id} = _params) when is_binary(other_id) do
|
2018-12-01 23:29:41 +01:00
|
|
|
id_uri = URI.parse(id)
|
|
|
|
other_uri = URI.parse(other_id)
|
|
|
|
|
2019-10-18 17:34:36 +02:00
|
|
|
compare_uris(id_uri, other_uri)
|
2018-12-01 23:29:41 +01:00
|
|
|
end
|
2019-07-14 19:47:08 +02:00
|
|
|
|
2019-11-08 21:51:28 +01:00
|
|
|
def contain_origin_from_id(_id, _data), do: :error
|
|
|
|
|
2019-07-14 19:47:08 +02:00
|
|
|
def contain_child(%{"object" => %{"id" => id, "attributedTo" => _} = object}),
|
|
|
|
do: contain_origin(id, object)
|
|
|
|
|
|
|
|
def contain_child(_), do: :ok
|
2018-12-01 23:29:41 +01:00
|
|
|
end
|