2019-07-10 07:13:23 +02:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 07:49:20 +01:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-07-10 07:13:23 +02:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-12-01 23:53:10 +01:00
|
|
|
defmodule Pleroma.Object.Fetcher do
|
2019-05-25 06:24:21 +02:00
|
|
|
alias Pleroma.HTTP
|
2020-09-15 17:22:08 +02:00
|
|
|
alias Pleroma.Maps
|
2019-04-17 11:22:32 +02:00
|
|
|
alias Pleroma.Object
|
2018-12-01 23:53:10 +01:00
|
|
|
alias Pleroma.Object.Containment
|
2019-09-18 17:13:21 +02:00
|
|
|
alias Pleroma.Repo
|
2019-07-18 00:41:42 +02:00
|
|
|
alias Pleroma.Signature
|
|
|
|
alias Pleroma.Web.ActivityPub.InternalFetchActor
|
2020-06-14 22:01:14 +02:00
|
|
|
alias Pleroma.Web.ActivityPub.ObjectValidator
|
2018-12-01 23:53:10 +01:00
|
|
|
alias Pleroma.Web.ActivityPub.Transmogrifier
|
2020-02-15 18:41:38 +01:00
|
|
|
alias Pleroma.Web.Federator
|
2018-12-01 23:53:10 +01:00
|
|
|
|
|
|
|
require Logger
|
2019-09-18 18:53:51 +02:00
|
|
|
require Pleroma.Constants
|
2018-12-01 23:53:10 +01:00
|
|
|
|
2019-09-18 18:07:25 +02:00
|
|
|
defp touch_changeset(changeset) do
|
|
|
|
updated_at =
|
|
|
|
NaiveDateTime.utc_now()
|
|
|
|
|> NaiveDateTime.truncate(:second)
|
|
|
|
|
|
|
|
Ecto.Changeset.put_change(changeset, :updated_at, updated_at)
|
|
|
|
end
|
|
|
|
|
2020-06-14 22:24:00 +02:00
|
|
|
defp maybe_reinject_internal_fields(%{data: %{} = old_data}, new_data) do
|
2019-09-18 18:53:51 +02:00
|
|
|
internal_fields = Map.take(old_data, Pleroma.Constants.object_internal_fields())
|
|
|
|
|
2020-06-14 22:24:00 +02:00
|
|
|
Map.merge(new_data, internal_fields)
|
2019-09-18 18:53:51 +02:00
|
|
|
end
|
|
|
|
|
2020-06-14 22:24:00 +02:00
|
|
|
defp maybe_reinject_internal_fields(_, new_data), do: new_data
|
2019-09-18 18:53:51 +02:00
|
|
|
|
2019-09-19 06:35:34 +02:00
|
|
|
@spec reinject_object(struct(), map()) :: {:ok, Object.t()} | {:error, any()}
|
2020-06-14 22:01:14 +02:00
|
|
|
defp reinject_object(%Object{data: %{"type" => "Question"}} = object, new_data) do
|
|
|
|
Logger.debug("Reinjecting object #{new_data["id"]}")
|
|
|
|
|
2020-08-25 02:21:19 +02:00
|
|
|
with data <- maybe_reinject_internal_fields(object, new_data),
|
2020-06-14 22:01:14 +02:00
|
|
|
{:ok, data, _} <- ObjectValidator.validate(data, %{}),
|
|
|
|
changeset <- Object.change(object, %{data: data}),
|
|
|
|
changeset <- touch_changeset(changeset),
|
|
|
|
{:ok, object} <- Repo.insert_or_update(changeset),
|
|
|
|
{:ok, object} <- Object.set_cache(object) do
|
|
|
|
{:ok, object}
|
|
|
|
else
|
|
|
|
e ->
|
|
|
|
Logger.error("Error while processing object: #{inspect(e)}")
|
|
|
|
{:error, e}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-06-14 22:24:00 +02:00
|
|
|
defp reinject_object(%Object{} = object, new_data) do
|
|
|
|
Logger.debug("Reinjecting object #{new_data["id"]}")
|
2019-05-21 02:41:58 +02:00
|
|
|
|
2020-06-14 22:24:00 +02:00
|
|
|
with new_data <- Transmogrifier.fix_object(new_data),
|
|
|
|
data <- maybe_reinject_internal_fields(object, new_data),
|
|
|
|
changeset <- Object.change(object, %{data: data}),
|
2019-09-18 18:07:25 +02:00
|
|
|
changeset <- touch_changeset(changeset),
|
2019-11-06 12:00:03 +01:00
|
|
|
{:ok, object} <- Repo.insert_or_update(changeset),
|
|
|
|
{:ok, object} <- Object.set_cache(object) do
|
2019-05-21 02:41:58 +02:00
|
|
|
{:ok, object}
|
|
|
|
else
|
|
|
|
e ->
|
|
|
|
Logger.error("Error while processing object: #{inspect(e)}")
|
|
|
|
{:error, e}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-18 17:13:21 +02:00
|
|
|
def refetch_object(%Object{data: %{"id" => id}} = object) do
|
2019-11-23 20:55:41 +01:00
|
|
|
with {:local, false} <- {:local, Object.local?(object)},
|
2020-06-14 22:24:00 +02:00
|
|
|
{:ok, new_data} <- fetch_and_contain_remote_object_from_id(id),
|
|
|
|
{:ok, object} <- reinject_object(object, new_data) do
|
2019-09-18 17:13:21 +02:00
|
|
|
{:ok, object}
|
|
|
|
else
|
2019-11-06 23:40:55 +01:00
|
|
|
{:local, true} -> {:ok, object}
|
2019-09-18 17:13:21 +02:00
|
|
|
e -> {:error, e}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-02-15 18:41:38 +01:00
|
|
|
# Note: will create a Create activity, which we need internally at the moment.
|
2019-06-29 19:04:50 +02:00
|
|
|
def fetch_object_from_id(id, options \\ []) do
|
2020-02-15 18:41:38 +01:00
|
|
|
with {_, nil} <- {:fetch_object, Object.get_cached_by_ap_id(id)},
|
|
|
|
{_, true} <- {:allowed_depth, Federator.allowed_thread_distance?(options[:depth])},
|
|
|
|
{_, {:ok, data}} <- {:fetch, fetch_and_contain_remote_object_from_id(id)},
|
2021-01-04 13:38:31 +01:00
|
|
|
{_, nil} <- {:normalize, Object.normalize(data, fetch: false)},
|
2019-09-11 06:23:33 +02:00
|
|
|
params <- prepare_activity_params(data),
|
2020-02-15 18:41:38 +01:00
|
|
|
{_, :ok} <- {:containment, Containment.contain_origin(id, params)},
|
|
|
|
{_, {:ok, activity}} <-
|
2019-10-18 06:08:25 +02:00
|
|
|
{:transmogrifier, Transmogrifier.handle_incoming(params, options)},
|
2020-02-15 18:41:38 +01:00
|
|
|
{_, _data, %Object{} = object} <-
|
2021-01-04 13:38:31 +01:00
|
|
|
{:object, data, Object.normalize(activity, fetch: false)} do
|
2018-12-01 23:53:10 +01:00
|
|
|
{:ok, object}
|
|
|
|
else
|
2020-02-15 18:41:38 +01:00
|
|
|
{:allowed_depth, false} ->
|
|
|
|
{:error, "Max thread distance exceeded."}
|
|
|
|
|
2019-09-11 06:23:33 +02:00
|
|
|
{:containment, _} ->
|
|
|
|
{:error, "Object containment failed."}
|
2019-05-21 02:41:58 +02:00
|
|
|
|
2020-09-11 19:58:58 +02:00
|
|
|
{:transmogrifier, {:error, {:reject, e}}} ->
|
|
|
|
{:reject, e}
|
2018-12-01 23:53:10 +01:00
|
|
|
|
2020-09-17 16:17:16 +02:00
|
|
|
{:transmogrifier, {:reject, e}} ->
|
|
|
|
{:reject, e}
|
|
|
|
|
2020-06-26 20:10:47 +02:00
|
|
|
{:transmogrifier, _} = e ->
|
|
|
|
{:error, e}
|
2019-10-18 05:41:38 +02:00
|
|
|
|
2019-09-11 06:23:33 +02:00
|
|
|
{:object, data, nil} ->
|
2019-09-19 06:35:34 +02:00
|
|
|
reinject_object(%Object{}, data)
|
2019-05-21 02:41:58 +02:00
|
|
|
|
2019-09-11 06:23:33 +02:00
|
|
|
{:normalize, object = %Object{}} ->
|
|
|
|
{:ok, object}
|
2018-12-01 23:53:10 +01:00
|
|
|
|
2019-09-11 06:23:33 +02:00
|
|
|
{:fetch_object, %Object{} = object} ->
|
|
|
|
{:ok, object}
|
2018-12-01 23:53:10 +01:00
|
|
|
|
2019-10-24 18:08:34 +02:00
|
|
|
{:fetch, {:error, error}} ->
|
|
|
|
{:error, error}
|
|
|
|
|
2019-10-18 01:37:21 +02:00
|
|
|
e ->
|
|
|
|
e
|
2018-12-01 23:53:10 +01:00
|
|
|
end
|
2019-09-11 06:23:33 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
defp prepare_activity_params(data) do
|
|
|
|
%{
|
|
|
|
"type" => "Create",
|
|
|
|
# Should we seriously keep this attributedTo thing?
|
|
|
|
"actor" => data["actor"] || data["attributedTo"],
|
|
|
|
"object" => data
|
|
|
|
}
|
2020-09-15 17:22:08 +02:00
|
|
|
|> Maps.put_if_present("to", data["to"])
|
|
|
|
|> Maps.put_if_present("cc", data["cc"])
|
|
|
|
|> Maps.put_if_present("bto", data["bto"])
|
|
|
|
|> Maps.put_if_present("bcc", data["bcc"])
|
2018-12-01 23:53:10 +01:00
|
|
|
end
|
|
|
|
|
2019-06-29 19:04:50 +02:00
|
|
|
def fetch_object_from_id!(id, options \\ []) do
|
|
|
|
with {:ok, object} <- fetch_object_from_id(id, options) do
|
2018-12-04 04:17:25 +01:00
|
|
|
object
|
|
|
|
else
|
2019-10-24 18:08:34 +02:00
|
|
|
{:error, %Tesla.Mock.Error{}} ->
|
|
|
|
nil
|
|
|
|
|
2019-12-13 20:14:11 +01:00
|
|
|
{:error, "Object has been deleted"} ->
|
|
|
|
nil
|
|
|
|
|
2020-07-13 14:23:03 +02:00
|
|
|
{:reject, reason} ->
|
|
|
|
Logger.info("Rejected #{id} while fetching: #{inspect(reason)}")
|
|
|
|
nil
|
|
|
|
|
2019-10-18 05:41:38 +02:00
|
|
|
e ->
|
|
|
|
Logger.error("Error while fetching #{id}: #{inspect(e)}")
|
2018-12-04 04:17:25 +01:00
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-18 00:41:42 +02:00
|
|
|
defp make_signature(id, date) do
|
|
|
|
uri = URI.parse(id)
|
|
|
|
|
|
|
|
signature =
|
|
|
|
InternalFetchActor.get_actor()
|
|
|
|
|> Signature.sign(%{
|
|
|
|
"(request-target)": "get #{uri.path}",
|
|
|
|
host: uri.host,
|
|
|
|
date: date
|
|
|
|
})
|
|
|
|
|
2020-09-02 08:16:51 +02:00
|
|
|
{"signature", signature}
|
2019-07-18 00:41:42 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
defp sign_fetch(headers, id, date) do
|
|
|
|
if Pleroma.Config.get([:activitypub, :sign_object_fetches]) do
|
2020-09-02 08:16:51 +02:00
|
|
|
[make_signature(id, date) | headers]
|
2019-07-18 00:41:42 +02:00
|
|
|
else
|
|
|
|
headers
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp maybe_date_fetch(headers, date) do
|
|
|
|
if Pleroma.Config.get([:activitypub, :sign_object_fetches]) do
|
2020-09-02 08:16:51 +02:00
|
|
|
[{"date", date} | headers]
|
2019-07-18 00:41:42 +02:00
|
|
|
else
|
|
|
|
headers
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-11-17 15:28:30 +01:00
|
|
|
def fetch_and_contain_remote_object_from_id(id)
|
2020-09-18 13:58:22 +02:00
|
|
|
|
2020-11-17 15:28:30 +01:00
|
|
|
def fetch_and_contain_remote_object_from_id(%{"id" => id}),
|
|
|
|
do: fetch_and_contain_remote_object_from_id(id)
|
2020-09-18 13:58:22 +02:00
|
|
|
|
2020-11-17 15:28:30 +01:00
|
|
|
def fetch_and_contain_remote_object_from_id(id) when is_binary(id) do
|
2019-12-10 09:08:57 +01:00
|
|
|
Logger.debug("Fetching object #{id} via AP")
|
2018-12-01 23:53:10 +01:00
|
|
|
|
2020-09-18 13:58:22 +02:00
|
|
|
with {:scheme, true} <- {:scheme, String.starts_with?(id, "http")},
|
2020-11-17 15:28:30 +01:00
|
|
|
{:ok, body} <- get_object(id),
|
2020-09-18 13:58:22 +02:00
|
|
|
{:ok, data} <- safe_json_decode(body),
|
|
|
|
:ok <- Containment.contain_origin_from_id(id, data) do
|
|
|
|
{:ok, data}
|
|
|
|
else
|
|
|
|
{:scheme, _} ->
|
|
|
|
{:error, "Unsupported URI scheme"}
|
|
|
|
|
|
|
|
{:error, e} ->
|
|
|
|
{:error, e}
|
|
|
|
|
|
|
|
e ->
|
|
|
|
{:error, e}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-11-17 15:28:30 +01:00
|
|
|
def fetch_and_contain_remote_object_from_id(_id),
|
2020-09-18 13:58:22 +02:00
|
|
|
do: {:error, "id must be a string"}
|
|
|
|
|
2020-11-17 15:28:30 +01:00
|
|
|
defp get_object(id) do
|
2019-08-22 21:39:06 +02:00
|
|
|
date = Pleroma.Signature.signed_date()
|
2019-07-18 00:41:42 +02:00
|
|
|
|
|
|
|
headers =
|
2020-02-11 08:12:57 +01:00
|
|
|
[{"accept", "application/activity+json"}]
|
2019-07-18 00:41:42 +02:00
|
|
|
|> maybe_date_fetch(date)
|
|
|
|
|> sign_fetch(id, date)
|
|
|
|
|
2020-09-18 13:58:22 +02:00
|
|
|
case HTTP.get(id, headers) do
|
2020-10-28 16:08:23 +01:00
|
|
|
{:ok, %{body: body, status: code, headers: headers}} when code in 200..299 ->
|
|
|
|
case List.keyfind(headers, "content-type", 0) do
|
|
|
|
{_, content_type} ->
|
|
|
|
case Plug.Conn.Utils.media_type(content_type) do
|
|
|
|
{:ok, "application", "activity+json", _} ->
|
|
|
|
{:ok, body}
|
|
|
|
|
|
|
|
{:ok, "application", "ld+json",
|
|
|
|
%{"profile" => "https://www.w3.org/ns/activitystreams"}} ->
|
|
|
|
{:ok, body}
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
{:error, {:content_type, content_type}}
|
|
|
|
end
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
{:error, {:content_type, nil}}
|
|
|
|
end
|
2019-07-18 00:41:42 +02:00
|
|
|
|
2019-06-13 12:13:35 +02:00
|
|
|
{:ok, %{status: code}} when code in [404, 410] ->
|
2019-06-13 11:34:03 +02:00
|
|
|
{:error, "Object has been deleted"}
|
|
|
|
|
2019-10-24 18:08:34 +02:00
|
|
|
{:error, e} ->
|
|
|
|
{:error, e}
|
|
|
|
|
2019-10-18 04:42:25 +02:00
|
|
|
e ->
|
|
|
|
{:error, e}
|
2018-12-01 23:53:10 +01:00
|
|
|
end
|
|
|
|
end
|
2019-07-13 18:17:57 +02:00
|
|
|
|
2020-09-18 13:58:22 +02:00
|
|
|
defp safe_json_decode(nil), do: {:ok, nil}
|
|
|
|
defp safe_json_decode(json), do: Jason.decode(json)
|
2018-12-01 23:53:10 +01:00
|
|
|
end
|