2018-12-24 12:34:45 +00:00
|
|
|
|
# Portions of this file are derived from Pleroma:
|
|
|
|
|
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social>
|
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
2018-12-27 10:24:04 +00:00
|
|
|
|
# Upstream: https://git.pleroma.social/pleroma/pleroma/blob/develop/lib/pleroma/web/activity_pub/transmogrifier.ex
|
2018-12-24 12:34:45 +00:00
|
|
|
|
|
2020-01-22 01:14:42 +00:00
|
|
|
|
defmodule Mobilizon.Federation.ActivityPub.Transmogrifier do
|
2018-05-17 09:32:23 +00:00
|
|
|
|
@moduledoc """
|
|
|
|
|
A module to handle coding from internal to wire ActivityPub and back.
|
|
|
|
|
"""
|
2019-09-22 14:26:23 +00:00
|
|
|
|
|
2018-10-11 15:37:39 +00:00
|
|
|
|
alias Mobilizon.Actors
|
2019-07-30 14:40:59 +00:00
|
|
|
|
alias Mobilizon.Actors.{Actor, Follower}
|
2018-12-14 16:41:55 +00:00
|
|
|
|
alias Mobilizon.Events
|
2019-09-22 14:26:23 +00:00
|
|
|
|
alias Mobilizon.Events.{Comment, Event, Participant}
|
2018-05-17 09:32:23 +00:00
|
|
|
|
|
2020-01-22 01:14:42 +00:00
|
|
|
|
alias Mobilizon.Federation.ActivityPub
|
|
|
|
|
alias Mobilizon.Federation.ActivityPub.{Activity, Utils}
|
2020-01-22 21:40:40 +00:00
|
|
|
|
alias Mobilizon.Federation.ActivityStream.{Converter, Convertible}
|
2020-01-22 01:14:42 +00:00
|
|
|
|
|
|
|
|
|
alias MobilizonWeb.Email.Participation
|
2019-10-25 15:43:37 +00:00
|
|
|
|
|
2018-05-17 09:32:23 +00:00
|
|
|
|
require Logger
|
|
|
|
|
|
2019-07-30 14:40:59 +00:00
|
|
|
|
def handle_incoming(%{"id" => nil}), do: :error
|
|
|
|
|
def handle_incoming(%{"id" => ""}), do: :error
|
|
|
|
|
|
2019-07-23 11:49:22 +00:00
|
|
|
|
def handle_incoming(%{"type" => "Flag"} = data) do
|
2019-09-22 16:29:13 +00:00
|
|
|
|
with params <- Converter.Flag.as_to_model(data) do
|
2019-07-23 11:49:22 +00:00
|
|
|
|
params = %{
|
2019-11-15 17:36:47 +00:00
|
|
|
|
reporter_id: params["reporter"].id,
|
|
|
|
|
reported_id: params["reported"].id,
|
|
|
|
|
comments_ids: params["comments"] |> Enum.map(& &1.id),
|
2019-07-23 11:49:22 +00:00
|
|
|
|
content: params["content"] || "",
|
|
|
|
|
additional: %{
|
|
|
|
|
"cc" => [params["reported"].url]
|
2019-11-15 17:36:47 +00:00
|
|
|
|
},
|
2019-12-03 10:29:51 +00:00
|
|
|
|
event_id: if(is_nil(params["event"]), do: nil, else: params["event"].id || nil),
|
2019-11-15 17:36:47 +00:00
|
|
|
|
local: false
|
2019-07-23 11:49:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-15 17:36:47 +00:00
|
|
|
|
ActivityPub.flag(params, false)
|
2019-07-23 11:49:22 +00:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-10-25 15:43:37 +00:00
|
|
|
|
@doc """
|
|
|
|
|
Handles a `Create` activity for `Note` (comments) objects
|
|
|
|
|
|
|
|
|
|
The following actions are performed
|
|
|
|
|
* Fetch the author of the activity
|
|
|
|
|
* Convert the ActivityStream data to the comment model format (it also finds and inserts tags)
|
|
|
|
|
* Get (by it's URL) or create the comment with this data
|
|
|
|
|
* Insert eventual mentions in the database
|
|
|
|
|
* Convert the comment back in ActivityStreams data
|
|
|
|
|
* Wrap this data back into a `Create` activity
|
|
|
|
|
* Return the activity and the comment object
|
|
|
|
|
"""
|
|
|
|
|
def handle_incoming(%{"type" => "Create", "object" => %{"type" => "Note"} = object}) do
|
2018-08-24 09:34:00 +00:00
|
|
|
|
Logger.info("Handle incoming to create notes")
|
2018-07-27 08:45:35 +00:00
|
|
|
|
|
2019-10-25 15:43:37 +00:00
|
|
|
|
with {:ok, object_data} <-
|
2019-12-03 10:29:51 +00:00
|
|
|
|
object |> Converter.Comment.as_to_model_data(),
|
2019-10-25 15:43:37 +00:00
|
|
|
|
{:existing_comment, {:error, :comment_not_found}} <-
|
|
|
|
|
{:existing_comment, Events.get_comment_from_url_with_preload(object_data.url)},
|
|
|
|
|
{:ok, %Activity{} = activity, %Comment{} = comment} <-
|
|
|
|
|
ActivityPub.create(:comment, object_data, false) do
|
|
|
|
|
{:ok, activity, comment}
|
|
|
|
|
else
|
|
|
|
|
{:existing_comment, {:ok, %Comment{} = comment}} ->
|
|
|
|
|
{:ok, nil, comment}
|
2018-05-17 09:32:23 +00:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-10-25 15:43:37 +00:00
|
|
|
|
@doc """
|
|
|
|
|
Handles a `Create` activity for `Event` objects
|
|
|
|
|
|
|
|
|
|
The following actions are performed
|
|
|
|
|
* Fetch the author of the activity
|
|
|
|
|
* Convert the ActivityStream data to the event model format (it also finds and inserts tags)
|
|
|
|
|
* Get (by it's URL) or create the event with this data
|
|
|
|
|
* Insert eventual mentions in the database
|
|
|
|
|
* Convert the event back in ActivityStreams data
|
|
|
|
|
* Wrap this data back into a `Create` activity
|
|
|
|
|
* Return the activity and the event object
|
|
|
|
|
"""
|
|
|
|
|
def handle_incoming(%{"type" => "Create", "object" => %{"type" => "Event"} = object}) do
|
2019-07-30 08:35:29 +00:00
|
|
|
|
Logger.info("Handle incoming to create event")
|
|
|
|
|
|
2019-10-25 15:43:37 +00:00
|
|
|
|
with {:ok, object_data} <-
|
2019-12-03 10:29:51 +00:00
|
|
|
|
object |> Converter.Event.as_to_model_data(),
|
2019-10-25 15:43:37 +00:00
|
|
|
|
{:existing_event, nil} <- {:existing_event, Events.get_event_by_url(object_data.url)},
|
|
|
|
|
{:ok, %Activity{} = activity, %Event{} = event} <-
|
|
|
|
|
ActivityPub.create(:event, object_data, false) do
|
|
|
|
|
{:ok, activity, event}
|
|
|
|
|
else
|
|
|
|
|
{:existing_event, %Event{} = event} -> {:ok, nil, event}
|
2019-07-30 08:35:29 +00:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-07-27 08:45:35 +00:00
|
|
|
|
def handle_incoming(
|
2019-08-14 15:45:11 +00:00
|
|
|
|
%{"type" => "Follow", "object" => followed, "actor" => follower, "id" => id} = _data
|
2018-07-27 08:45:35 +00:00
|
|
|
|
) do
|
2019-10-25 15:43:37 +00:00
|
|
|
|
with {:ok, %Actor{} = followed} <- ActivityPub.get_or_fetch_actor_by_url(followed, true),
|
|
|
|
|
{:ok, %Actor{} = follower} <- ActivityPub.get_or_fetch_actor_by_url(follower),
|
2019-07-30 08:35:29 +00:00
|
|
|
|
{:ok, activity, object} <- ActivityPub.follow(follower, followed, id, false) do
|
2019-07-30 14:40:59 +00:00
|
|
|
|
{:ok, activity, object}
|
|
|
|
|
else
|
|
|
|
|
e ->
|
|
|
|
|
Logger.warn("Unable to handle Follow activity #{inspect(e)}")
|
|
|
|
|
:error
|
|
|
|
|
end
|
|
|
|
|
end
|
2018-05-17 09:32:23 +00:00
|
|
|
|
|
2019-07-30 14:40:59 +00:00
|
|
|
|
def handle_incoming(
|
|
|
|
|
%{
|
|
|
|
|
"type" => "Accept",
|
2019-08-14 15:45:11 +00:00
|
|
|
|
"object" => accepted_object,
|
2019-07-30 14:40:59 +00:00
|
|
|
|
"actor" => _actor,
|
2019-08-14 15:45:11 +00:00
|
|
|
|
"id" => id
|
2019-07-30 14:40:59 +00:00
|
|
|
|
} = data
|
|
|
|
|
) do
|
2020-01-22 01:14:42 +00:00
|
|
|
|
with actor_url <- Utils.get_actor(data),
|
2019-10-25 15:43:37 +00:00
|
|
|
|
{:ok, %Actor{} = actor} <- ActivityPub.get_or_fetch_actor_by_url(actor_url),
|
|
|
|
|
{:object_not_found, {:ok, %Activity{} = activity, object}} <-
|
2019-08-14 15:45:11 +00:00
|
|
|
|
{:object_not_found,
|
|
|
|
|
do_handle_incoming_accept_following(accepted_object, actor) ||
|
|
|
|
|
do_handle_incoming_accept_join(accepted_object, actor)} do
|
|
|
|
|
{:ok, activity, object}
|
2019-07-30 14:40:59 +00:00
|
|
|
|
else
|
2019-08-14 15:45:11 +00:00
|
|
|
|
{:object_not_found, nil} ->
|
|
|
|
|
Logger.warn(
|
|
|
|
|
"Unable to process Accept activity #{inspect(id)}. Object #{inspect(accepted_object)} wasn't found."
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
:error
|
2019-07-30 14:40:59 +00:00
|
|
|
|
|
|
|
|
|
e ->
|
2019-08-14 15:45:11 +00:00
|
|
|
|
Logger.warn(
|
|
|
|
|
"Unable to process Accept activity #{inspect(id)} for object #{inspect(accepted_object)} only returned #{
|
|
|
|
|
inspect(e)
|
|
|
|
|
}"
|
|
|
|
|
)
|
|
|
|
|
|
2019-07-30 14:40:59 +00:00
|
|
|
|
:error
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def handle_incoming(
|
2019-08-14 15:45:11 +00:00
|
|
|
|
%{"type" => "Reject", "object" => rejected_object, "actor" => _actor, "id" => id} = data
|
2019-07-30 14:40:59 +00:00
|
|
|
|
) do
|
2020-01-22 01:14:42 +00:00
|
|
|
|
with actor_url <- Utils.get_actor(data),
|
2019-10-25 15:43:37 +00:00
|
|
|
|
{:ok, %Actor{} = actor} <- ActivityPub.get_or_fetch_actor_by_url(actor_url),
|
2019-08-14 15:45:11 +00:00
|
|
|
|
{:object_not_found, {:ok, activity, object}} <-
|
|
|
|
|
{:object_not_found,
|
|
|
|
|
do_handle_incoming_reject_following(rejected_object, actor) ||
|
|
|
|
|
do_handle_incoming_reject_join(rejected_object, actor)} do
|
2019-07-30 08:35:29 +00:00
|
|
|
|
{:ok, activity, object}
|
2018-05-17 09:32:23 +00:00
|
|
|
|
else
|
2019-08-14 15:45:11 +00:00
|
|
|
|
{:object_not_found, nil} ->
|
|
|
|
|
Logger.warn(
|
|
|
|
|
"Unable to process Reject activity #{inspect(id)}. Object #{inspect(rejected_object)} wasn't found."
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
:error
|
|
|
|
|
|
2018-11-07 17:31:44 +00:00
|
|
|
|
e ->
|
2019-08-14 15:45:11 +00:00
|
|
|
|
Logger.warn(
|
|
|
|
|
"Unable to process Reject activity #{inspect(id)} for object #{inspect(rejected_object)} only returned #{
|
|
|
|
|
inspect(e)
|
|
|
|
|
}"
|
|
|
|
|
)
|
|
|
|
|
|
2018-11-07 17:31:44 +00:00
|
|
|
|
:error
|
2018-05-17 09:32:23 +00:00
|
|
|
|
end
|
|
|
|
|
end
|
2018-07-27 08:45:35 +00:00
|
|
|
|
|
2019-07-30 14:40:59 +00:00
|
|
|
|
def handle_incoming(
|
2019-12-03 10:29:51 +00:00
|
|
|
|
%{"type" => "Announce", "object" => object, "actor" => _actor, "id" => _id} = data
|
2019-07-30 14:40:59 +00:00
|
|
|
|
) do
|
2020-01-22 01:14:42 +00:00
|
|
|
|
with actor <- Utils.get_actor(data),
|
2019-10-25 15:43:37 +00:00
|
|
|
|
# TODO: Is the following line useful?
|
2019-12-03 10:29:51 +00:00
|
|
|
|
{:ok, %Actor{id: actor_id} = _actor} <- ActivityPub.get_or_fetch_actor_by_url(actor),
|
2019-10-25 15:43:37 +00:00
|
|
|
|
:ok <- Logger.debug("Fetching contained object"),
|
2019-12-03 10:29:51 +00:00
|
|
|
|
{:ok, object} <- fetch_obj_helper_as_activity_streams(object),
|
2019-10-25 15:43:37 +00:00
|
|
|
|
:ok <- Logger.debug("Handling contained object"),
|
2020-01-22 01:14:42 +00:00
|
|
|
|
create_data <- Utils.make_create_data(object),
|
2019-10-25 15:43:37 +00:00
|
|
|
|
:ok <- Logger.debug(inspect(object)),
|
2019-12-03 10:29:51 +00:00
|
|
|
|
{:ok, _activity, entity} <- handle_incoming(create_data),
|
2019-10-25 15:43:37 +00:00
|
|
|
|
:ok <- Logger.debug("Finished processing contained object"),
|
2019-12-03 10:29:51 +00:00
|
|
|
|
{:ok, activity} <- ActivityPub.create_activity(data, false),
|
|
|
|
|
{:ok, %Actor{id: object_owner_actor_id}} <- Actors.get_actor_by_url(object["actor"]),
|
|
|
|
|
{:ok, %Mobilizon.Share{} = _share} <-
|
|
|
|
|
Mobilizon.Share.create(object["id"], actor_id, object_owner_actor_id) do
|
|
|
|
|
{:ok, activity, entity}
|
2019-07-30 14:40:59 +00:00
|
|
|
|
else
|
|
|
|
|
e ->
|
|
|
|
|
Logger.debug(inspect(e))
|
|
|
|
|
:error
|
|
|
|
|
end
|
|
|
|
|
end
|
2018-12-14 16:41:55 +00:00
|
|
|
|
|
2019-10-25 15:43:37 +00:00
|
|
|
|
def handle_incoming(%{
|
|
|
|
|
"type" => "Update",
|
|
|
|
|
"object" => %{"type" => object_type} = object,
|
|
|
|
|
"actor" => _actor_id
|
|
|
|
|
})
|
2019-09-04 16:24:31 +00:00
|
|
|
|
when object_type in ["Person", "Group", "Application", "Service", "Organization"] do
|
2019-10-25 15:43:37 +00:00
|
|
|
|
with {:ok, %Actor{} = old_actor} <- Actors.get_actor_by_url(object["id"]),
|
|
|
|
|
{:ok, object_data} <-
|
2019-12-03 10:29:51 +00:00
|
|
|
|
object |> Converter.Actor.as_to_model_data(),
|
2019-10-25 15:43:37 +00:00
|
|
|
|
{:ok, %Activity{} = activity, %Actor{} = new_actor} <-
|
|
|
|
|
ActivityPub.update(:actor, old_actor, object_data, false) do
|
|
|
|
|
{:ok, activity, new_actor}
|
|
|
|
|
else
|
2018-12-14 16:41:55 +00:00
|
|
|
|
e ->
|
2019-07-30 14:40:59 +00:00
|
|
|
|
Logger.debug(inspect(e))
|
2018-12-14 16:41:55 +00:00
|
|
|
|
:error
|
2019-09-04 16:24:31 +00:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def handle_incoming(
|
2019-10-25 15:43:37 +00:00
|
|
|
|
%{"type" => "Update", "object" => %{"type" => "Event"} = object, "actor" => _actor} =
|
2019-12-03 10:29:51 +00:00
|
|
|
|
update_data
|
2019-09-04 16:24:31 +00:00
|
|
|
|
) do
|
2020-01-23 20:59:50 +00:00
|
|
|
|
with actor <- Utils.get_actor(update_data),
|
2019-12-03 10:29:51 +00:00
|
|
|
|
{:ok, %Actor{url: actor_url}} <- Actors.get_actor_by_url(actor),
|
|
|
|
|
{:ok, %Event{} = old_event} <-
|
|
|
|
|
object |> Utils.get_url() |> ActivityPub.fetch_object_from_url(),
|
2020-01-22 01:14:42 +00:00
|
|
|
|
{:ok, object_data} <- Converter.Event.as_to_model_data(object),
|
|
|
|
|
{:origin_check, true} <- {:origin_check, Utils.origin_check?(actor_url, update_data)},
|
2019-10-25 15:43:37 +00:00
|
|
|
|
{:ok, %Activity{} = activity, %Event{} = new_event} <-
|
|
|
|
|
ActivityPub.update(:event, old_event, object_data, false) do
|
|
|
|
|
{:ok, activity, new_event}
|
2019-09-04 16:24:31 +00:00
|
|
|
|
else
|
2019-11-18 17:40:03 +00:00
|
|
|
|
_e ->
|
2019-09-04 16:24:31 +00:00
|
|
|
|
:error
|
2018-12-14 16:41:55 +00:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-07-30 14:40:59 +00:00
|
|
|
|
def handle_incoming(
|
|
|
|
|
%{
|
|
|
|
|
"type" => "Undo",
|
|
|
|
|
"object" => %{
|
|
|
|
|
"type" => "Announce",
|
|
|
|
|
"object" => object_id,
|
|
|
|
|
"id" => cancelled_activity_id
|
|
|
|
|
},
|
2019-08-14 15:45:11 +00:00
|
|
|
|
"actor" => _actor,
|
2019-07-30 14:40:59 +00:00
|
|
|
|
"id" => id
|
|
|
|
|
} = data
|
|
|
|
|
) do
|
2020-01-22 01:14:42 +00:00
|
|
|
|
with actor <- Utils.get_actor(data),
|
2019-10-25 15:43:37 +00:00
|
|
|
|
{:ok, %Actor{} = actor} <- ActivityPub.get_or_fetch_actor_by_url(actor),
|
2019-07-30 14:40:59 +00:00
|
|
|
|
{:ok, object} <- fetch_obj_helper_as_activity_streams(object_id),
|
|
|
|
|
{:ok, activity, object} <-
|
|
|
|
|
ActivityPub.unannounce(actor, object, id, cancelled_activity_id, false) do
|
|
|
|
|
{:ok, activity, object}
|
|
|
|
|
else
|
|
|
|
|
_e -> :error
|
|
|
|
|
end
|
|
|
|
|
end
|
2018-07-27 08:45:35 +00:00
|
|
|
|
|
2018-12-14 16:41:55 +00:00
|
|
|
|
def handle_incoming(
|
|
|
|
|
%{
|
|
|
|
|
"type" => "Undo",
|
|
|
|
|
"object" => %{"type" => "Follow", "object" => followed},
|
|
|
|
|
"actor" => follower,
|
|
|
|
|
"id" => id
|
|
|
|
|
} = _data
|
|
|
|
|
) do
|
|
|
|
|
with {:ok, %Actor{domain: nil} = followed} <- Actors.get_actor_by_url(followed),
|
|
|
|
|
{:ok, %Actor{} = follower} <- Actors.get_actor_by_url(follower),
|
2019-07-30 14:40:59 +00:00
|
|
|
|
{:ok, activity, object} <- ActivityPub.unfollow(follower, followed, id, false) do
|
2019-07-30 08:35:29 +00:00
|
|
|
|
{:ok, activity, object}
|
2018-12-14 16:41:55 +00:00
|
|
|
|
else
|
|
|
|
|
e ->
|
2019-07-30 14:40:59 +00:00
|
|
|
|
Logger.debug(inspect(e))
|
2018-12-14 16:41:55 +00:00
|
|
|
|
:error
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# TODO: We presently assume that any actor on the same origin domain as the object being
|
|
|
|
|
# deleted has the rights to delete that object. A better way to validate whether or not
|
|
|
|
|
# the object should be deleted is to refetch the object URI, which should return either
|
|
|
|
|
# an error or a tombstone. This would allow us to verify that a deletion actually took
|
|
|
|
|
# place.
|
|
|
|
|
def handle_incoming(
|
|
|
|
|
%{"type" => "Delete", "object" => object, "actor" => _actor, "id" => _id} = data
|
|
|
|
|
) do
|
2020-01-22 01:14:42 +00:00
|
|
|
|
with actor <- Utils.get_actor(data),
|
2019-12-03 10:29:51 +00:00
|
|
|
|
{:ok, %Actor{url: actor_url}} <- Actors.get_actor_by_url(actor),
|
|
|
|
|
object_id <- Utils.get_url(object),
|
2020-01-23 20:59:50 +00:00
|
|
|
|
{:origin_check, true} <-
|
|
|
|
|
{:origin_check, Utils.origin_check_from_id?(actor_url, object_id)},
|
2019-12-03 10:29:51 +00:00
|
|
|
|
{:ok, object} <- ActivityPub.fetch_object_from_url(object_id),
|
2019-07-30 08:35:29 +00:00
|
|
|
|
{:ok, activity, object} <- ActivityPub.delete(object, false) do
|
|
|
|
|
{:ok, activity, object}
|
2018-12-14 16:41:55 +00:00
|
|
|
|
else
|
2019-12-03 10:29:51 +00:00
|
|
|
|
{:origin_check, false} ->
|
|
|
|
|
Logger.warn("Object origin check failed")
|
|
|
|
|
:error
|
|
|
|
|
|
2018-12-14 16:41:55 +00:00
|
|
|
|
e ->
|
2019-07-30 14:40:59 +00:00
|
|
|
|
Logger.debug(inspect(e))
|
2018-12-14 16:41:55 +00:00
|
|
|
|
:error
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-08-14 15:45:11 +00:00
|
|
|
|
def handle_incoming(
|
2019-12-03 10:29:51 +00:00
|
|
|
|
%{"type" => "Join", "object" => object, "actor" => _actor, "id" => id} = data
|
2019-08-14 15:45:11 +00:00
|
|
|
|
) do
|
2020-01-22 01:14:42 +00:00
|
|
|
|
with actor <- Utils.get_actor(data),
|
2019-08-14 15:45:11 +00:00
|
|
|
|
{:ok, %Actor{url: _actor_url} = actor} <- Actors.get_actor_by_url(actor),
|
2019-12-03 10:29:51 +00:00
|
|
|
|
object <- Utils.get_url(object),
|
|
|
|
|
{:ok, object} <- ActivityPub.fetch_object_from_url(object),
|
|
|
|
|
{:ok, activity, object} <- ActivityPub.join(object, actor, false, %{url: id}) do
|
2019-08-14 15:45:11 +00:00
|
|
|
|
{:ok, activity, object}
|
|
|
|
|
else
|
|
|
|
|
e ->
|
|
|
|
|
Logger.debug(inspect(e))
|
|
|
|
|
:error
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def handle_incoming(
|
|
|
|
|
%{"type" => "Leave", "object" => object, "actor" => actor, "id" => _id} = data
|
|
|
|
|
) do
|
2020-01-22 01:14:42 +00:00
|
|
|
|
with actor <- Utils.get_actor(data),
|
2019-08-14 15:45:11 +00:00
|
|
|
|
{:ok, %Actor{} = actor} <- Actors.get_actor_by_url(actor),
|
2019-12-03 10:29:51 +00:00
|
|
|
|
object <- Utils.get_url(object),
|
|
|
|
|
{:ok, object} <- ActivityPub.fetch_object_from_url(object),
|
2019-08-14 15:45:11 +00:00
|
|
|
|
{:ok, activity, object} <- ActivityPub.leave(object, actor, false) do
|
|
|
|
|
{:ok, activity, object}
|
|
|
|
|
else
|
|
|
|
|
{:only_organizer, true} ->
|
|
|
|
|
Logger.warn(
|
|
|
|
|
"Actor #{inspect(actor)} tried to leave event #{inspect(object)} but it was the only organizer so we didn't detach it"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
:error
|
|
|
|
|
|
2019-11-18 17:40:03 +00:00
|
|
|
|
_e ->
|
2019-08-14 15:45:11 +00:00
|
|
|
|
:error
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-07-27 08:45:35 +00:00
|
|
|
|
#
|
|
|
|
|
# # TODO
|
|
|
|
|
# # Accept
|
|
|
|
|
# # Undo
|
|
|
|
|
#
|
2018-12-14 16:41:55 +00:00
|
|
|
|
# def handle_incoming(
|
|
|
|
|
# %{
|
|
|
|
|
# "type" => "Undo",
|
|
|
|
|
# "object" => %{"type" => "Like", "object" => object_id},
|
|
|
|
|
# "actor" => _actor,
|
|
|
|
|
# "id" => id
|
|
|
|
|
# } = data
|
|
|
|
|
# ) do
|
2020-01-22 01:14:42 +00:00
|
|
|
|
# with actor <- Utils.get_actor(data),
|
2019-10-25 15:43:37 +00:00
|
|
|
|
# %Actor{} = actor <- ActivityPub.get_or_fetch_actor_by_url(actor),
|
2019-07-30 14:40:59 +00:00
|
|
|
|
# {:ok, object} <- fetch_obj_helper(object_id) || fetch_obj_helper(object_id),
|
2018-12-14 16:41:55 +00:00
|
|
|
|
# {:ok, activity, _, _} <- ActivityPub.unlike(actor, object, id, false) do
|
|
|
|
|
# {:ok, activity}
|
|
|
|
|
# else
|
|
|
|
|
# _e -> :error
|
|
|
|
|
# end
|
|
|
|
|
# end
|
|
|
|
|
|
|
|
|
|
def handle_incoming(_) do
|
|
|
|
|
Logger.info("Handing something not supported")
|
|
|
|
|
{:error, :not_supported}
|
|
|
|
|
end
|
2018-05-19 18:29:11 +00:00
|
|
|
|
|
2019-08-14 15:45:11 +00:00
|
|
|
|
@doc """
|
|
|
|
|
Handle incoming `Accept` activities wrapping a `Follow` activity
|
|
|
|
|
"""
|
|
|
|
|
def do_handle_incoming_accept_following(follow_object, %Actor{} = actor) do
|
2019-10-25 15:43:37 +00:00
|
|
|
|
with {:follow, {:ok, %Follower{approved: false, target_actor: followed} = follow}} <-
|
2019-08-14 15:45:11 +00:00
|
|
|
|
{:follow, get_follow(follow_object)},
|
|
|
|
|
{:same_actor, true} <- {:same_actor, actor.id == followed.id},
|
2019-10-25 15:43:37 +00:00
|
|
|
|
{:ok, %Activity{} = activity, %Follower{approved: true} = follow} <-
|
2019-08-14 15:45:11 +00:00
|
|
|
|
ActivityPub.accept(
|
2019-10-25 15:43:37 +00:00
|
|
|
|
:follow,
|
|
|
|
|
follow,
|
|
|
|
|
false
|
|
|
|
|
) do
|
2019-08-14 15:45:11 +00:00
|
|
|
|
{:ok, activity, follow}
|
|
|
|
|
else
|
|
|
|
|
{:follow, _} ->
|
|
|
|
|
Logger.debug(
|
|
|
|
|
"Tried to handle an Accept activity but it's not containing a Follow activity"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
nil
|
|
|
|
|
|
|
|
|
|
{:same_actor} ->
|
|
|
|
|
{:error, "Actor who accepted the follow wasn't the target. Quite odd."}
|
|
|
|
|
|
|
|
|
|
{:ok, %Follower{approved: true} = _follow} ->
|
|
|
|
|
{:error, "Follow already accepted"}
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
@doc """
|
|
|
|
|
Handle incoming `Reject` activities wrapping a `Follow` activity
|
|
|
|
|
"""
|
|
|
|
|
def do_handle_incoming_reject_following(follow_object, %Actor{} = actor) do
|
2019-12-03 10:29:51 +00:00
|
|
|
|
with {:follow, {:ok, %Follower{approved: false, target_actor: followed} = follow}} <-
|
2019-08-14 15:45:11 +00:00
|
|
|
|
{:follow, get_follow(follow_object)},
|
|
|
|
|
{:same_actor, true} <- {:same_actor, actor.id == followed.id},
|
|
|
|
|
{:ok, activity, _} <-
|
2019-12-03 10:29:51 +00:00
|
|
|
|
ActivityPub.reject(:follow, follow) do
|
2019-08-14 15:45:11 +00:00
|
|
|
|
{:ok, activity, follow}
|
|
|
|
|
else
|
|
|
|
|
{:follow, _} ->
|
|
|
|
|
Logger.debug(
|
|
|
|
|
"Tried to handle a Reject activity but it's not containing a Follow activity"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
nil
|
|
|
|
|
|
|
|
|
|
{:same_actor} ->
|
|
|
|
|
{:error, "Actor who rejected the follow wasn't the target. Quite odd."}
|
|
|
|
|
|
|
|
|
|
{:ok, %Follower{approved: true} = _follow} ->
|
|
|
|
|
{:error, "Follow already accepted"}
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-09-30 11:48:47 +00:00
|
|
|
|
# Handle incoming `Accept` activities wrapping a `Join` activity on an event
|
|
|
|
|
defp do_handle_incoming_accept_join(join_object, %Actor{} = actor_accepting) do
|
2019-12-03 10:29:51 +00:00
|
|
|
|
with {:join_event, {:ok, %Participant{role: role, event: event} = participant}}
|
|
|
|
|
when role in [:not_approved, :rejected] <-
|
2019-08-14 15:45:11 +00:00
|
|
|
|
{:join_event, get_participant(join_object)},
|
|
|
|
|
# TODO: The actor that accepts the Join activity may another one that the event organizer ?
|
|
|
|
|
# Or maybe for groups it's the group that sends the Accept activity
|
|
|
|
|
{:same_actor, true} <- {:same_actor, actor_accepting.id == event.organizer_actor_id},
|
2019-10-25 15:43:37 +00:00
|
|
|
|
{:ok, %Activity{} = activity, %Participant{role: :participant} = participant} <-
|
2019-08-14 15:45:11 +00:00
|
|
|
|
ActivityPub.accept(
|
2019-10-25 15:43:37 +00:00
|
|
|
|
:join,
|
|
|
|
|
participant,
|
|
|
|
|
false
|
2019-08-14 15:45:11 +00:00
|
|
|
|
),
|
2019-09-30 11:48:47 +00:00
|
|
|
|
:ok <-
|
|
|
|
|
Participation.send_emails_to_local_user(participant) do
|
2019-08-14 15:45:11 +00:00
|
|
|
|
{:ok, activity, participant}
|
|
|
|
|
else
|
|
|
|
|
{:join_event, {:ok, %Participant{role: :participant}}} ->
|
|
|
|
|
Logger.debug(
|
|
|
|
|
"Tried to handle an Accept activity on a Join activity with a event object but the participant is already validated"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
nil
|
|
|
|
|
|
|
|
|
|
{:join_event, _err} ->
|
|
|
|
|
Logger.debug(
|
|
|
|
|
"Tried to handle an Accept activity but it's not containing a Join activity on a event"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
nil
|
|
|
|
|
|
|
|
|
|
{:same_actor} ->
|
|
|
|
|
{:error, "Actor who accepted the join wasn't the event organizer. Quite odd."}
|
|
|
|
|
|
|
|
|
|
{:ok, %Participant{role: :participant} = _follow} ->
|
|
|
|
|
{:error, "Participant"}
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-09-30 11:48:47 +00:00
|
|
|
|
# Handle incoming `Reject` activities wrapping a `Join` activity on an event
|
|
|
|
|
defp do_handle_incoming_reject_join(join_object, %Actor{} = actor_accepting) do
|
2019-12-03 10:29:51 +00:00
|
|
|
|
with {:join_event, {:ok, %Participant{event: event, role: role} = participant}}
|
|
|
|
|
when role != :rejected <-
|
2019-08-14 15:45:11 +00:00
|
|
|
|
{:join_event, get_participant(join_object)},
|
|
|
|
|
# TODO: The actor that accepts the Join activity may another one that the event organizer ?
|
|
|
|
|
# Or maybe for groups it's the group that sends the Accept activity
|
|
|
|
|
{:same_actor, true} <- {:same_actor, actor_accepting.id == event.organizer_actor_id},
|
2019-12-03 10:29:51 +00:00
|
|
|
|
{:ok, activity, participant} <-
|
|
|
|
|
ActivityPub.reject(:join, participant, false),
|
2019-09-30 11:48:47 +00:00
|
|
|
|
:ok <- Participation.send_emails_to_local_user(participant) do
|
2019-08-14 15:45:11 +00:00
|
|
|
|
{:ok, activity, participant}
|
|
|
|
|
else
|
2019-12-03 10:29:51 +00:00
|
|
|
|
{:join_event, {:ok, %Participant{role: :rejected}}} ->
|
|
|
|
|
Logger.warn(
|
|
|
|
|
"Tried to handle an Reject activity on a Join activity with a event object but the participant is already rejected"
|
2019-08-14 15:45:11 +00:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
nil
|
|
|
|
|
|
|
|
|
|
{:join_event, _err} ->
|
|
|
|
|
Logger.debug(
|
|
|
|
|
"Tried to handle an Reject activity but it's not containing a Join activity on a event"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
nil
|
|
|
|
|
|
|
|
|
|
{:same_actor} ->
|
|
|
|
|
{:error, "Actor who rejected the join wasn't the event organizer. Quite odd."}
|
|
|
|
|
|
|
|
|
|
{:ok, %Participant{role: :participant} = _follow} ->
|
|
|
|
|
{:error, "Participant"}
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# TODO: Add do_handle_incoming_accept_join/1 on Groups
|
|
|
|
|
|
2019-07-30 14:40:59 +00:00
|
|
|
|
defp get_follow(follow_object) do
|
|
|
|
|
with follow_object_id when not is_nil(follow_object_id) <- Utils.get_url(follow_object),
|
|
|
|
|
{:not_found, %Follower{} = follow} <-
|
2019-09-11 01:16:37 +00:00
|
|
|
|
{:not_found, Actors.get_follower_by_url(follow_object_id)} do
|
2019-07-30 14:40:59 +00:00
|
|
|
|
{:ok, follow}
|
|
|
|
|
else
|
2019-08-14 15:45:11 +00:00
|
|
|
|
{:not_found, _err} ->
|
2019-07-30 14:40:59 +00:00
|
|
|
|
{:error, "Follow URL not found"}
|
|
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
|
{:error, "ActivityPub ID not found in Accept Follow object"}
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-08-14 15:45:11 +00:00
|
|
|
|
defp get_participant(join_object) do
|
|
|
|
|
with join_object_id when not is_nil(join_object_id) <- Utils.get_url(join_object),
|
|
|
|
|
{:not_found, %Participant{} = participant} <-
|
|
|
|
|
{:not_found, Events.get_participant_by_url(join_object_id)} do
|
|
|
|
|
{:ok, participant}
|
|
|
|
|
else
|
|
|
|
|
{:not_found, _err} ->
|
|
|
|
|
{:error, "Participant URL not found"}
|
|
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
|
{:error, "ActivityPub ID not found in Accept Join object"}
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-11-12 22:30:47 +00:00
|
|
|
|
def prepare_outgoing(%{"type" => _type} = data) do
|
2018-05-17 09:32:23 +00:00
|
|
|
|
data =
|
|
|
|
|
data
|
2018-11-12 22:30:47 +00:00
|
|
|
|
|> Map.merge(Utils.make_json_ld_header())
|
2018-05-17 09:32:23 +00:00
|
|
|
|
|
|
|
|
|
{:ok, data}
|
|
|
|
|
end
|
|
|
|
|
|
2019-07-30 14:40:59 +00:00
|
|
|
|
@spec fetch_obj_helper(map() | String.t()) :: Event.t() | Comment.t() | Actor.t() | any()
|
|
|
|
|
def fetch_obj_helper(object) do
|
2019-10-25 15:43:37 +00:00
|
|
|
|
Logger.debug("fetch_obj_helper")
|
2019-07-30 14:40:59 +00:00
|
|
|
|
Logger.debug("Fetching object #{inspect(object)}")
|
2018-12-14 16:41:55 +00:00
|
|
|
|
|
2019-07-30 14:40:59 +00:00
|
|
|
|
case object |> Utils.get_url() |> ActivityPub.fetch_object_from_url() do
|
|
|
|
|
{:ok, object} ->
|
|
|
|
|
{:ok, object}
|
2018-12-14 16:41:55 +00:00
|
|
|
|
|
2019-07-30 14:40:59 +00:00
|
|
|
|
err ->
|
2019-12-03 10:29:51 +00:00
|
|
|
|
Logger.warn("Error while fetching #{inspect(object)}")
|
2019-07-30 14:40:59 +00:00
|
|
|
|
{:error, err}
|
2018-12-14 16:41:55 +00:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2019-07-30 14:40:59 +00:00
|
|
|
|
def fetch_obj_helper_as_activity_streams(object) do
|
2019-10-25 15:43:37 +00:00
|
|
|
|
Logger.debug("fetch_obj_helper_as_activity_streams")
|
|
|
|
|
|
2019-07-30 14:40:59 +00:00
|
|
|
|
with {:ok, object} <- fetch_obj_helper(object) do
|
2019-09-22 16:29:13 +00:00
|
|
|
|
{:ok, Convertible.model_to_as(object)}
|
2018-12-14 16:41:55 +00:00
|
|
|
|
end
|
|
|
|
|
end
|
2018-05-17 09:32:23 +00:00
|
|
|
|
end
|