mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-05 08:03:11 +00:00
23 lines
841 B
Elixir
23 lines
841 B
Elixir
defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenter do
|
|
use Pleroma.Web.TwitterAPI.Representers.BaseRepresenter
|
|
alias Pleroma.Web.TwitterAPI.Representers.UserRepresenter
|
|
alias Pleroma.Activity
|
|
|
|
def to_map(%Activity{} = activity, %{user: user} = opts) do
|
|
content = get_in(activity.data, ["object", "content"])
|
|
published = get_in(activity.data, ["object", "published"])
|
|
%{
|
|
"id" => activity.id,
|
|
"user" => UserRepresenter.to_map(user, opts),
|
|
"attentions" => [],
|
|
"statusnet_html" => content,
|
|
"text" => content,
|
|
"is_local" => true,
|
|
"is_post_verb" => true,
|
|
"created_at" => published,
|
|
"in_reply_to_status_id" => activity.data["object"]["inReplyToStatusId"],
|
|
"statusnet_conversation_id" => activity.data["object"]["statusnetConversationId"]
|
|
}
|
|
end
|
|
end
|