2017-04-20 08:16:06 +00:00
|
|
|
defmodule Pleroma.Web.OStatus.ActivityRepresenter do
|
2017-05-03 15:39:12 +00:00
|
|
|
alias Pleroma.{Activity, User}
|
2017-05-01 11:14:58 +00:00
|
|
|
alias Pleroma.Web.OStatus.UserRepresenter
|
2017-04-30 09:17:34 +00:00
|
|
|
require Logger
|
|
|
|
|
2017-05-05 10:07:38 +00:00
|
|
|
defp get_in_reply_to(%{"object" => %{"inReplyTo" => in_reply_to}}) do
|
2017-04-30 09:55:19 +00:00
|
|
|
[{:"thr:in-reply-to", [ref: to_charlist(in_reply_to)], []}]
|
2017-04-30 09:17:34 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
defp get_in_reply_to(_), do: []
|
|
|
|
|
2017-05-01 11:14:58 +00:00
|
|
|
defp get_mentions(to) do
|
2017-05-02 14:35:53 +00:00
|
|
|
Enum.map(to, fn (id) ->
|
|
|
|
cond do
|
|
|
|
# Special handling for the AP/Ostatus public collections
|
|
|
|
"https://www.w3.org/ns/activitystreams#Public" == id ->
|
|
|
|
{:link, [rel: "mentioned", "ostatus:object-type": "http://activitystrea.ms/schema/1.0/collection", href: "http://activityschema.org/collection/public"], []}
|
|
|
|
# Ostatus doesn't handle follower collections, ignore these.
|
|
|
|
Regex.match?(~r/^#{Pleroma.Web.base_url}.+followers$/, id) ->
|
|
|
|
[]
|
|
|
|
true ->
|
|
|
|
{:link, [rel: "mentioned", "ostatus:object-type": "http://activitystrea.ms/schema/1.0/person", href: id], []}
|
|
|
|
end
|
2017-05-01 11:14:58 +00:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_simple_form(activity, user, with_author \\ false)
|
|
|
|
def to_simple_form(%{data: %{"object" => %{"type" => "Note"}}} = activity, user, with_author) do
|
2017-04-20 08:16:06 +00:00
|
|
|
h = fn(str) -> [to_charlist(str)] end
|
|
|
|
|
2017-06-02 20:47:49 +00:00
|
|
|
updated_at = activity.data["object"]["published"]
|
|
|
|
inserted_at = activity.data["object"]["published"]
|
2017-04-20 08:16:06 +00:00
|
|
|
|
2017-04-22 10:09:13 +00:00
|
|
|
attachments = Enum.map(activity.data["object"]["attachment"] || [], fn(attachment) ->
|
|
|
|
url = hd(attachment["url"])
|
|
|
|
{:link, [rel: 'enclosure', href: to_charlist(url["href"]), type: to_charlist(url["mediaType"])], []}
|
|
|
|
end)
|
|
|
|
|
2017-04-30 09:17:34 +00:00
|
|
|
in_reply_to = get_in_reply_to(activity.data)
|
2017-05-01 11:14:58 +00:00
|
|
|
author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: []
|
|
|
|
mentions = activity.data["to"] |> get_mentions
|
2017-04-30 09:17:34 +00:00
|
|
|
|
2017-05-18 16:18:27 +00:00
|
|
|
categories = (activity.data["object"]["tag"] || [])
|
|
|
|
|> Enum.map(fn (tag) -> {:category, [term: to_charlist(tag)], []} end)
|
|
|
|
|
2017-04-20 08:16:06 +00:00
|
|
|
[
|
|
|
|
{:"activity:object-type", ['http://activitystrea.ms/schema/1.0/note']},
|
|
|
|
{:"activity:verb", ['http://activitystrea.ms/schema/1.0/post']},
|
2017-04-30 09:55:19 +00:00
|
|
|
{:id, h.(activity.data["object"]["id"])}, # For notes, federate the object id.
|
2017-04-20 08:16:06 +00:00
|
|
|
{:title, ['New note by #{user.nickname}']},
|
|
|
|
{:content, [type: 'html'], h.(activity.data["object"]["content"])},
|
|
|
|
{:published, h.(inserted_at)},
|
2017-04-26 06:47:22 +00:00
|
|
|
{:updated, h.(updated_at)},
|
|
|
|
{:"ostatus:conversation", [], h.(activity.data["context"])},
|
2017-05-20 08:44:57 +00:00
|
|
|
{:link, [ref: h.(activity.data["context"]), rel: 'ostatus:conversation'], []},
|
2017-05-03 16:10:19 +00:00
|
|
|
{:link, [type: ['application/atom+xml'], href: h.(activity.data["object"]["id"]), rel: 'self'], []}
|
2017-05-18 16:18:27 +00:00
|
|
|
] ++ categories ++ attachments ++ in_reply_to ++ author ++ mentions
|
2017-05-01 11:14:58 +00:00
|
|
|
end
|
|
|
|
|
2017-05-02 14:35:53 +00:00
|
|
|
def to_simple_form(%{data: %{"type" => "Like"}} = activity, user, with_author) do
|
|
|
|
h = fn(str) -> [to_charlist(str)] end
|
|
|
|
|
2017-05-24 11:53:31 +00:00
|
|
|
updated_at = activity.data["published"]
|
|
|
|
inserted_at = activity.data["published"]
|
2017-05-02 14:35:53 +00:00
|
|
|
|
|
|
|
in_reply_to = get_in_reply_to(activity.data)
|
|
|
|
author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: []
|
|
|
|
mentions = activity.data["to"] |> get_mentions
|
|
|
|
|
|
|
|
[
|
|
|
|
{:"activity:verb", ['http://activitystrea.ms/schema/1.0/favorite']},
|
|
|
|
{:id, h.(activity.data["id"])},
|
|
|
|
{:title, ['New favorite by #{user.nickname}']},
|
|
|
|
{:content, [type: 'html'], ['#{user.nickname} favorited something']},
|
|
|
|
{:published, h.(inserted_at)},
|
|
|
|
{:updated, h.(updated_at)},
|
|
|
|
{:"activity:object", [
|
|
|
|
{:"activity:object-type", ['http://activitystrea.ms/schema/1.0/note']},
|
|
|
|
{:id, h.(activity.data["object"])}, # For notes, federate the object id.
|
|
|
|
]},
|
|
|
|
{:"ostatus:conversation", [], h.(activity.data["context"])},
|
2017-05-20 08:44:57 +00:00
|
|
|
{:link, [ref: h.(activity.data["context"]), rel: 'ostatus:conversation'], []},
|
2017-05-03 16:10:19 +00:00
|
|
|
{:link, [rel: 'self', type: ['application/atom+xml'], href: h.(activity.data["id"])], []},
|
2017-05-02 14:35:53 +00:00
|
|
|
{:"thr:in-reply-to", [ref: to_charlist(activity.data["object"])], []}
|
|
|
|
] ++ author ++ mentions
|
|
|
|
end
|
|
|
|
|
2017-05-03 15:39:12 +00:00
|
|
|
def to_simple_form(%{data: %{"type" => "Announce"}} = activity, user, with_author) do
|
|
|
|
h = fn(str) -> [to_charlist(str)] end
|
|
|
|
|
2017-05-24 11:53:31 +00:00
|
|
|
updated_at = activity.data["published"]
|
|
|
|
inserted_at = activity.data["published"]
|
2017-05-03 15:39:12 +00:00
|
|
|
|
|
|
|
in_reply_to = get_in_reply_to(activity.data)
|
|
|
|
author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: []
|
|
|
|
|
|
|
|
retweeted_activity = Activity.get_create_activity_by_object_ap_id(activity.data["object"])
|
|
|
|
retweeted_user = User.get_cached_by_ap_id(retweeted_activity.data["actor"])
|
|
|
|
|
2017-05-03 15:51:36 +00:00
|
|
|
retweeted_xml = to_simple_form(retweeted_activity, retweeted_user, true)
|
2017-05-03 15:39:12 +00:00
|
|
|
|
|
|
|
mentions = activity.data["to"] |> get_mentions
|
|
|
|
[
|
2017-05-03 16:10:19 +00:00
|
|
|
{:"activity:object-type", ['http://activitystrea.ms/schema/1.0/activity']},
|
2017-05-03 15:39:12 +00:00
|
|
|
{:"activity:verb", ['http://activitystrea.ms/schema/1.0/share']},
|
|
|
|
{:id, h.(activity.data["id"])},
|
|
|
|
{:title, ['#{user.nickname} repeated a notice']},
|
|
|
|
{:content, [type: 'html'], ['RT #{retweeted_activity.data["object"]["content"]}']},
|
|
|
|
{:published, h.(inserted_at)},
|
|
|
|
{:updated, h.(updated_at)},
|
|
|
|
{:"ostatus:conversation", [], h.(activity.data["context"])},
|
2017-05-20 08:44:57 +00:00
|
|
|
{:link, [ref: h.(activity.data["context"]), rel: 'ostatus:conversation'], []},
|
2017-05-03 16:10:19 +00:00
|
|
|
{:link, [rel: 'self', type: ['application/atom+xml'], href: h.(activity.data["id"])], []},
|
2017-05-03 15:39:12 +00:00
|
|
|
{:"activity:object", retweeted_xml}
|
|
|
|
] ++ mentions ++ author
|
|
|
|
end
|
|
|
|
|
2017-05-07 12:45:37 +00:00
|
|
|
def to_simple_form(%{data: %{"type" => "Follow"}} = activity, user, with_author) do
|
|
|
|
h = fn(str) -> [to_charlist(str)] end
|
|
|
|
|
2017-05-24 11:53:31 +00:00
|
|
|
updated_at = activity.data["published"]
|
|
|
|
inserted_at = activity.data["published"]
|
2017-05-07 12:45:37 +00:00
|
|
|
|
|
|
|
author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: []
|
|
|
|
|
2017-05-07 12:52:19 +00:00
|
|
|
mentions = (activity.data["to"] || []) |> get_mentions
|
2017-05-07 12:45:37 +00:00
|
|
|
[
|
|
|
|
{:"activity:object-type", ['http://activitystrea.ms/schema/1.0/activity']},
|
|
|
|
{:"activity:verb", ['http://activitystrea.ms/schema/1.0/follow']},
|
|
|
|
{:id, h.(activity.data["id"])},
|
|
|
|
{:title, ['#{user.nickname} started following #{activity.data["object"]}']},
|
|
|
|
{:content, [type: 'html'], ['#{user.nickname} started following #{activity.data["object"]}']},
|
|
|
|
{:published, h.(inserted_at)},
|
|
|
|
{:updated, h.(updated_at)},
|
|
|
|
{:"activity:object", [
|
|
|
|
{:"activity:object-type", ['http://activitystrea.ms/schema/1.0/person']},
|
|
|
|
{:id, h.(activity.data["object"])},
|
|
|
|
{:uri, h.(activity.data["object"])},
|
|
|
|
]},
|
|
|
|
{:link, [rel: 'self', type: ['application/atom+xml'], href: h.(activity.data["id"])], []},
|
|
|
|
] ++ mentions ++ author
|
|
|
|
end
|
|
|
|
|
2017-05-07 17:28:23 +00:00
|
|
|
# Only undos of follow for now. Will need to get redone once there are more
|
|
|
|
def to_simple_form(%{data: %{"type" => "Undo"}} = activity, user, with_author) do
|
|
|
|
h = fn(str) -> [to_charlist(str)] end
|
|
|
|
|
2017-05-24 11:53:31 +00:00
|
|
|
updated_at = activity.data["published"]
|
|
|
|
inserted_at = activity.data["published"]
|
2017-05-07 17:28:23 +00:00
|
|
|
|
|
|
|
author = if with_author, do: [{:author, UserRepresenter.to_simple_form(user)}], else: []
|
|
|
|
follow_activity = Activity.get_by_ap_id(activity.data["object"])
|
|
|
|
|
|
|
|
mentions = (activity.data["to"] || []) |> get_mentions
|
|
|
|
[
|
|
|
|
{:"activity:object-type", ['http://activitystrea.ms/schema/1.0/activity']},
|
|
|
|
{:"activity:verb", ['http://activitystrea.ms/schema/1.0/unfollow']},
|
|
|
|
{:id, h.(activity.data["id"])},
|
|
|
|
{:title, ['#{user.nickname} stopped following #{follow_activity.data["object"]}']},
|
|
|
|
{:content, [type: 'html'], ['#{user.nickname} stopped following #{follow_activity.data["object"]}']},
|
|
|
|
{:published, h.(inserted_at)},
|
|
|
|
{:updated, h.(updated_at)},
|
|
|
|
{:"activity:object", [
|
|
|
|
{:"activity:object-type", ['http://activitystrea.ms/schema/1.0/person']},
|
|
|
|
{:id, h.(follow_activity.data["object"])},
|
|
|
|
{:uri, h.(follow_activity.data["object"])},
|
|
|
|
]},
|
|
|
|
{:link, [rel: 'self', type: ['application/atom+xml'], href: h.(activity.data["id"])], []},
|
|
|
|
] ++ mentions ++ author
|
|
|
|
end
|
|
|
|
|
2017-05-01 11:14:58 +00:00
|
|
|
def wrap_with_entry(simple_form) do
|
|
|
|
[{
|
|
|
|
:entry, [
|
|
|
|
xmlns: 'http://www.w3.org/2005/Atom',
|
|
|
|
"xmlns:thr": 'http://purl.org/syndication/thread/1.0',
|
|
|
|
"xmlns:activity": 'http://activitystrea.ms/spec/1.0/',
|
|
|
|
"xmlns:poco": 'http://portablecontacts.net/spec/1.0',
|
|
|
|
"xmlns:ostatus": 'http://ostatus.org/schema/1.0'
|
|
|
|
], simple_form
|
|
|
|
}]
|
2017-04-20 08:16:06 +00:00
|
|
|
end
|
2017-04-22 12:37:54 +00:00
|
|
|
|
2017-05-05 09:46:59 +00:00
|
|
|
def to_simple_form(_, _, _), do: nil
|
2017-04-20 08:16:06 +00:00
|
|
|
end
|