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-15 19:00:06 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
|
|
|
|
|
|
|
@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
|
|
|
|
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
|
|
|
|
with %User{} = user <- User.get_or_fetch_by_ap_id(data["actor"]) do
|
|
|
|
object = fix_object(data["object"])
|
|
|
|
params = %{
|
|
|
|
to: data["to"],
|
|
|
|
object: object,
|
|
|
|
actor: user,
|
|
|
|
context: data["object"]["conversation"],
|
|
|
|
local: false,
|
|
|
|
published: data["published"],
|
|
|
|
additional: Map.take(data, [
|
|
|
|
"cc",
|
|
|
|
"id"
|
|
|
|
])
|
|
|
|
}
|
|
|
|
|
|
|
|
ActivityPub.create(params)
|
|
|
|
else
|
|
|
|
_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),
|
|
|
|
%Object{} = object <- Object.get_by_ap_id(object_id),
|
|
|
|
{: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-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-17 13:11:20 +00:00
|
|
|
@doc
|
|
|
|
"""
|
|
|
|
internal -> Mastodon
|
|
|
|
"""
|
|
|
|
def prepare_outgoing(%{"type" => "Create", "object" => %{"type" => "Note"} = object} = data) do
|
|
|
|
object = 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-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-17 19:47:45 +00:00
|
|
|
def prepare_outgoing(%{"type" => type} = data) when type in ["Follow", "Accept", "Like", "Announce"] 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
|
|
|
|
mentions = object["to"]
|
|
|
|
|> 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-15 19:00:06 +00:00
|
|
|
end
|