2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
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.
|
|
|
|
"""
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Activity
|
|
|
|
alias Pleroma.Object
|
|
|
|
alias Pleroma.Repo
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.User
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
|
|
|
alias Pleroma.Web.ActivityPub.Utils
|
2019-02-22 12:29:52 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Visibility
|
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-07-12 21:09:42 +00:00
|
|
|
def get_actor(%{"actor" => actor}) when is_binary(actor) do
|
|
|
|
actor
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_actor(%{"actor" => actor}) when is_list(actor) do
|
2018-08-01 01:24:39 +00:00
|
|
|
if is_binary(Enum.at(actor, 0)) do
|
|
|
|
Enum.at(actor, 0)
|
|
|
|
else
|
2018-09-26 09:27:00 +00:00
|
|
|
Enum.find(actor, fn %{"type" => type} -> type in ["Person", "Service", "Application"] end)
|
2018-08-01 01:24:39 +00:00
|
|
|
|> Map.get("id")
|
|
|
|
end
|
2018-07-12 21:09:42 +00:00
|
|
|
end
|
|
|
|
|
2018-09-26 09:27:00 +00:00
|
|
|
def get_actor(%{"actor" => %{"id" => id}}) when is_bitstring(id) do
|
|
|
|
id
|
2018-08-14 17:05:11 +00:00
|
|
|
end
|
|
|
|
|
2018-09-27 09:51:36 +00:00
|
|
|
def get_actor(%{"actor" => nil, "attributedTo" => actor}) when not is_nil(actor) do
|
|
|
|
get_actor(%{"actor" => actor})
|
|
|
|
end
|
|
|
|
|
2018-09-01 23:20:02 +00:00
|
|
|
@doc """
|
|
|
|
Checks that an imported AP object's actor matches the domain it came from.
|
|
|
|
"""
|
2018-12-09 09:12:48 +00:00
|
|
|
def contain_origin(_id, %{"actor" => nil}), do: :error
|
2018-10-25 04:27:33 +00:00
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
def contain_origin(id, %{"actor" => _actor} = params) do
|
2018-09-01 23:20:02 +00:00
|
|
|
id_uri = URI.parse(id)
|
2018-09-01 23:44:19 +00:00
|
|
|
actor_uri = URI.parse(get_actor(params))
|
2018-09-01 23:20:02 +00:00
|
|
|
|
|
|
|
if id_uri.host == actor_uri.host do
|
|
|
|
:ok
|
|
|
|
else
|
|
|
|
:error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
def contain_origin_from_id(_id, %{"id" => nil}), do: :error
|
2018-11-17 20:02:02 +00:00
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
def contain_origin_from_id(id, %{"id" => other_id} = _params) do
|
2018-11-17 20:02:02 +00:00
|
|
|
id_uri = URI.parse(id)
|
|
|
|
other_uri = URI.parse(other_id)
|
|
|
|
|
|
|
|
if id_uri.host == other_uri.host do
|
|
|
|
:ok
|
|
|
|
else
|
|
|
|
:error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
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
|
2018-07-12 16:37:42 +00:00
|
|
|
|> fix_actor
|
2018-11-01 08:56:37 +00:00
|
|
|
|> fix_url
|
2018-11-17 17:34:45 +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-06-18 21:51:22 +00:00
|
|
|
|> fix_content_map
|
2018-08-03 22:58:55 +00:00
|
|
|
|> fix_likes
|
2018-08-14 17:05:11 +00:00
|
|
|
|> fix_addressing
|
|
|
|
end
|
|
|
|
|
|
|
|
def fix_addressing_list(map, field) do
|
2019-03-19 17:30:25 +00:00
|
|
|
cond do
|
|
|
|
is_binary(map[field]) ->
|
|
|
|
Map.put(map, field, [map[field]])
|
|
|
|
|
|
|
|
is_nil(map[field]) ->
|
|
|
|
Map.put(map, field, [])
|
|
|
|
|
|
|
|
true ->
|
|
|
|
map
|
2018-08-14 17:05:11 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-17 16:05:41 +00:00
|
|
|
def fix_explicit_addressing(%{"to" => to, "cc" => cc} = object, explicit_mentions) do
|
|
|
|
explicit_to =
|
|
|
|
to
|
|
|
|
|> Enum.filter(fn x -> x in explicit_mentions end)
|
|
|
|
|
|
|
|
explicit_cc =
|
|
|
|
to
|
|
|
|
|> Enum.filter(fn x -> x not in explicit_mentions end)
|
|
|
|
|
|
|
|
final_cc =
|
|
|
|
(cc ++ explicit_cc)
|
|
|
|
|> Enum.uniq()
|
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("to", explicit_to)
|
|
|
|
|> Map.put("cc", final_cc)
|
|
|
|
end
|
|
|
|
|
|
|
|
def fix_explicit_addressing(object, _explicit_mentions), do: object
|
|
|
|
|
2018-12-23 15:35:49 +00:00
|
|
|
# if directMessage flag is set to true, leave the addressing alone
|
|
|
|
def fix_explicit_addressing(%{"directMessage" => true} = object), do: object
|
2018-11-17 16:05:41 +00:00
|
|
|
|
2018-12-23 15:35:49 +00:00
|
|
|
def fix_explicit_addressing(object) do
|
2018-11-17 16:05:41 +00:00
|
|
|
explicit_mentions =
|
|
|
|
object
|
|
|
|
|> Utils.determine_explicit_mentions()
|
|
|
|
|
|
|
|
explicit_mentions = explicit_mentions ++ ["https://www.w3.org/ns/activitystreams#Public"]
|
|
|
|
|
|
|
|
object
|
|
|
|
|> fix_explicit_addressing(explicit_mentions)
|
2018-02-19 09:39:03 +00:00
|
|
|
end
|
|
|
|
|
2019-03-19 17:27:42 +00:00
|
|
|
# if as:Public is addressed, then make sure the followers collection is also addressed
|
|
|
|
# so that the activities will be delivered to local users.
|
|
|
|
def fix_implicit_addressing(%{"to" => to, "cc" => cc} = object, followers_collection) do
|
|
|
|
recipients = to ++ cc
|
|
|
|
|
|
|
|
if followers_collection not in recipients do
|
|
|
|
cond do
|
|
|
|
"https://www.w3.org/ns/activitystreams#Public" in cc ->
|
|
|
|
to = to ++ [followers_collection]
|
|
|
|
Map.put(object, "to", to)
|
|
|
|
|
|
|
|
"https://www.w3.org/ns/activitystreams#Public" in to ->
|
|
|
|
cc = cc ++ [followers_collection]
|
|
|
|
Map.put(object, "cc", cc)
|
|
|
|
|
|
|
|
true ->
|
|
|
|
object
|
|
|
|
end
|
|
|
|
else
|
|
|
|
object
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def fix_implicit_addressing(object, _), do: object
|
|
|
|
|
2018-12-23 15:35:49 +00:00
|
|
|
def fix_addressing(object) do
|
2019-03-19 18:04:57 +00:00
|
|
|
%User{} = user = User.get_or_fetch_by_ap_id(object["actor"])
|
2019-03-19 17:27:42 +00:00
|
|
|
followers_collection = User.ap_followers(user)
|
|
|
|
|
2018-12-23 15:35:49 +00:00
|
|
|
object
|
2018-08-14 17:05:11 +00:00
|
|
|
|> fix_addressing_list("to")
|
|
|
|
|> fix_addressing_list("cc")
|
|
|
|
|> fix_addressing_list("bto")
|
|
|
|
|> fix_addressing_list("bcc")
|
2018-12-23 15:44:26 +00:00
|
|
|
|> fix_explicit_addressing
|
2019-03-19 17:27:42 +00:00
|
|
|
|> fix_implicit_addressing(followers_collection)
|
2018-02-19 09:39:03 +00:00
|
|
|
end
|
|
|
|
|
2018-07-12 16:37:42 +00:00
|
|
|
def fix_actor(%{"attributedTo" => actor} = object) do
|
|
|
|
object
|
2018-07-12 21:09:42 +00:00
|
|
|
|> Map.put("actor", get_actor(%{"actor" => actor}))
|
2018-07-12 16:37:42 +00:00
|
|
|
end
|
|
|
|
|
2019-01-27 18:27:16 +00:00
|
|
|
# Check for standardisation
|
|
|
|
# This is what Peertube does
|
|
|
|
# curl -H 'Accept: application/activity+json' $likes | jq .totalItems
|
|
|
|
# Prismo returns only an integer (count) as "likes"
|
|
|
|
def fix_likes(%{"likes" => likes} = object) when not is_map(likes) do
|
2018-08-03 22:58:55 +00:00
|
|
|
object
|
|
|
|
|> Map.put("likes", [])
|
|
|
|
|> Map.put("like_count", 0)
|
|
|
|
end
|
|
|
|
|
|
|
|
def fix_likes(object) do
|
|
|
|
object
|
|
|
|
end
|
|
|
|
|
2018-09-21 10:43:35 +00:00
|
|
|
def fix_in_reply_to(%{"inReplyTo" => in_reply_to} = object)
|
|
|
|
when not is_nil(in_reply_to) do
|
|
|
|
in_reply_to_id =
|
2018-09-25 15:12:29 +00:00
|
|
|
cond do
|
2018-09-26 18:47:18 +00:00
|
|
|
is_bitstring(in_reply_to) ->
|
|
|
|
in_reply_to
|
|
|
|
|
|
|
|
is_map(in_reply_to) && is_bitstring(in_reply_to["id"]) ->
|
|
|
|
in_reply_to["id"]
|
|
|
|
|
|
|
|
is_list(in_reply_to) && is_bitstring(Enum.at(in_reply_to, 0)) ->
|
|
|
|
Enum.at(in_reply_to, 0)
|
|
|
|
|
2018-09-25 15:12:29 +00:00
|
|
|
# Maybe I should output an error too?
|
2018-09-26 18:47:18 +00:00
|
|
|
true ->
|
|
|
|
""
|
2018-09-21 10:43:35 +00:00
|
|
|
end
|
|
|
|
|
2018-09-27 07:14:15 +00:00
|
|
|
case fetch_obj_helper(in_reply_to_id) do
|
2018-02-25 09:56:01 +00:00
|
|
|
{:ok, replied_object} ->
|
2018-06-13 22:14:53 +00:00
|
|
|
with %Activity{} = activity <-
|
2019-01-21 06:14:20 +00:00
|
|
|
Activity.get_create_by_object_ap_id(replied_object.data["id"]) do
|
2018-06-13 22:14:53 +00:00
|
|
|
object
|
|
|
|
|> Map.put("inReplyTo", replied_object.data["id"])
|
|
|
|
|> Map.put("inReplyToAtomUri", object["inReplyToAtomUri"] || in_reply_to_id)
|
|
|
|
|> Map.put("inReplyToStatusId", activity.id)
|
|
|
|
|> Map.put("conversation", replied_object.data["context"] || object["conversation"])
|
|
|
|
|> Map.put("context", replied_object.data["context"] || object["conversation"])
|
|
|
|
else
|
|
|
|
e ->
|
2018-09-27 09:10:54 +00:00
|
|
|
Logger.error("Couldn't fetch \"#{inspect(in_reply_to_id)}\", error: #{inspect(e)}")
|
2018-06-13 22:14:53 +00:00
|
|
|
object
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-02-25 09:56:01 +00:00
|
|
|
e ->
|
2018-09-27 09:10:54 +00:00
|
|
|
Logger.error("Couldn't fetch \"#{inspect(in_reply_to_id)}\", error: #{inspect(e)}")
|
2018-02-25 09:56:01 +00:00
|
|
|
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
|
2018-07-12 17:06:28 +00:00
|
|
|
context = object["context"] || object["conversation"] || Utils.generate_context_id()
|
|
|
|
|
2018-02-19 09:39:03 +00:00
|
|
|
object
|
2018-07-12 17:06:28 +00:00
|
|
|
|> Map.put("context", context)
|
|
|
|
|> Map.put("conversation", context)
|
2018-02-17 17:38:58 +00:00
|
|
|
end
|
|
|
|
|
2018-09-21 10:57:31 +00:00
|
|
|
def fix_attachments(%{"attachment" => attachment} = object) when is_list(attachment) do
|
2018-03-30 13:01:53 +00:00
|
|
|
attachments =
|
2018-09-21 10:57:31 +00:00
|
|
|
attachment
|
2018-03-30 13:01:53 +00:00
|
|
|
|> Enum.map(fn data ->
|
2018-12-23 13:28:17 +00:00
|
|
|
media_type = data["mediaType"] || data["mimeType"]
|
|
|
|
href = data["url"] || data["href"]
|
|
|
|
|
|
|
|
url = [%{"type" => "Link", "mediaType" => media_type, "href" => href}]
|
|
|
|
|
|
|
|
data
|
|
|
|
|> Map.put("mediaType", media_type)
|
|
|
|
|> Map.put("url", url)
|
2018-03-30 13:01:53 +00:00
|
|
|
end)
|
2018-02-17 17:38:58 +00:00
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("attachment", attachments)
|
2018-02-15 19:00:06 +00:00
|
|
|
end
|
|
|
|
|
2018-09-21 10:57:31 +00:00
|
|
|
def fix_attachments(%{"attachment" => attachment} = object) when is_map(attachment) do
|
2018-09-27 09:38:30 +00:00
|
|
|
Map.put(object, "attachment", [attachment])
|
|
|
|
|> fix_attachments()
|
2018-09-21 10:57:31 +00:00
|
|
|
end
|
|
|
|
|
2018-09-26 19:01:33 +00:00
|
|
|
def fix_attachments(object), do: object
|
2018-09-21 10:57:31 +00:00
|
|
|
|
2018-11-01 08:56:37 +00:00
|
|
|
def fix_url(%{"url" => url} = object) when is_map(url) do
|
|
|
|
object
|
|
|
|
|> Map.put("url", url["href"])
|
|
|
|
end
|
|
|
|
|
2018-12-23 13:28:17 +00:00
|
|
|
def fix_url(%{"type" => "Video", "url" => url} = object) when is_list(url) do
|
|
|
|
first_element = Enum.at(url, 0)
|
|
|
|
|
|
|
|
link_element =
|
|
|
|
url
|
|
|
|
|> Enum.filter(fn x -> is_map(x) end)
|
|
|
|
|> Enum.filter(fn x -> x["mimeType"] == "text/html" end)
|
|
|
|
|> Enum.at(0)
|
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("attachment", [first_element])
|
|
|
|
|> Map.put("url", link_element["href"])
|
|
|
|
end
|
|
|
|
|
|
|
|
def fix_url(%{"type" => object_type, "url" => url} = object)
|
|
|
|
when object_type != "Video" and is_list(url) do
|
2018-11-01 08:56:37 +00:00
|
|
|
first_element = Enum.at(url, 0)
|
|
|
|
|
|
|
|
url_string =
|
|
|
|
cond do
|
|
|
|
is_bitstring(first_element) -> first_element
|
|
|
|
is_map(first_element) -> first_element["href"] || ""
|
|
|
|
true -> ""
|
|
|
|
end
|
|
|
|
|
2018-12-23 13:28:17 +00:00
|
|
|
object
|
|
|
|
|> Map.put("url", url_string)
|
2018-11-01 08:56:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def fix_url(object), do: object
|
|
|
|
|
2018-09-21 12:36:29 +00:00
|
|
|
def fix_emoji(%{"tag" => tags} = object) when is_list(tags) do
|
2018-03-30 13:01:53 +00:00
|
|
|
emoji = tags |> Enum.filter(fn data -> data["type"] == "Emoji" and data["icon"] end)
|
|
|
|
|
|
|
|
emoji =
|
|
|
|
emoji
|
|
|
|
|> Enum.reduce(%{}, fn data, mapping ->
|
2018-09-21 12:36:29 +00:00
|
|
|
name = String.trim(data["name"], ":")
|
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-09-21 12:36:29 +00:00
|
|
|
def fix_emoji(%{"tag" => %{"type" => "Emoji"} = tag} = object) do
|
|
|
|
name = String.trim(tag["name"], ":")
|
|
|
|
emoji = %{name => tag["icon"]["url"]}
|
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("emoji", emoji)
|
|
|
|
end
|
|
|
|
|
2018-09-26 19:01:33 +00:00
|
|
|
def fix_emoji(object), do: object
|
2018-09-21 12:36:29 +00:00
|
|
|
|
2018-09-21 12:46:49 +00:00
|
|
|
def fix_tag(%{"tag" => tag} = object) when is_list(tag) do
|
2018-03-30 13:01:53 +00:00
|
|
|
tags =
|
2018-09-21 12:46:49 +00:00
|
|
|
tag
|
2018-03-30 13:01:53 +00:00
|
|
|
|> 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
|
|
|
|
2018-09-21 12:46:49 +00:00
|
|
|
combined = tag ++ tags
|
2018-03-24 21:39:37 +00:00
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("tag", combined)
|
|
|
|
end
|
|
|
|
|
2018-09-26 09:27:00 +00:00
|
|
|
def fix_tag(%{"tag" => %{"type" => "Hashtag", "name" => hashtag} = tag} = object) do
|
|
|
|
combined = [tag, String.slice(hashtag, 1..-1)]
|
2018-09-26 08:21:58 +00:00
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("tag", combined)
|
|
|
|
end
|
|
|
|
|
2019-02-05 00:32:49 +00:00
|
|
|
def fix_tag(%{"tag" => %{} = tag} = object), do: Map.put(object, "tag", [tag])
|
|
|
|
|
2018-09-26 19:01:33 +00:00
|
|
|
def fix_tag(object), do: object
|
2018-09-21 12:46:49 +00:00
|
|
|
|
2018-06-18 21:51:22 +00:00
|
|
|
# content map usually only has one language so this will do for now.
|
|
|
|
def fix_content_map(%{"contentMap" => content_map} = object) do
|
|
|
|
content_groups = Map.to_list(content_map)
|
|
|
|
{_, content} = Enum.at(content_groups, 0)
|
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("content", content)
|
|
|
|
end
|
|
|
|
|
|
|
|
def fix_content_map(object), do: object
|
|
|
|
|
2018-12-09 09:12:48 +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
|
|
|
|
|
|
|
|
defp mastodon_follow_hack(_, _), do: {:error, nil}
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
{:error, nil}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-14 19:06:02 +00:00
|
|
|
# Flag objects are placed ahead of the ID check because Mastodon 2.8 and earlier send them
|
|
|
|
# with nil ID.
|
|
|
|
def handle_incoming(%{"type" => "Flag", "object" => objects, "actor" => actor} = data) do
|
|
|
|
with context <- data["context"] || Utils.generate_context_id(),
|
|
|
|
content <- data["content"] || "",
|
|
|
|
%User{} = actor <- User.get_cached_by_ap_id(actor),
|
|
|
|
|
|
|
|
# Reduce the object list to find the reported user.
|
|
|
|
%User{} = account <-
|
|
|
|
Enum.reduce_while(objects, nil, fn ap_id, _ ->
|
|
|
|
with %User{} = user <- User.get_cached_by_ap_id(ap_id) do
|
|
|
|
{:halt, user}
|
|
|
|
else
|
|
|
|
_ -> {:cont, nil}
|
|
|
|
end
|
|
|
|
end),
|
|
|
|
|
|
|
|
# Remove the reported user from the object list.
|
|
|
|
statuses <- Enum.filter(objects, fn ap_id -> ap_id != account.ap_id end) do
|
|
|
|
params = %{
|
|
|
|
actor: actor,
|
|
|
|
context: context,
|
|
|
|
account: account,
|
|
|
|
statuses: statuses,
|
|
|
|
content: content,
|
|
|
|
additional: %{
|
|
|
|
"cc" => [account.ap_id]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ActivityPub.flag(params)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-23 01:23:02 +00:00
|
|
|
# disallow objects with bogus IDs
|
|
|
|
def handle_incoming(%{"id" => nil}), do: :error
|
|
|
|
def handle_incoming(%{"id" => ""}), do: :error
|
|
|
|
# length of https:// = 8, should validate better, but good enough for now.
|
|
|
|
def handle_incoming(%{"id" => id}) when not (is_binary(id) and length(id) > 8), do: :error
|
|
|
|
|
2018-02-15 19:00:06 +00:00
|
|
|
# TODO: validate those with a Ecto scheme
|
|
|
|
# - tags
|
|
|
|
# - emoji
|
2018-06-24 06:34:44 +00:00
|
|
|
def handle_incoming(%{"type" => "Create", "object" => %{"type" => objtype} = object} = data)
|
2018-11-01 09:40:47 +00:00
|
|
|
when objtype in ["Article", "Note", "Video", "Page"] do
|
2018-07-12 21:09:42 +00:00
|
|
|
actor = get_actor(data)
|
2018-08-14 17:05:11 +00:00
|
|
|
|
|
|
|
data =
|
|
|
|
Map.put(data, "actor", actor)
|
|
|
|
|> fix_addressing
|
2018-07-12 21:09:42 +00:00
|
|
|
|
2019-01-21 06:14:20 +00:00
|
|
|
with nil <- Activity.get_create_by_object_ap_id(object["id"]),
|
2018-02-19 16:37:45 +00:00
|
|
|
%User{} = user <- User.get_or_fetch_by_ap_id(data["actor"]) do
|
2018-07-12 21:09:42 +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",
|
2018-12-23 15:35:49 +00:00
|
|
|
"directMessage",
|
2018-03-30 13:01:53 +00:00
|
|
|
"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],
|
2019-02-09 23:26:29 +00:00
|
|
|
actor: followed,
|
2018-05-28 18:31:48 +00:00
|
|
|
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-25 06:09:01 +00:00
|
|
|
def handle_incoming(
|
2018-12-09 09:12:48 +00:00
|
|
|
%{"type" => "Accept", "object" => follow_object, "actor" => _actor, "id" => _id} = data
|
2018-05-25 06:09:01 +00:00
|
|
|
) do
|
2018-09-27 07:14:15 +00:00
|
|
|
with actor <- get_actor(data),
|
|
|
|
%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),
|
2018-10-05 23:30:34 +00:00
|
|
|
{:ok, follow_activity} <- Utils.update_follow_state(follow_activity, "accept"),
|
2018-05-26 13:07:21 +00:00
|
|
|
%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",
|
2019-02-09 23:26:29 +00:00
|
|
|
actor: followed,
|
2018-05-26 13:11:50 +00:00
|
|
|
object: follow_activity.data["id"],
|
|
|
|
local: false
|
|
|
|
}) do
|
2018-05-25 09:38:07 +00:00
|
|
|
if not User.following?(follower, followed) do
|
2018-12-09 09:12:48 +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(
|
2018-12-09 09:12:48 +00:00
|
|
|
%{"type" => "Reject", "object" => follow_object, "actor" => _actor, "id" => _id} = data
|
2018-05-25 06:09:01 +00:00
|
|
|
) do
|
2018-09-27 07:14:15 +00:00
|
|
|
with actor <- get_actor(data),
|
|
|
|
%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),
|
2018-10-05 23:30:34 +00:00
|
|
|
{:ok, follow_activity} <- Utils.update_follow_state(follow_activity, "reject"),
|
2018-05-26 13:07:21 +00:00
|
|
|
%User{local: true} = follower <- User.get_cached_by_ap_id(follow_activity.data["actor"]),
|
2018-05-26 13:11:50 +00:00
|
|
|
{:ok, activity} <-
|
2019-01-29 11:57:46 +00:00
|
|
|
ActivityPub.reject(%{
|
2018-05-26 13:11:50 +00:00
|
|
|
to: follow_activity.data["to"],
|
2019-01-29 11:57:46 +00:00
|
|
|
type: "Reject",
|
2019-02-09 23:26:29 +00:00
|
|
|
actor: followed,
|
2018-05-26 13:11:50 +00:00
|
|
|
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-12-09 09:12:48 +00:00
|
|
|
%{"type" => "Like", "object" => object_id, "actor" => _actor, "id" => id} = data
|
2018-03-30 13:01:53 +00:00
|
|
|
) do
|
2018-09-27 07:14:15 +00:00
|
|
|
with actor <- get_actor(data),
|
|
|
|
%User{} = actor <- User.get_or_fetch_by_ap_id(actor),
|
|
|
|
{:ok, object} <- get_obj_helper(object_id) || fetch_obj_helper(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-12-09 09:12:48 +00:00
|
|
|
%{"type" => "Announce", "object" => object_id, "actor" => _actor, "id" => id} = data
|
2018-03-30 13:01:53 +00:00
|
|
|
) do
|
2018-09-27 07:14:15 +00:00
|
|
|
with actor <- get_actor(data),
|
|
|
|
%User{} = actor <- User.get_or_fetch_by_ap_id(actor),
|
|
|
|
{:ok, object} <- get_obj_helper(object_id) || fetch_obj_helper(object_id),
|
2019-02-22 12:29:52 +00:00
|
|
|
public <- Visibility.is_public?(data),
|
2019-01-17 23:19:15 +00:00
|
|
|
{:ok, activity, _object} <- ActivityPub.announce(actor, object, id, false, public) 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(
|
2018-09-10 01:57:03 +00:00
|
|
|
%{"type" => "Update", "object" => %{"type" => object_type} = object, "actor" => actor_id} =
|
2018-03-30 13:01:53 +00:00
|
|
|
data
|
2018-09-10 01:57:03 +00:00
|
|
|
)
|
|
|
|
when object_type in ["Person", "Application", "Service", "Organization"] 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-11-30 16:31:05 +00:00
|
|
|
|> Map.put(: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-11-17 21:22:30 +00:00
|
|
|
# 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.
|
2018-03-30 13:01:53 +00:00
|
|
|
def handle_incoming(
|
2018-11-17 21:22:30 +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-09-27 07:14:15 +00:00
|
|
|
with actor <- get_actor(data),
|
2018-11-17 21:22:30 +00:00
|
|
|
%User{} = actor <- User.get_or_fetch_by_ap_id(actor),
|
2018-09-27 07:14:15 +00:00
|
|
|
{:ok, object} <- get_obj_helper(object_id) || fetch_obj_helper(object_id),
|
2018-11-17 21:22:30 +00:00
|
|
|
:ok <- contain_origin(actor.ap_id, object.data),
|
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-12-09 09:12:48 +00:00
|
|
|
"actor" => _actor,
|
2018-05-11 19:34:46 +00:00
|
|
|
"id" => id
|
2018-09-27 07:14:15 +00:00
|
|
|
} = data
|
2018-05-11 19:34:46 +00:00
|
|
|
) do
|
2018-09-27 07:14:15 +00:00
|
|
|
with actor <- get_actor(data),
|
|
|
|
%User{} = actor <- User.get_or_fetch_by_ap_id(actor),
|
|
|
|
{:ok, object} <- get_obj_helper(object_id) || fetch_obj_helper(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
|
2018-12-09 09:12:48 +00:00
|
|
|
_e -> :error
|
2018-05-18 03:55:00 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
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-11-06 18:34:57 +00:00
|
|
|
with true <- Pleroma.Config.get([:activitypub, :accept_blocks]),
|
2018-05-26 08:24:50 +00:00
|
|
|
%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
|
2018-12-09 09:12:48 +00:00
|
|
|
_e -> :error
|
2018-05-21 08:35:43 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-20 01:23:52 +00:00
|
|
|
def handle_incoming(
|
2018-12-09 09:12:48 +00:00
|
|
|
%{"type" => "Block", "object" => blocked, "actor" => blocker, "id" => id} = _data
|
2018-05-20 01:23:52 +00:00
|
|
|
) do
|
2018-11-06 18:34:57 +00:00
|
|
|
with true <- Pleroma.Config.get([:activitypub, :accept_blocks]),
|
2018-05-26 08:24:50 +00:00
|
|
|
%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
|
2018-12-09 09:12:48 +00:00
|
|
|
_e -> :error
|
2018-05-18 22:09:56 +00:00
|
|
|
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},
|
2018-12-09 09:12:48 +00:00
|
|
|
"actor" => _actor,
|
2018-05-19 13:22:43 +00:00
|
|
|
"id" => id
|
2018-09-27 07:14:15 +00:00
|
|
|
} = data
|
2018-05-19 13:22:43 +00:00
|
|
|
) do
|
2018-09-27 07:14:15 +00:00
|
|
|
with actor <- get_actor(data),
|
|
|
|
%User{} = actor <- User.get_or_fetch_by_ap_id(actor),
|
|
|
|
{:ok, object} <- get_obj_helper(object_id) || fetch_obj_helper(object_id),
|
2018-05-19 13:22:43 +00:00
|
|
|
{: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-09-27 07:14:15 +00:00
|
|
|
def fetch_obj_helper(id) when is_bitstring(id), do: ActivityPub.fetch_object_from_id(id)
|
|
|
|
def fetch_obj_helper(obj) when is_map(obj), do: ActivityPub.fetch_object_from_id(obj["id"])
|
|
|
|
|
2018-02-18 10:24:54 +00:00
|
|
|
def get_obj_helper(id) do
|
2018-06-18 21:01:33 +00:00
|
|
|
if object = Object.normalize(id), do: {:ok, object}, else: nil
|
2018-02-18 10:24:54 +00:00
|
|
|
end
|
|
|
|
|
2019-03-05 03:36:19 +00:00
|
|
|
def set_reply_to_uri(%{"inReplyTo" => in_reply_to} = object) when is_binary(in_reply_to) do
|
|
|
|
with false <- String.starts_with?(in_reply_to, "http"),
|
|
|
|
{:ok, %{data: replied_to_object}} <- get_obj_helper(in_reply_to) do
|
|
|
|
Map.put(object, "inReplyTo", replied_to_object["external_url"] || in_reply_to)
|
2018-03-23 15:07:02 +00:00
|
|
|
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
|
2019-01-09 08:22:00 +00:00
|
|
|
|> add_likes
|
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-11-10 12:08:53 +00:00
|
|
|
|> strip_internal_fields
|
|
|
|
|> strip_internal_tags
|
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
|
|
|
|
2019-01-12 16:52:30 +00:00
|
|
|
def prepare_outgoing(%{"type" => "Create", "object" => object} = data) do
|
2018-03-30 13:01:53 +00:00
|
|
|
object =
|
|
|
|
object
|
|
|
|
|> prepare_object
|
|
|
|
|
|
|
|
data =
|
|
|
|
data
|
|
|
|
|> Map.put("object", object)
|
2018-11-08 15:39:38 +00:00
|
|
|
|> Map.merge(Utils.make_json_ld_header())
|
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-06-18 21:21:03 +00:00
|
|
|
with follow_activity <- Activity.normalize(data["object"]) 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-11-08 15:39:38 +00:00
|
|
|
|> Map.merge(Utils.make_json_ld_header())
|
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-06-18 21:21:03 +00:00
|
|
|
with follow_activity <- Activity.normalize(data["object"]) 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)
|
2018-11-08 15:39:38 +00:00
|
|
|
|> Map.merge(Utils.make_json_ld_header())
|
2018-05-27 09:10:46 +00:00
|
|
|
|
|
|
|
{: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
|
2019-03-09 11:12:15 +00:00
|
|
|
|> strip_internal_fields
|
2018-03-30 13:01:53 +00:00
|
|
|
|> maybe_fix_object_url
|
2018-11-08 15:39:38 +00:00
|
|
|
|> Map.merge(Utils.make_json_ld_header())
|
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
|
2018-09-27 07:14:15 +00:00
|
|
|
case fetch_obj_helper(data["object"]) do
|
2018-03-13 17:46:37 +00:00
|
|
|
{: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"] || [])
|
2019-02-14 00:27:35 +00:00
|
|
|
|> Enum.map(fn
|
|
|
|
# Expand internal representation tags into AS2 tags.
|
|
|
|
tag when is_binary(tag) ->
|
|
|
|
%{
|
|
|
|
"href" => Pleroma.Web.Endpoint.url() <> "/tags/#{tag}",
|
|
|
|
"name" => "##{tag}",
|
|
|
|
"type" => "Hashtag"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Do not process tags which are already AS2 tag objects.
|
|
|
|
tag when is_map(tag) ->
|
|
|
|
tag
|
2018-03-30 13:01:53 +00:00
|
|
|
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-03-30 13:01:53 +00:00
|
|
|
mentions =
|
2018-11-08 19:31:59 +00:00
|
|
|
object
|
|
|
|
|> Utils.get_notified_from_object()
|
2018-03-30 13:01: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-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
|
2019-03-05 03:36:19 +00:00
|
|
|
attributed_to = object["attributedTo"] || object["actor"]
|
2018-02-17 13:11:20 +00:00
|
|
|
|
|
|
|
object
|
2019-03-05 03:36:19 +00:00
|
|
|
|> Map.put("attributedTo", attributed_to)
|
2018-02-15 19:00:06 +00:00
|
|
|
end
|
2018-02-17 17:38:58 +00:00
|
|
|
|
2019-01-09 08:22:00 +00:00
|
|
|
def add_likes(%{"id" => id, "like_count" => likes} = object) do
|
|
|
|
likes = %{
|
|
|
|
"id" => "#{id}/likes",
|
|
|
|
"first" => "#{id}/likes?page=1",
|
|
|
|
"type" => "OrderedCollection",
|
|
|
|
"totalItems" => likes
|
|
|
|
}
|
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("likes", likes)
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_likes(object) do
|
|
|
|
object
|
|
|
|
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-11-10 12:08:53 +00:00
|
|
|
defp strip_internal_fields(object) do
|
|
|
|
object
|
|
|
|
|> Map.drop([
|
|
|
|
"like_count",
|
|
|
|
"announcements",
|
|
|
|
"announcement_count",
|
|
|
|
"emoji",
|
2019-03-09 11:12:15 +00:00
|
|
|
"context_id",
|
|
|
|
"deleted_activity_id"
|
2018-11-10 12:08:53 +00:00
|
|
|
])
|
|
|
|
end
|
|
|
|
|
|
|
|
defp strip_internal_tags(%{"tag" => tags} = object) do
|
|
|
|
tags =
|
|
|
|
tags
|
|
|
|
|> Enum.filter(fn x -> is_map(x) end)
|
|
|
|
|
|
|
|
object
|
|
|
|
|> Map.put("tag", tags)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp strip_internal_tags(object), do: object
|
|
|
|
|
2018-02-24 09:51:15 +00:00
|
|
|
defp user_upgrade_task(user) do
|
2019-03-19 18:39:33 +00:00
|
|
|
# we pass a fake user so that the followers collection is stripped away
|
|
|
|
old_follower_address = User.ap_followers(%User{nickname: user.nickname})
|
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-03-30 13:01:53 +00:00
|
|
|
q =
|
|
|
|
from(
|
|
|
|
a in Activity,
|
|
|
|
where: ^old_follower_address in a.recipients,
|
|
|
|
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-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
|