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-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-02-19 09:39:03 +00:00
|
|
|
end
|
|
|
|
|
2018-02-25 09:56:01 +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"])
|
|
|
|
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 20:42:28 +00:00
|
|
|
|> Map.put("conversation", replied_object.data["context"])
|
|
|
|
|> Map.put("context", replied_object.data["context"])
|
2018-02-25 09:56:01 +00:00
|
|
|
e ->
|
|
|
|
Logger.error("Couldn't fetch #{object["inReplyTo"]} #{inspect(e)}")
|
|
|
|
object
|
|
|
|
end
|
|
|
|
end
|
|
|
|
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-02-18 12:03:40 +00:00
|
|
|
attachments = (object["attachment"] || [])
|
2018-02-17 17:38:58 +00:00
|
|
|
|> Enum.map(fn (data) ->
|
2018-02-18 12:03:40 +00:00
|
|
|
url = [%{"type" => "Link", "mediaType" => data["mediaType"], "href" => data["url"]}]
|
2018-02-17 17:38:58 +00:00
|
|
|
Map.put(data, "url", url)
|
|
|
|
end)
|
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("attachment", attachments)
|
2018-02-15 19:00:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# 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,
|
|
|
|
context: data["object"]["conversation"],
|
|
|
|
local: false,
|
|
|
|
published: data["published"],
|
|
|
|
additional: Map.take(data, [
|
|
|
|
"cc",
|
|
|
|
"id"
|
|
|
|
])
|
|
|
|
}
|
|
|
|
|
2018-02-21 14:22:24 +00:00
|
|
|
|
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-02-17 15:08:55 +00:00
|
|
|
def handle_incoming(%{"type" => "Follow", "object" => followed, "actor" => follower, "id" => id} = data) do
|
|
|
|
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-02-17 15:08:55 +00:00
|
|
|
ActivityPub.accept(%{to: [follower.ap_id], actor: followed.ap_id, object: data, local: true})
|
2018-02-17 13:55:44 +00:00
|
|
|
User.follow(follower, followed)
|
|
|
|
{:ok, activity}
|
|
|
|
else
|
|
|
|
_e -> :error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-17 19:13:12 +00:00
|
|
|
def handle_incoming(%{"type" => "Like", "object" => object_id, "actor" => actor, "id" => id} = data) do
|
|
|
|
with %User{} = actor <- User.get_or_fetch_by_ap_id(actor),
|
2018-02-22 08:02:34 +00:00
|
|
|
{:ok, object} <- get_obj_helper(object_id) || ActivityPub.fetch_object_from_id(object_id),
|
2018-02-17 19:13:12 +00:00
|
|
|
{:ok, activity, object} <- ActivityPub.like(actor, object, id, false) do
|
|
|
|
{:ok, activity}
|
|
|
|
else
|
|
|
|
_e -> :error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-17 20:57:31 +00:00
|
|
|
def handle_incoming(%{"type" => "Announce", "object" => object_id, "actor" => actor, "id" => id} = data) do
|
|
|
|
with %User{} = actor <- User.get_or_fetch_by_ap_id(actor),
|
2018-02-18 10:24:54 +00:00
|
|
|
{:ok, object} <- get_obj_helper(object_id) || ActivityPub.fetch_object_from_id(object_id),
|
2018-02-17 20:57:31 +00:00
|
|
|
{:ok, activity, object} <- ActivityPub.announce(actor, object, id, false) do
|
|
|
|
{:ok, activity}
|
|
|
|
else
|
|
|
|
_e -> :error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-25 15:14:25 +00:00
|
|
|
def handle_incoming(%{"type" => "Update", "object" => %{"type" => "Person"} = object, "actor" => actor_id} = data) do
|
|
|
|
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"]
|
|
|
|
update_data = new_user_data
|
|
|
|
|> Map.take([:name, :bio, :avatar])
|
|
|
|
|> Map.put(:info, Map.merge(actor.info, %{"banner" => banner}))
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
ActivityPub.update(%{local: false, to: data["to"] || [], cc: data["cc"] || [], object: object, actor: actor_id})
|
|
|
|
else
|
|
|
|
e ->
|
|
|
|
Logger.error(e)
|
|
|
|
:error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-17 19:13:12 +00:00
|
|
|
# TODO
|
|
|
|
# Accept
|
|
|
|
# Undo
|
|
|
|
|
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-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
|
|
|
|
|> add_attributed_to
|
2018-02-17 17:38:58 +00:00
|
|
|
|> prepare_attachments
|
2018-02-18 12:58:52 +00:00
|
|
|
|> set_conversation
|
2018-02-24 19:16:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
@doc
|
|
|
|
"""
|
|
|
|
internal -> Mastodon
|
|
|
|
"""
|
|
|
|
def prepare_outgoing(%{"type" => "Create", "object" => %{"type" => "Note"} = object} = data) do
|
|
|
|
object = object
|
|
|
|
|> prepare_object
|
2018-02-17 13:11:20 +00:00
|
|
|
data = data
|
|
|
|
|> Map.put("object", object)
|
|
|
|
|> Map.put("@context", "https://www.w3.org/ns/activitystreams")
|
|
|
|
|
|
|
|
{:ok, data}
|
|
|
|
end
|
|
|
|
|
2018-02-18 14:20:03 +00:00
|
|
|
def prepare_outgoing(%{"type" => type} = data) do
|
2018-02-17 15:08:55 +00:00
|
|
|
data = data
|
|
|
|
|> Map.put("@context", "https://www.w3.org/ns/activitystreams")
|
|
|
|
|
|
|
|
{:ok, data}
|
|
|
|
end
|
|
|
|
|
2018-02-18 12:51:03 +00:00
|
|
|
def add_hashtags(object) do
|
|
|
|
tags = (object["tag"] || [])
|
|
|
|
|> Enum.map fn (tag) -> %{"href" => Pleroma.Web.Endpoint.url() <> "/tags/#{tag}", "name" => "##{tag}", "type" => "Hashtag"} end
|
|
|
|
|
|
|
|
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"] || [])
|
|
|
|
mentions = recipients
|
2018-02-17 13:11:20 +00:00
|
|
|
|> Enum.map(fn (ap_id) -> User.get_cached_by_ap_id(ap_id) end)
|
|
|
|
|> Enum.filter(&(&1))
|
2018-02-17 13:20:53 +00:00
|
|
|
|> 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-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
|
|
|
|
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)
|
|
|
|
|
|
|
|
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)
|
|
|
|
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)]]
|
|
|
|
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.
|
|
|
|
since = (Repo.aggregate(Activity, :max, :id) || 0) - 100_000
|
|
|
|
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)]]
|
|
|
|
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
|
|
|
|
data = data
|
|
|
|
|> Map.put(:info, Map.merge(user.info, data[:info]))
|
|
|
|
|
|
|
|
{:ok, user} = User.upgrade_changeset(user, data)
|
|
|
|
|> Repo.update()
|
|
|
|
|
|
|
|
# This could potentially take a long time, do it in the background
|
2018-02-24 09:51:15 +00:00
|
|
|
if async do
|
|
|
|
Task.start(fn ->
|
|
|
|
user_upgrade_task(user)
|
|
|
|
end)
|
|
|
|
else
|
|
|
|
user_upgrade_task(user)
|
|
|
|
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
|
|
|
|
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}%")
|
|
|
|
Repo.delete_all(q)
|
|
|
|
end
|
|
|
|
end
|
2018-02-15 19:00:06 +00:00
|
|
|
end
|