2017-04-20 08:16:06 +00:00
|
|
|
defmodule Pleroma.Web.OStatus.ActivityRepresenter do
|
2017-04-30 09:17:34 +00:00
|
|
|
alias Pleroma.Activity
|
|
|
|
require Logger
|
|
|
|
|
|
|
|
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-04-21 02:22:02 +00:00
|
|
|
def to_simple_form(%{data: %{"object" => %{"type" => "Note"}}} = activity, user) do
|
2017-04-20 08:16:06 +00:00
|
|
|
h = fn(str) -> [to_charlist(str)] end
|
|
|
|
|
|
|
|
updated_at = activity.updated_at
|
|
|
|
|> NaiveDateTime.to_iso8601
|
|
|
|
inserted_at = activity.inserted_at
|
|
|
|
|> NaiveDateTime.to_iso8601
|
|
|
|
|
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-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"])},
|
|
|
|
{:link, [href: h.(activity.data["context"]), rel: 'ostatus:conversation'], []}
|
2017-04-30 09:17:34 +00:00
|
|
|
] ++ attachments ++ in_reply_to
|
2017-04-20 08:16:06 +00:00
|
|
|
end
|
2017-04-22 12:37:54 +00:00
|
|
|
|
|
|
|
def to_simple_form(_,_), do: nil
|
2017-04-20 08:16:06 +00:00
|
|
|
end
|