2018-02-15 19:00:06 +00:00
|
|
|
defmodule Pleroma.Web.ActivityPub.Transmogrifier do
|
|
|
|
@moduledoc """
|
|
|
|
A module to handle coding from internal to wire ActivityPub and back.
|
|
|
|
"""
|
|
|
|
alias Pleroma.User
|
2018-02-17 19:13:12 +00:00
|
|
|
alias Pleroma.Object
|
2018-02-18 10:24:54 +00:00
|
|
|
alias Pleroma.Activity
|
2018-02-21 21:21:40 +00:00
|
|
|
alias Pleroma.Repo
|
2018-02-15 19:00:06 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2018-05-25 06:09:01 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Utils
|
2018-02-15 19:00:06 +00:00
|
|
|
|
2018-02-21 21:21:40 +00:00
|
|
|
import Ecto.Query
|
|
|
|
|
2018-02-23 14:00:41 +00:00
|
|
|
require Logger
|
|
|
|
|
2018-02-15 19:00:06 +00:00
|
|
|
@doc """
|
|
|
|
Modifies an incoming AP object (mastodon format) to our internal format.
|
|
|
|
"""
|
|
|
|
def fix_object(object) do
|
|
|
|
object
|
|
|
|
|> Map.put("actor", object["attributedTo"])
|
2018-02-17 17:38:58 +00:00
|
|
|
|> fix_attachments
|
2018-02-19 09:39:03 +00:00
|
|
|
|> fix_context
|
2018-02-25 09:56:01 +00:00
|
|
|
|> fix_in_reply_to
|
2018-03-13 07:05:43 +00:00
|
|
|
|> fix_emoji
|
2018-03-24 21:39:37 +00:00
|
|
|
|> fix_tag
|
2018-02-19 09:39:03 +00:00
|
|
|
end
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
def fix_in_reply_to(%{"inReplyTo" => in_reply_to_id} = object)
|
|
|
|
when not is_nil(in_reply_to_id) do
|
2018-02-25 15:14:25 +00:00
|
|
|
case ActivityPub.fetch_object_from_id(in_reply_to_id) do
|
2018-02-25 09:56:01 +00:00
|
|
|
{:ok, replied_object} ->
|
|
|
|
activity = Activity.get_create_activity_by_object_ap_id(replied_object.data["id"])
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-02-25 09:56:01 +00:00
|
|
|
object
|
|
|
|
|> Map.put("inReplyTo", replied_object.data["id"])
|
|
|
|
|> Map.put("inReplyToAtomUri", object["inReplyToAtomUri"] || in_reply_to_id)
|
|
|
|
|> Map.put("inReplyToStatusId", activity.id)
|
2018-02-25 21:20:38 +00:00
|
|
|
|> Map.put("conversation", replied_object.data["context"] || object["conversation"])
|
|
|
|
|> Map.put("context", replied_object.data["context"] || object["conversation"])
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-02-25 09:56:01 +00:00
|
|
|
e ->
|
|
|
|
Logger.error("Couldn't fetch #{object["inReplyTo"]} #{inspect(e)}")
|
|
|
|
object
|
|
|
|
end
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-02-25 09:56:01 +00:00
|
|
|
def fix_in_reply_to(object), do: object
|
|
|
|
|
2018-02-19 09:39:03 +00:00
|
|
|
def fix_context(object) do
|
|
|
|
object
|
|
|
|
|> Map.put("context", object["conversation"])
|
2018-02-17 17:38:58 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def fix_attachments(object) do
|
2018-03-30 13:01:53 +00:00
|
|
|
attachments =
|
|
|
|
(object["attachment"] || [])
|
|
|
|
|> Enum.map(fn data ->
|
|
|
|
url = [%{"type" => "Link", "mediaType" => data["mediaType"], "href" => data["url"]}]
|
|
|
|
Map.put(data, "url", url)
|
|
|
|
end)
|
2018-02-17 17:38:58 +00:00
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("attachment", attachments)
|
2018-02-15 19:00:06 +00:00
|
|
|
end
|
|
|
|
|
2018-03-13 07:05:43 +00:00
|
|
|
def fix_emoji(object) do
|
2018-03-30 13:01:53 +00:00
|
|
|
tags = object["tag"] || []
|
|
|
|
emoji = tags |> Enum.filter(fn data -> data["type"] == "Emoji" and data["icon"] end)
|
|
|
|
|
|
|
|
emoji =
|
|
|
|
emoji
|
|
|
|
|> Enum.reduce(%{}, fn data, mapping ->
|
|
|
|
name = data["name"]
|
|
|
|
|
2018-05-06 06:58:59 +00:00
|
|
|
name =
|
|
|
|
if String.starts_with?(name, ":") do
|
2018-05-07 16:11:37 +00:00
|
|
|
name |> String.slice(1..-2)
|
2018-05-06 06:58:59 +00:00
|
|
|
else
|
|
|
|
name
|
|
|
|
end
|
2018-03-13 07:05:43 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
mapping |> Map.put(name, data["icon"]["url"])
|
|
|
|
end)
|
2018-03-13 07:05:43 +00:00
|
|
|
|
|
|
|
# we merge mastodon and pleroma emoji into a single mapping, to allow for both wire formats
|
|
|
|
emoji = Map.merge(object["emoji"] || %{}, emoji)
|
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("emoji", emoji)
|
|
|
|
end
|
|
|
|
|
2018-03-24 21:39:37 +00:00
|
|
|
def fix_tag(object) do
|
2018-03-30 13:01:53 +00:00
|
|
|
tags =
|
|
|
|
(object["tag"] || [])
|
|
|
|
|> Enum.filter(fn data -> data["type"] == "Hashtag" and data["name"] end)
|
|
|
|
|> Enum.map(fn data -> String.slice(data["name"], 1..-1) end)
|
2018-03-24 21:39:37 +00:00
|
|
|
|
|
|
|
combined = (object["tag"] || []) ++ tags
|
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("tag", combined)
|
|
|
|
end
|
|
|
|
|
2018-02-15 19:00:06 +00:00
|
|
|
# TODO: validate those with a Ecto scheme
|
|
|
|
# - tags
|
|
|
|
# - emoji
|
|
|
|
def handle_incoming(%{"type" => "Create", "object" => %{"type" => "Note"} = object} = data) do
|
2018-02-19 16:37:45 +00:00
|
|
|
with nil <- Activity.get_create_activity_by_object_ap_id(object["id"]),
|
|
|
|
%User{} = user <- User.get_or_fetch_by_ap_id(data["actor"]) do
|
2018-02-15 19:00:06 +00:00
|
|
|
object = fix_object(data["object"])
|
2018-02-23 14:00:41 +00:00
|
|
|
|
2018-02-15 19:00:06 +00:00
|
|
|
params = %{
|
|
|
|
to: data["to"],
|
|
|
|
object: object,
|
|
|
|
actor: user,
|
2018-02-25 21:28:53 +00:00
|
|
|
context: object["conversation"],
|
2018-02-15 19:00:06 +00:00
|
|
|
local: false,
|
|
|
|
published: data["published"],
|
2018-03-30 13:01:53 +00:00
|
|
|
additional:
|
|
|
|
Map.take(data, [
|
|
|
|
"cc",
|
|
|
|
"id"
|
|
|
|
])
|
2018-02-15 19:00:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ActivityPub.create(params)
|
|
|
|
else
|
2018-02-19 16:37:45 +00:00
|
|
|
%Activity{} = activity -> {:ok, activity}
|
2018-02-15 19:00:06 +00:00
|
|
|
_e -> :error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
def handle_incoming(
|
|
|
|
%{"type" => "Follow", "object" => followed, "actor" => follower, "id" => id} = data
|
|
|
|
) do
|
2018-02-17 15:08:55 +00:00
|
|
|
with %User{local: true} = followed <- User.get_cached_by_ap_id(followed),
|
2018-02-17 13:55:44 +00:00
|
|
|
%User{} = follower <- User.get_or_fetch_by_ap_id(follower),
|
|
|
|
{:ok, activity} <- ActivityPub.follow(follower, followed, id, false) do
|
2018-05-26 14:55:16 +00:00
|
|
|
if not User.locked?(followed) do
|
2018-05-28 18:31:48 +00:00
|
|
|
ActivityPub.accept(%{
|
|
|
|
to: [follower.ap_id],
|
|
|
|
actor: followed.ap_id,
|
|
|
|
object: data,
|
|
|
|
local: true
|
|
|
|
})
|
|
|
|
|
2018-05-26 14:55:16 +00:00
|
|
|
User.follow(follower, followed)
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-02-17 13:55:44 +00:00
|
|
|
{:ok, activity}
|
|
|
|
else
|
|
|
|
_e -> :error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-26 13:07:21 +00:00
|
|
|
defp mastodon_follow_hack(%{"id" => id, "actor" => follower_id}, followed) do
|
|
|
|
with true <- id =~ "follows",
|
|
|
|
%User{local: true} = follower <- User.get_cached_by_ap_id(follower_id),
|
|
|
|
%Activity{} = activity <- Utils.fetch_latest_follow(follower, followed) do
|
|
|
|
{:ok, activity}
|
|
|
|
else
|
|
|
|
_ -> {:error, nil}
|
|
|
|
end
|
|
|
|
end
|
2018-05-25 08:03:34 +00:00
|
|
|
|
2018-05-26 13:07:21 +00:00
|
|
|
defp mastodon_follow_hack(_), do: {:error, nil}
|
2018-05-25 06:09:01 +00:00
|
|
|
|
2018-05-26 13:07:21 +00:00
|
|
|
defp get_follow_activity(follow_object, followed) do
|
|
|
|
with object_id when not is_nil(object_id) <- Utils.get_ap_id(follow_object),
|
|
|
|
{_, %Activity{} = activity} <- {:activity, Activity.get_by_ap_id(object_id)} do
|
|
|
|
{:ok, activity}
|
|
|
|
else
|
|
|
|
# Can't find the activity. This might a Mastodon 2.3 "Accept"
|
|
|
|
{:activity, nil} ->
|
|
|
|
mastodon_follow_hack(follow_object, followed)
|
2018-05-26 13:11:50 +00:00
|
|
|
|
2018-05-26 13:07:21 +00:00
|
|
|
_ ->
|
2018-05-25 06:09:01 +00:00
|
|
|
{:error, nil}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def handle_incoming(
|
|
|
|
%{"type" => "Accept", "object" => follow_object, "actor" => actor, "id" => id} = data
|
|
|
|
) do
|
|
|
|
with %User{} = followed <- User.get_or_fetch_by_ap_id(actor),
|
2018-05-26 13:07:21 +00:00
|
|
|
{:ok, follow_activity} <- get_follow_activity(follow_object, followed),
|
|
|
|
%User{local: true} = follower <- User.get_cached_by_ap_id(follow_activity.data["actor"]),
|
2018-05-26 13:11:50 +00:00
|
|
|
{:ok, activity} <-
|
|
|
|
ActivityPub.accept(%{
|
|
|
|
to: follow_activity.data["to"],
|
|
|
|
type: "Accept",
|
|
|
|
actor: followed.ap_id,
|
|
|
|
object: follow_activity.data["id"],
|
|
|
|
local: false
|
|
|
|
}) do
|
2018-05-25 09:38:07 +00:00
|
|
|
if not User.following?(follower, followed) do
|
2018-05-25 12:51:04 +00:00
|
|
|
{:ok, follower} = User.follow(follower, followed)
|
2018-05-25 09:38:07 +00:00
|
|
|
end
|
2018-05-25 06:09:01 +00:00
|
|
|
|
2018-05-25 12:51:04 +00:00
|
|
|
{:ok, activity}
|
2018-05-26 11:07:04 +00:00
|
|
|
else
|
|
|
|
_e -> :error
|
2018-05-25 06:09:01 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def handle_incoming(
|
|
|
|
%{"type" => "Reject", "object" => follow_object, "actor" => actor, "id" => id} = data
|
|
|
|
) do
|
|
|
|
with %User{} = followed <- User.get_or_fetch_by_ap_id(actor),
|
2018-05-26 13:07:21 +00:00
|
|
|
{:ok, follow_activity} <- get_follow_activity(follow_object, followed),
|
|
|
|
%User{local: true} = follower <- User.get_cached_by_ap_id(follow_activity.data["actor"]),
|
2018-05-26 13:11:50 +00:00
|
|
|
{:ok, activity} <-
|
|
|
|
ActivityPub.accept(%{
|
|
|
|
to: follow_activity.data["to"],
|
|
|
|
type: "Accept",
|
|
|
|
actor: followed.ap_id,
|
|
|
|
object: follow_activity.data["id"],
|
|
|
|
local: false
|
|
|
|
}) do
|
2018-05-25 09:38:07 +00:00
|
|
|
User.unfollow(follower, followed)
|
|
|
|
|
2018-05-25 12:51:04 +00:00
|
|
|
{:ok, activity}
|
2018-05-26 11:07:04 +00:00
|
|
|
else
|
|
|
|
_e -> :error
|
2018-05-25 06:09:01 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
def handle_incoming(
|
2018-05-04 20:59:01 +00:00
|
|
|
%{"type" => "Like", "object" => object_id, "actor" => actor, "id" => id} = _data
|
2018-03-30 13:01:53 +00:00
|
|
|
) do
|
2018-02-17 19:13:12 +00:00
|
|
|
with %User{} = actor <- User.get_or_fetch_by_ap_id(actor),
|
2018-04-21 07:43:53 +00:00
|
|
|
{:ok, object} <-
|
|
|
|
get_obj_helper(object_id) || ActivityPub.fetch_object_from_id(object_id),
|
2018-05-04 20:59:01 +00:00
|
|
|
{:ok, activity, _object} <- ActivityPub.like(actor, object, id, false) do
|
2018-02-17 19:13:12 +00:00
|
|
|
{:ok, activity}
|
|
|
|
else
|
|
|
|
_e -> :error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
def handle_incoming(
|
2018-05-04 21:16:02 +00:00
|
|
|
%{"type" => "Announce", "object" => object_id, "actor" => actor, "id" => id} = _data
|
2018-03-30 13:01:53 +00:00
|
|
|
) do
|
2018-02-17 20:57:31 +00:00
|
|
|
with %User{} = actor <- User.get_or_fetch_by_ap_id(actor),
|
2018-04-21 07:43:53 +00:00
|
|
|
{:ok, object} <-
|
|
|
|
get_obj_helper(object_id) || ActivityPub.fetch_object_from_id(object_id),
|
2018-05-04 21:16:02 +00:00
|
|
|
{:ok, activity, _object} <- ActivityPub.announce(actor, object, id, false) do
|
2018-02-17 20:57:31 +00:00
|
|
|
{:ok, activity}
|
|
|
|
else
|
|
|
|
_e -> :error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
def handle_incoming(
|
|
|
|
%{"type" => "Update", "object" => %{"type" => "Person"} = object, "actor" => actor_id} =
|
|
|
|
data
|
|
|
|
) do
|
2018-02-25 15:14:25 +00:00
|
|
|
with %User{ap_id: ^actor_id} = actor <- User.get_by_ap_id(object["id"]) do
|
|
|
|
{:ok, new_user_data} = ActivityPub.user_data_from_user_object(object)
|
|
|
|
|
|
|
|
banner = new_user_data[:info]["banner"]
|
2018-05-26 15:03:32 +00:00
|
|
|
locked = new_user_data[:info]["locked"] || false
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
update_data =
|
|
|
|
new_user_data
|
|
|
|
|> Map.take([:name, :bio, :avatar])
|
2018-05-26 15:03:32 +00:00
|
|
|
|> Map.put(:info, Map.merge(actor.info, %{"banner" => banner, "locked" => locked}))
|
2018-02-25 15:14:25 +00:00
|
|
|
|
|
|
|
actor
|
|
|
|
|> User.upgrade_changeset(update_data)
|
2018-02-25 15:34:24 +00:00
|
|
|
|> User.update_and_set_cache()
|
2018-02-25 15:14:25 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
ActivityPub.update(%{
|
|
|
|
local: false,
|
|
|
|
to: data["to"] || [],
|
|
|
|
cc: data["cc"] || [],
|
|
|
|
object: object,
|
|
|
|
actor: actor_id
|
|
|
|
})
|
2018-02-25 15:14:25 +00:00
|
|
|
else
|
|
|
|
e ->
|
|
|
|
Logger.error(e)
|
|
|
|
:error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-03 17:37:40 +00:00
|
|
|
# TODO: Make secure.
|
2018-03-30 13:01:53 +00:00
|
|
|
def handle_incoming(
|
2018-05-04 21:16:02 +00:00
|
|
|
%{"type" => "Delete", "object" => object_id, "actor" => actor, "id" => _id} = _data
|
2018-03-30 13:01:53 +00:00
|
|
|
) do
|
2018-05-26 11:52:05 +00:00
|
|
|
object_id = Utils.get_ap_id(object_id)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-05-04 21:16:02 +00:00
|
|
|
with %User{} = _actor <- User.get_or_fetch_by_ap_id(actor),
|
2018-04-21 07:43:53 +00:00
|
|
|
{:ok, object} <-
|
|
|
|
get_obj_helper(object_id) || ActivityPub.fetch_object_from_id(object_id),
|
2018-03-03 17:37:40 +00:00
|
|
|
{:ok, activity} <- ActivityPub.delete(object, false) do
|
|
|
|
{:ok, activity}
|
|
|
|
else
|
2018-05-04 21:16:02 +00:00
|
|
|
_e -> :error
|
2018-03-03 17:37:40 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-09 03:50:19 +00:00
|
|
|
def handle_incoming(
|
2018-05-11 19:34:46 +00:00
|
|
|
%{
|
|
|
|
"type" => "Undo",
|
2018-05-13 07:42:31 +00:00
|
|
|
"object" => %{"type" => "Announce", "object" => object_id},
|
2018-05-11 19:34:46 +00:00
|
|
|
"actor" => actor,
|
|
|
|
"id" => id
|
2018-05-20 16:05:34 +00:00
|
|
|
} = _data
|
2018-05-11 19:34:46 +00:00
|
|
|
) do
|
2018-05-09 03:50:19 +00:00
|
|
|
with %User{} = actor <- User.get_or_fetch_by_ap_id(actor),
|
|
|
|
{:ok, object} <-
|
|
|
|
get_obj_helper(object_id) || ActivityPub.fetch_object_from_id(object_id),
|
2018-06-14 01:29:55 +00:00
|
|
|
{:ok, activity, _} <- ActivityPub.unannounce(actor, object, id, false) do
|
2018-05-09 03:50:19 +00:00
|
|
|
{:ok, activity}
|
|
|
|
else
|
2018-05-20 16:05:34 +00:00
|
|
|
_e -> :error
|
2018-05-09 03:50:19 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-18 03:55:00 +00:00
|
|
|
def handle_incoming(
|
|
|
|
%{
|
|
|
|
"type" => "Undo",
|
|
|
|
"object" => %{"type" => "Follow", "object" => followed},
|
|
|
|
"actor" => follower,
|
|
|
|
"id" => id
|
2018-05-21 08:35:43 +00:00
|
|
|
} = _data
|
2018-05-18 03:55:00 +00:00
|
|
|
) do
|
2018-05-21 08:35:43 +00:00
|
|
|
with %User{local: true} = followed <- User.get_cached_by_ap_id(followed),
|
|
|
|
%User{} = follower <- User.get_or_fetch_by_ap_id(follower),
|
2018-05-21 01:01:14 +00:00
|
|
|
{:ok, activity} <- ActivityPub.unfollow(follower, followed, id, false) do
|
2018-05-18 03:55:00 +00:00
|
|
|
User.unfollow(follower, followed)
|
|
|
|
{:ok, activity}
|
|
|
|
else
|
|
|
|
e -> :error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-26 08:24:50 +00:00
|
|
|
@ap_config Application.get_env(:pleroma, :activitypub)
|
|
|
|
@accept_blocks Keyword.get(@ap_config, :accept_blocks)
|
|
|
|
|
2018-05-21 08:35:43 +00:00
|
|
|
def handle_incoming(
|
|
|
|
%{
|
|
|
|
"type" => "Undo",
|
|
|
|
"object" => %{"type" => "Block", "object" => blocked},
|
|
|
|
"actor" => blocker,
|
|
|
|
"id" => id
|
|
|
|
} = _data
|
|
|
|
) do
|
2018-05-26 08:24:50 +00:00
|
|
|
with true <- @accept_blocks,
|
|
|
|
%User{local: true} = blocked <- User.get_cached_by_ap_id(blocked),
|
2018-05-21 08:35:43 +00:00
|
|
|
%User{} = blocker <- User.get_or_fetch_by_ap_id(blocker),
|
|
|
|
{:ok, activity} <- ActivityPub.unblock(blocker, blocked, id, false) do
|
2018-05-21 09:00:58 +00:00
|
|
|
User.unblock(blocker, blocked)
|
2018-05-21 08:35:43 +00:00
|
|
|
{:ok, activity}
|
|
|
|
else
|
|
|
|
e -> :error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-20 01:23:52 +00:00
|
|
|
def handle_incoming(
|
|
|
|
%{"type" => "Block", "object" => blocked, "actor" => blocker, "id" => id} = data
|
|
|
|
) do
|
2018-05-26 08:24:50 +00:00
|
|
|
with true <- @accept_blocks,
|
|
|
|
%User{local: true} = blocked = User.get_cached_by_ap_id(blocked),
|
2018-05-18 22:09:56 +00:00
|
|
|
%User{} = blocker = User.get_or_fetch_by_ap_id(blocker),
|
2018-05-21 01:01:14 +00:00
|
|
|
{:ok, activity} <- ActivityPub.block(blocker, blocked, id, false) do
|
2018-05-20 00:57:37 +00:00
|
|
|
User.unfollow(blocker, blocked)
|
2018-05-20 02:02:13 +00:00
|
|
|
User.block(blocker, blocked)
|
2018-05-18 22:09:56 +00:00
|
|
|
{:ok, activity}
|
|
|
|
else
|
|
|
|
e -> :error
|
|
|
|
end
|
|
|
|
end
|
2018-05-20 01:23:52 +00:00
|
|
|
|
2018-05-19 13:22:43 +00:00
|
|
|
def handle_incoming(
|
|
|
|
%{
|
|
|
|
"type" => "Undo",
|
|
|
|
"object" => %{"type" => "Like", "object" => object_id},
|
|
|
|
"actor" => actor,
|
|
|
|
"id" => id
|
2018-05-20 16:05:34 +00:00
|
|
|
} = _data
|
2018-05-19 13:22:43 +00:00
|
|
|
) do
|
|
|
|
with %User{} = actor <- User.get_or_fetch_by_ap_id(actor),
|
|
|
|
{:ok, object} <-
|
|
|
|
get_obj_helper(object_id) || ActivityPub.fetch_object_from_id(object_id),
|
|
|
|
{:ok, activity, _, _} <- ActivityPub.unlike(actor, object, id, false) do
|
|
|
|
{:ok, activity}
|
|
|
|
else
|
2018-05-20 16:05:34 +00:00
|
|
|
_e -> :error
|
2018-05-19 13:22:43 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-17 13:55:44 +00:00
|
|
|
def handle_incoming(_), do: :error
|
|
|
|
|
2018-02-18 10:24:54 +00:00
|
|
|
def get_obj_helper(id) do
|
|
|
|
if object = Object.get_by_ap_id(id), do: {:ok, object}, else: nil
|
|
|
|
end
|
|
|
|
|
2018-03-23 15:07:02 +00:00
|
|
|
def set_reply_to_uri(%{"inReplyTo" => inReplyTo} = object) do
|
|
|
|
with false <- String.starts_with?(inReplyTo, "http"),
|
|
|
|
{:ok, %{data: replied_to_object}} <- get_obj_helper(inReplyTo) do
|
|
|
|
Map.put(object, "inReplyTo", replied_to_object["external_url"] || inReplyTo)
|
|
|
|
else
|
|
|
|
_e -> object
|
|
|
|
end
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-03-23 15:07:02 +00:00
|
|
|
def set_reply_to_uri(obj), do: obj
|
|
|
|
|
|
|
|
# Prepares the object of an outgoing create activity.
|
2018-02-24 19:16:41 +00:00
|
|
|
def prepare_object(object) do
|
|
|
|
object
|
2018-02-18 13:07:13 +00:00
|
|
|
|> set_sensitive
|
2018-02-18 12:51:03 +00:00
|
|
|
|> add_hashtags
|
2018-02-17 13:11:20 +00:00
|
|
|
|> add_mention_tags
|
2018-03-13 07:05:43 +00:00
|
|
|
|> add_emoji_tags
|
2018-02-17 13:11:20 +00:00
|
|
|
|> add_attributed_to
|
2018-02-17 17:38:58 +00:00
|
|
|
|> prepare_attachments
|
2018-02-18 12:58:52 +00:00
|
|
|
|> set_conversation
|
2018-03-23 15:07:02 +00:00
|
|
|
|> set_reply_to_uri
|
2018-02-24 19:16:41 +00:00
|
|
|
end
|
|
|
|
|
2018-05-04 22:03:14 +00:00
|
|
|
# @doc
|
|
|
|
# """
|
|
|
|
# internal -> Mastodon
|
|
|
|
# """
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-02-24 19:16:41 +00:00
|
|
|
def prepare_outgoing(%{"type" => "Create", "object" => %{"type" => "Note"} = object} = data) do
|
2018-03-30 13:01:53 +00:00
|
|
|
object =
|
|
|
|
object
|
|
|
|
|> prepare_object
|
|
|
|
|
|
|
|
data =
|
|
|
|
data
|
|
|
|
|> Map.put("object", object)
|
|
|
|
|> Map.put("@context", "https://www.w3.org/ns/activitystreams")
|
2018-02-17 13:11:20 +00:00
|
|
|
|
|
|
|
{:ok, data}
|
|
|
|
end
|
|
|
|
|
2018-05-26 18:03:23 +00:00
|
|
|
# Mastodon Accept/Reject requires a non-normalized object containing the actor URIs,
|
|
|
|
# because of course it does.
|
|
|
|
def prepare_outgoing(%{"type" => "Accept"} = data) do
|
2018-05-29 10:18:23 +00:00
|
|
|
follow_activity_id =
|
|
|
|
if is_binary(data["object"]) do
|
|
|
|
data["object"]
|
|
|
|
else
|
|
|
|
data["object"]["id"]
|
|
|
|
end
|
|
|
|
|
|
|
|
with follow_activity <- Activity.get_by_ap_id(follow_activity_id) do
|
2018-05-26 18:03:23 +00:00
|
|
|
object = %{
|
|
|
|
"actor" => follow_activity.actor,
|
|
|
|
"object" => follow_activity.data["object"],
|
|
|
|
"id" => follow_activity.data["id"],
|
|
|
|
"type" => "Follow"
|
|
|
|
}
|
|
|
|
|
|
|
|
data =
|
|
|
|
data
|
|
|
|
|> Map.put("object", object)
|
2018-05-27 09:09:35 +00:00
|
|
|
|> Map.put("@context", "https://www.w3.org/ns/activitystreams")
|
2018-05-26 18:03:23 +00:00
|
|
|
|
|
|
|
{:ok, data}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-27 09:10:46 +00:00
|
|
|
def prepare_outgoing(%{"type" => "Reject"} = data) do
|
2018-05-29 10:18:23 +00:00
|
|
|
follow_activity_id =
|
|
|
|
if is_binary(data["object"]) do
|
|
|
|
data["object"]
|
|
|
|
else
|
|
|
|
data["object"]["id"]
|
|
|
|
end
|
|
|
|
|
|
|
|
with follow_activity <- Activity.get_by_ap_id(follow_activity_id) do
|
2018-05-27 09:10:46 +00:00
|
|
|
object = %{
|
|
|
|
"actor" => follow_activity.actor,
|
|
|
|
"object" => follow_activity.data["object"],
|
|
|
|
"id" => follow_activity.data["id"],
|
|
|
|
"type" => "Follow"
|
|
|
|
}
|
|
|
|
|
|
|
|
data =
|
|
|
|
data
|
|
|
|
|> Map.put("object", object)
|
|
|
|
|> Map.put("@context", "https://www.w3.org/ns/activitystreams")
|
|
|
|
|
|
|
|
{:ok, data}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-04 21:16:02 +00:00
|
|
|
def prepare_outgoing(%{"type" => _type} = data) do
|
2018-03-30 13:01:53 +00:00
|
|
|
data =
|
|
|
|
data
|
|
|
|
|> maybe_fix_object_url
|
|
|
|
|> Map.put("@context", "https://www.w3.org/ns/activitystreams")
|
2018-02-17 15:08:55 +00:00
|
|
|
|
|
|
|
{:ok, data}
|
|
|
|
end
|
|
|
|
|
2018-03-13 17:46:37 +00:00
|
|
|
def maybe_fix_object_url(data) do
|
|
|
|
if is_binary(data["object"]) and not String.starts_with?(data["object"], "http") do
|
|
|
|
case ActivityPub.fetch_object_from_id(data["object"]) do
|
|
|
|
{:ok, relative_object} ->
|
|
|
|
if relative_object.data["external_url"] do
|
2018-05-04 21:16:02 +00:00
|
|
|
_data =
|
2018-03-30 13:01:53 +00:00
|
|
|
data
|
|
|
|
|> Map.put("object", relative_object.data["external_url"])
|
2018-03-13 17:46:37 +00:00
|
|
|
else
|
|
|
|
data
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-03-13 17:46:37 +00:00
|
|
|
e ->
|
|
|
|
Logger.error("Couldn't fetch #{data["object"]} #{inspect(e)}")
|
|
|
|
data
|
|
|
|
end
|
|
|
|
else
|
|
|
|
data
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-18 12:51:03 +00:00
|
|
|
def add_hashtags(object) do
|
2018-03-30 13:01:53 +00:00
|
|
|
tags =
|
|
|
|
(object["tag"] || [])
|
|
|
|
|> Enum.map(fn tag ->
|
|
|
|
%{
|
|
|
|
"href" => Pleroma.Web.Endpoint.url() <> "/tags/#{tag}",
|
|
|
|
"name" => "##{tag}",
|
|
|
|
"type" => "Hashtag"
|
|
|
|
}
|
|
|
|
end)
|
2018-02-18 12:51:03 +00:00
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("tag", tags)
|
|
|
|
end
|
|
|
|
|
2018-02-17 13:11:20 +00:00
|
|
|
def add_mention_tags(object) do
|
2018-02-19 09:39:03 +00:00
|
|
|
recipients = object["to"] ++ (object["cc"] || [])
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
mentions =
|
|
|
|
recipients
|
|
|
|
|> Enum.map(fn ap_id -> User.get_cached_by_ap_id(ap_id) end)
|
|
|
|
|> Enum.filter(& &1)
|
|
|
|
|> Enum.map(fn user ->
|
|
|
|
%{"type" => "Mention", "href" => user.ap_id, "name" => "@#{user.nickname}"}
|
|
|
|
end)
|
2018-02-17 13:11:20 +00:00
|
|
|
|
2018-02-17 13:20:53 +00:00
|
|
|
tags = object["tag"] || []
|
2018-02-17 13:11:20 +00:00
|
|
|
|
|
|
|
object
|
2018-02-17 13:20:53 +00:00
|
|
|
|> Map.put("tag", tags ++ mentions)
|
2018-02-17 13:11:20 +00:00
|
|
|
end
|
|
|
|
|
2018-03-13 07:05:43 +00:00
|
|
|
# TODO: we should probably send mtime instead of unix epoch time for updated
|
|
|
|
def add_emoji_tags(object) do
|
|
|
|
tags = object["tag"] || []
|
|
|
|
emoji = object["emoji"] || []
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
out =
|
|
|
|
emoji
|
|
|
|
|> Enum.map(fn {name, url} ->
|
|
|
|
%{
|
|
|
|
"icon" => %{"url" => url, "type" => "Image"},
|
|
|
|
"name" => ":" <> name <> ":",
|
|
|
|
"type" => "Emoji",
|
|
|
|
"updated" => "1970-01-01T00:00:00Z",
|
|
|
|
"id" => url
|
|
|
|
}
|
|
|
|
end)
|
2018-03-13 07:05:43 +00:00
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("tag", tags ++ out)
|
|
|
|
end
|
|
|
|
|
2018-02-18 12:58:52 +00:00
|
|
|
def set_conversation(object) do
|
|
|
|
Map.put(object, "conversation", object["context"])
|
|
|
|
end
|
|
|
|
|
2018-02-18 13:07:13 +00:00
|
|
|
def set_sensitive(object) do
|
|
|
|
tags = object["tag"] || []
|
|
|
|
Map.put(object, "sensitive", "nsfw" in tags)
|
|
|
|
end
|
|
|
|
|
2018-02-17 13:11:20 +00:00
|
|
|
def add_attributed_to(object) do
|
|
|
|
attributedTo = object["attributedTo"] || object["actor"]
|
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("attributedTo", attributedTo)
|
2018-02-15 19:00:06 +00:00
|
|
|
end
|
2018-02-17 17:38:58 +00:00
|
|
|
|
|
|
|
def prepare_attachments(object) do
|
2018-03-30 13:01:53 +00:00
|
|
|
attachments =
|
|
|
|
(object["attachment"] || [])
|
|
|
|
|> Enum.map(fn data ->
|
|
|
|
[%{"mediaType" => media_type, "href" => href} | _] = data["url"]
|
|
|
|
%{"url" => href, "mediaType" => media_type, "name" => data["name"], "type" => "Document"}
|
|
|
|
end)
|
2018-02-17 17:38:58 +00:00
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("attachment", attachments)
|
|
|
|
end
|
2018-02-21 21:21:40 +00:00
|
|
|
|
2018-02-24 09:51:15 +00:00
|
|
|
defp user_upgrade_task(user) do
|
|
|
|
old_follower_address = User.ap_followers(user)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
q =
|
|
|
|
from(
|
|
|
|
u in User,
|
|
|
|
where: ^old_follower_address in u.following,
|
|
|
|
update: [
|
|
|
|
set: [
|
|
|
|
following:
|
|
|
|
fragment(
|
|
|
|
"array_replace(?,?,?)",
|
|
|
|
u.following,
|
|
|
|
^old_follower_address,
|
|
|
|
^user.follower_address
|
|
|
|
)
|
|
|
|
]
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2018-02-24 09:51:15 +00:00
|
|
|
Repo.update_all(q, [])
|
|
|
|
|
2018-02-24 16:36:02 +00:00
|
|
|
maybe_retire_websub(user.ap_id)
|
|
|
|
|
2018-02-24 09:51:15 +00:00
|
|
|
# Only do this for recent activties, don't go through the whole db.
|
2018-03-08 18:07:32 +00:00
|
|
|
# Only look at the last 1000 activities.
|
|
|
|
since = (Repo.aggregate(Activity, :max, :id) || 0) - 1_000
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
q =
|
|
|
|
from(
|
|
|
|
a in Activity,
|
|
|
|
where: ^old_follower_address in a.recipients,
|
|
|
|
where: a.id > ^since,
|
|
|
|
update: [
|
|
|
|
set: [
|
|
|
|
recipients:
|
|
|
|
fragment(
|
|
|
|
"array_replace(?,?,?)",
|
|
|
|
a.recipients,
|
|
|
|
^old_follower_address,
|
|
|
|
^user.follower_address
|
|
|
|
)
|
|
|
|
]
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2018-02-24 09:51:15 +00:00
|
|
|
Repo.update_all(q, [])
|
|
|
|
end
|
|
|
|
|
|
|
|
def upgrade_user_from_ap_id(ap_id, async \\ true) do
|
2018-02-24 11:05:40 +00:00
|
|
|
with %User{local: false} = user <- User.get_by_ap_id(ap_id),
|
2018-02-21 21:21:40 +00:00
|
|
|
{:ok, data} <- ActivityPub.fetch_and_prepare_user_from_ap_id(ap_id) do
|
2018-03-30 13:01:53 +00:00
|
|
|
data =
|
|
|
|
data
|
|
|
|
|> Map.put(:info, Map.merge(user.info, data[:info]))
|
2018-02-21 21:21:40 +00:00
|
|
|
|
2018-03-07 19:19:48 +00:00
|
|
|
already_ap = User.ap_enabled?(user)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
{:ok, user} =
|
|
|
|
User.upgrade_changeset(user, data)
|
|
|
|
|> Repo.update()
|
2018-02-21 21:21:40 +00:00
|
|
|
|
2018-03-07 19:19:48 +00:00
|
|
|
if !already_ap do
|
|
|
|
# This could potentially take a long time, do it in the background
|
|
|
|
if async do
|
|
|
|
Task.start(fn ->
|
|
|
|
user_upgrade_task(user)
|
|
|
|
end)
|
|
|
|
else
|
2018-02-24 09:51:15 +00:00
|
|
|
user_upgrade_task(user)
|
2018-03-07 19:19:48 +00:00
|
|
|
end
|
2018-02-24 09:51:15 +00:00
|
|
|
end
|
2018-02-21 21:21:40 +00:00
|
|
|
|
|
|
|
{:ok, user}
|
|
|
|
else
|
|
|
|
e -> e
|
|
|
|
end
|
|
|
|
end
|
2018-02-24 16:36:02 +00:00
|
|
|
|
|
|
|
def maybe_retire_websub(ap_id) do
|
|
|
|
# some sanity checks
|
2018-03-30 13:01:53 +00:00
|
|
|
if is_binary(ap_id) && String.length(ap_id) > 8 do
|
|
|
|
q =
|
|
|
|
from(
|
|
|
|
ws in Pleroma.Web.Websub.WebsubClientSubscription,
|
|
|
|
where: fragment("? like ?", ws.topic, ^"#{ap_id}%")
|
|
|
|
)
|
|
|
|
|
2018-02-24 16:36:02 +00:00
|
|
|
Repo.delete_all(q)
|
|
|
|
end
|
|
|
|
end
|
2018-05-19 07:30:02 +00:00
|
|
|
|
|
|
|
def maybe_fix_user_url(data) do
|
|
|
|
if is_map(data["url"]) do
|
2018-05-20 16:05:34 +00:00
|
|
|
Map.put(data, "url", data["url"]["href"])
|
|
|
|
else
|
|
|
|
data
|
2018-05-19 07:30:02 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def maybe_fix_user_object(data) do
|
|
|
|
data
|
|
|
|
|> maybe_fix_user_url
|
|
|
|
end
|
2018-02-15 19:00:06 +00:00
|
|
|
end
|