2019-07-10 05:13:23 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-12-01 22:53:10 +00:00
|
|
|
defmodule Pleroma.Object.Fetcher do
|
2019-05-25 04:24:21 +00:00
|
|
|
alias Pleroma.HTTP
|
2019-04-17 09:22:32 +00:00
|
|
|
alias Pleroma.Object
|
2018-12-01 22:53:10 +00:00
|
|
|
alias Pleroma.Object.Containment
|
2019-09-18 15:13:21 +00:00
|
|
|
alias Pleroma.Repo
|
2019-07-17 22:41:42 +00:00
|
|
|
alias Pleroma.Signature
|
|
|
|
alias Pleroma.Web.ActivityPub.InternalFetchActor
|
2018-12-01 22:53:10 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Transmogrifier
|
|
|
|
|
|
|
|
require Logger
|
2019-09-18 16:53:51 +00:00
|
|
|
require Pleroma.Constants
|
2018-12-01 22:53:10 +00:00
|
|
|
|
2019-09-18 16:07:25 +00:00
|
|
|
defp touch_changeset(changeset) do
|
|
|
|
updated_at =
|
|
|
|
NaiveDateTime.utc_now()
|
|
|
|
|> NaiveDateTime.truncate(:second)
|
|
|
|
|
|
|
|
Ecto.Changeset.put_change(changeset, :updated_at, updated_at)
|
|
|
|
end
|
|
|
|
|
2019-09-18 16:53:51 +00:00
|
|
|
defp maybe_reinject_internal_fields(data, %{data: %{} = old_data}) do
|
|
|
|
internal_fields = Map.take(old_data, Pleroma.Constants.object_internal_fields())
|
|
|
|
|
|
|
|
Map.merge(data, internal_fields)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp maybe_reinject_internal_fields(data, _), do: data
|
|
|
|
|
2019-09-19 04:35:34 +00:00
|
|
|
@spec reinject_object(struct(), map()) :: {:ok, Object.t()} | {:error, any()}
|
2019-09-18 15:13:21 +00:00
|
|
|
defp reinject_object(struct, data) do
|
2019-05-21 00:41:58 +00:00
|
|
|
Logger.debug("Reinjecting object #{data["id"]}")
|
|
|
|
|
|
|
|
with data <- Transmogrifier.fix_object(data),
|
2019-09-18 16:53:51 +00:00
|
|
|
data <- maybe_reinject_internal_fields(data, struct),
|
2019-09-18 15:13:21 +00:00
|
|
|
changeset <- Object.change(struct, %{data: data}),
|
2019-09-18 16:07:25 +00:00
|
|
|
changeset <- touch_changeset(changeset),
|
2019-09-18 15:13:21 +00:00
|
|
|
{:ok, object} <- Repo.insert_or_update(changeset) do
|
2019-05-21 00:41:58 +00:00
|
|
|
{:ok, object}
|
|
|
|
else
|
|
|
|
e ->
|
|
|
|
Logger.error("Error while processing object: #{inspect(e)}")
|
|
|
|
{:error, e}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-18 15:13:21 +00:00
|
|
|
def refetch_object(%Object{data: %{"id" => id}} = object) do
|
2019-09-18 16:59:23 +00:00
|
|
|
with {:local, false} <- {:local, String.starts_with?(id, Pleroma.Web.base_url() <> "/")},
|
|
|
|
{:ok, data} <- fetch_and_contain_remote_object_from_id(id),
|
2019-09-18 15:13:21 +00:00
|
|
|
{:ok, object} <- reinject_object(object, data) do
|
|
|
|
{:ok, object}
|
|
|
|
else
|
2019-09-18 16:59:23 +00:00
|
|
|
{:local, true} -> object
|
2019-09-18 15:13:21 +00:00
|
|
|
e -> {:error, e}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-01 22:53:10 +00:00
|
|
|
# TODO:
|
|
|
|
# This will create a Create activity, which we need internally at the moment.
|
2019-06-29 17:04:50 +00:00
|
|
|
def fetch_object_from_id(id, options \\ []) do
|
2019-09-11 04:23:33 +00:00
|
|
|
with {:fetch_object, nil} <- {:fetch_object, Object.get_cached_by_ap_id(id)},
|
|
|
|
{:fetch, {:ok, data}} <- {:fetch, fetch_and_contain_remote_object_from_id(id)},
|
|
|
|
{:normalize, nil} <- {:normalize, Object.normalize(data, false)},
|
|
|
|
params <- prepare_activity_params(data),
|
|
|
|
{:containment, :ok} <- {:containment, Containment.contain_origin(id, params)},
|
2019-10-18 04:08:25 +00:00
|
|
|
{:transmogrifier, {:ok, activity}} <-
|
|
|
|
{:transmogrifier, Transmogrifier.handle_incoming(params, options)},
|
2019-09-11 04:23:33 +00:00
|
|
|
{:object, _data, %Object{} = object} <-
|
|
|
|
{:object, data, Object.normalize(activity, false)} do
|
2018-12-01 22:53:10 +00:00
|
|
|
{:ok, object}
|
|
|
|
else
|
2019-09-11 04:23:33 +00:00
|
|
|
{:containment, _} ->
|
|
|
|
{:error, "Object containment failed."}
|
2019-05-21 00:41:58 +00:00
|
|
|
|
2019-10-18 03:41:38 +00:00
|
|
|
{:transmogrifier, {:error, {:reject, nil}}} ->
|
2019-09-11 04:23:33 +00:00
|
|
|
{:reject, nil}
|
2018-12-01 22:53:10 +00:00
|
|
|
|
2019-10-18 03:41:38 +00:00
|
|
|
{:transmogrifier, _} ->
|
|
|
|
{:error, "Transmogrifier failure."}
|
|
|
|
|
2019-09-11 04:23:33 +00:00
|
|
|
{:object, data, nil} ->
|
2019-09-19 04:35:34 +00:00
|
|
|
reinject_object(%Object{}, data)
|
2019-05-21 00:41:58 +00:00
|
|
|
|
2019-09-11 04:23:33 +00:00
|
|
|
{:normalize, object = %Object{}} ->
|
|
|
|
{:ok, object}
|
2018-12-01 22:53:10 +00:00
|
|
|
|
2019-09-11 04:23:33 +00:00
|
|
|
{:fetch_object, %Object{} = object} ->
|
|
|
|
{:ok, object}
|
2018-12-01 22:53:10 +00:00
|
|
|
|
2019-10-17 23:37:21 +00:00
|
|
|
e ->
|
|
|
|
e
|
2018-12-01 22:53:10 +00:00
|
|
|
end
|
2019-09-11 04:23:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defp prepare_activity_params(data) do
|
|
|
|
%{
|
|
|
|
"type" => "Create",
|
|
|
|
"to" => data["to"],
|
|
|
|
"cc" => data["cc"],
|
|
|
|
# Should we seriously keep this attributedTo thing?
|
|
|
|
"actor" => data["actor"] || data["attributedTo"],
|
|
|
|
"object" => data
|
|
|
|
}
|
2018-12-01 22:53:10 +00:00
|
|
|
end
|
|
|
|
|
2019-06-29 17:04:50 +00:00
|
|
|
def fetch_object_from_id!(id, options \\ []) do
|
|
|
|
with {:ok, object} <- fetch_object_from_id(id, options) do
|
2018-12-04 03:17:25 +00:00
|
|
|
object
|
|
|
|
else
|
2019-10-18 03:41:38 +00:00
|
|
|
e ->
|
|
|
|
Logger.error("Error while fetching #{id}: #{inspect(e)}")
|
2018-12-04 03:17:25 +00:00
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-17 22:41:42 +00: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
|
|
|
|
})
|
|
|
|
|
|
|
|
[{:Signature, signature}]
|
|
|
|
end
|
|
|
|
|
|
|
|
defp sign_fetch(headers, id, date) do
|
|
|
|
if Pleroma.Config.get([:activitypub, :sign_object_fetches]) do
|
|
|
|
headers ++ make_signature(id, date)
|
|
|
|
else
|
|
|
|
headers
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp maybe_date_fetch(headers, date) do
|
|
|
|
if Pleroma.Config.get([:activitypub, :sign_object_fetches]) do
|
|
|
|
headers ++ [{:Date, date}]
|
|
|
|
else
|
|
|
|
headers
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-13 16:17:57 +00:00
|
|
|
def fetch_and_contain_remote_object_from_id(id) when is_binary(id) do
|
2019-04-17 11:21:39 +00:00
|
|
|
Logger.info("Fetching object #{id} via AP")
|
2018-12-01 22:53:10 +00:00
|
|
|
|
2019-08-22 19:39:06 +00:00
|
|
|
date = Pleroma.Signature.signed_date()
|
2019-07-17 22:41:42 +00:00
|
|
|
|
|
|
|
headers =
|
|
|
|
[{:Accept, "application/activity+json"}]
|
|
|
|
|> maybe_date_fetch(date)
|
|
|
|
|> sign_fetch(id, date)
|
|
|
|
|
|
|
|
Logger.debug("Fetch headers: #{inspect(headers)}")
|
|
|
|
|
2019-10-18 03:41:38 +00:00
|
|
|
with {:scheme, true} <- {:scheme, String.starts_with?(id, "http")},
|
2019-07-17 22:41:42 +00:00
|
|
|
{:ok, %{body: body, status: code}} when code in 200..299 <- HTTP.get(id, headers),
|
2018-12-01 22:53:10 +00:00
|
|
|
{:ok, data} <- Jason.decode(body),
|
|
|
|
:ok <- Containment.contain_origin_from_id(id, data) do
|
|
|
|
{:ok, data}
|
|
|
|
else
|
2019-06-13 10:13:35 +00:00
|
|
|
{:ok, %{status: code}} when code in [404, 410] ->
|
2019-06-13 09:34:03 +00:00
|
|
|
{:error, "Object has been deleted"}
|
|
|
|
|
2019-10-18 03:41:38 +00:00
|
|
|
{:scheme, _} ->
|
|
|
|
{:error, "Unsupported URI scheme"}
|
|
|
|
|
2019-10-18 02:42:25 +00:00
|
|
|
e ->
|
|
|
|
{:error, e}
|
2018-12-01 22:53:10 +00:00
|
|
|
end
|
|
|
|
end
|
2019-07-13 16:17:57 +00:00
|
|
|
|
2019-07-20 19:04:47 +00:00
|
|
|
def fetch_and_contain_remote_object_from_id(%{"id" => id}),
|
|
|
|
do: fetch_and_contain_remote_object_from_id(id)
|
|
|
|
|
2019-07-20 18:53:00 +00:00
|
|
|
def fetch_and_contain_remote_object_from_id(_id), do: {:error, "id must be a string"}
|
2018-12-01 22:53:10 +00:00
|
|
|
end
|