pleroma/lib/pleroma/web/twitter_api/representers/activity_representer.ex

113 lines
4.0 KiB
Elixir
Raw Normal View History

2017-03-21 17:53:20 +01:00
defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenter do
use Pleroma.Web.TwitterAPI.Representers.BaseRepresenter
2017-03-30 17:07:03 +02:00
alias Pleroma.Web.TwitterAPI.Representers.{UserRepresenter, ObjectRepresenter}
2017-03-22 16:51:20 +01:00
alias Pleroma.Activity
2017-03-21 17:53:20 +01:00
2017-04-12 19:34:58 +02:00
2017-04-15 13:54:46 +02:00
defp user_by_ap_id(user_list, ap_id) do
Enum.find(user_list, fn (%{ap_id: user_id}) -> ap_id == user_id end)
end
def to_map(%Activity{data: %{"type" => "Announce", "actor" => actor}} = activity, %{users: users, announced_activity: announced_activity} = opts) do
user = user_by_ap_id(users, actor)
created_at = get_in(activity.data, ["published"])
|> date_to_asctime
text = "#{user.nickname} retweeted a status."
announced_user = user_by_ap_id(users, announced_activity.data["actor"])
retweeted_status = to_map(announced_activity, Map.merge(%{user: announced_user}, opts))
%{
"id" => activity.id,
"user" => UserRepresenter.to_map(user, opts),
"statusnet_html" => text,
"text" => text,
"is_local" => true,
"is_post_verb" => false,
"uri" => "tag:#{activity.data["id"]}:objectType=note",
"created_at" => created_at,
"retweeted_status" => retweeted_status
}
end
2017-04-13 17:05:53 +02:00
def to_map(%Activity{data: %{"type" => "Like"}} = activity, %{user: user, liked_activity: liked_activity} = opts) do
created_at = get_in(activity.data, ["published"])
|> date_to_asctime
text = "#{user.nickname} favorited a status."
%{
"id" => activity.id,
"user" => UserRepresenter.to_map(user, opts),
"statusnet_html" => text, # TODO: add summary
"text" => text,
"is_local" => true,
"is_post_verb" => false,
"uri" => "tag:#{activity.data["id"]}:objectType=Favourite",
"created_at" => created_at,
"in_reply_to_status_id" => liked_activity.id,
}
end
2017-04-05 01:04:54 +02:00
def to_map(%Activity{data: %{"type" => "Follow"}} = activity, %{user: user} = opts) do
2017-04-12 19:34:58 +02:00
created_at = get_in(activity.data, ["published"])
|> date_to_asctime
2017-04-05 01:04:54 +02:00
%{
"id" => activity.id,
"user" => UserRepresenter.to_map(user, opts),
"attentions" => [],
"statusnet_html" => "", # TODO: add summary
"text" => "",
"is_local" => true,
"is_post_verb" => false,
2017-04-12 19:34:58 +02:00
"created_at" => created_at,
2017-04-05 01:04:54 +02:00
"in_reply_to_status_id" => nil,
}
end
def to_map(%Activity{} = activity, %{user: user} = opts) do
2017-03-21 17:53:20 +01:00
content = get_in(activity.data, ["object", "content"])
2017-04-12 19:34:58 +02:00
created_at = get_in(activity.data, ["object", "published"])
|> date_to_asctime
2017-04-13 16:19:07 +02:00
like_count = get_in(activity.data, ["object", "like_count"]) || 0
2017-04-15 13:54:46 +02:00
announcement_count = get_in(activity.data, ["object", "announcement_count"]) || 0
favorited = opts[:for] && opts[:for].ap_id in (activity.data["object"]["likes"] || [])
2017-04-15 13:54:46 +02:00
repeated = opts[:for] && opts[:for].ap_id in (activity.data["object"]["announcements"] || [])
mentions = opts[:mentioned] || []
attentions = activity.data["to"]
|> Enum.map(fn (ap_id) -> Enum.find(mentions, fn(user) -> ap_id == user.ap_id end) end)
|> Enum.filter(&(&1))
|> Enum.map(fn (user) -> UserRepresenter.to_map(user, opts) end)
2017-03-21 17:53:20 +01:00
%{
"id" => activity.id,
"user" => UserRepresenter.to_map(user, opts),
2017-03-21 17:53:20 +01:00
"attentions" => [],
"statusnet_html" => content,
2017-04-12 17:22:29 +02:00
"text" => HtmlSanitizeEx.strip_tags(content),
2017-03-21 17:53:20 +01:00
"is_local" => true,
2017-03-22 16:51:20 +01:00
"is_post_verb" => true,
2017-04-12 19:34:58 +02:00
"created_at" => created_at,
"in_reply_to_status_id" => activity.data["object"]["inReplyToStatusId"],
2017-03-30 17:07:03 +02:00
"statusnet_conversation_id" => activity.data["object"]["statusnetConversationId"],
"attachments" => (activity.data["object"]["attachment"] || []) |> ObjectRepresenter.enum_to_list(opts),
2017-04-13 16:19:07 +02:00
"attentions" => attentions,
"fave_num" => like_count,
2017-04-15 13:54:46 +02:00
"repeat_num" => announcement_count,
"favorited" => !!favorited,
"repeated" => !!repeated,
2017-03-21 17:53:20 +01:00
}
end
2017-04-12 19:34:58 +02:00
defp date_to_asctime(date) do
with {:ok, date, _offset} <- date |> DateTime.from_iso8601 do
Calendar.Strftime.strftime!(date, "%a %b %d %H:%M:%S %z %Y")
2017-04-13 16:19:07 +02:00
else _e ->
2017-04-12 19:34:58 +02:00
""
end
end
2017-03-21 17:53:20 +01:00
end