TwitterAPI: Add join representation.

This is mostly to prevent timelines from crashing, for now.
This commit is contained in:
eal 2018-02-06 17:49:33 +02:00
parent 4a8c4f76b7
commit 3b41ef2eaf
1 changed files with 20 additions and 0 deletions

View File

@ -76,6 +76,26 @@ defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenter do
}
end
def to_map(%Activity{data: %{"type" => "Join", "published" => created_at, "object" => joined_id}} = activity, %{user: user} = opts) do
created_at = created_at |> Utils.date_to_asctime
joined = User.get_cached_by_ap_id(joined_id)
text = "#{user.nickname} joined group #{joined.nickname}"
%{
"id" => activity.id,
"user" => UserView.render("show.json", %{user: user, for: opts[:for]}),
"attentions" => [],
"statusnet_html" => text,
"text" => text,
"is_local" => activity.local,
"is_post_verb" => false,
"created_at" => created_at,
"in_reply_to_status_id" => nil,
"external_url" => activity.data["id"],
"activity_type" => "join"
}
end
# TODO:
# Make this more proper. Just a placeholder to not break the frontend.
def to_map(%Activity{data: %{"type" => "Undo", "published" => created_at, "object" => undid_activity }} = activity, %{user: user} = opts) do