d1e5f58c5c61816be6dd600c4b600b79c08d3aba
[akkoma] / lib / pleroma / web / mastodon_api / views / status_view.ex
1 defmodule Pleroma.Web.MastodonAPI.StatusView do
2 use Pleroma.Web, :view
3 alias Pleroma.Web.MastodonAPI.{AccountView, StatusView}
4 alias Pleroma.User
5
6 def render("index.json", opts) do
7 render_many(opts.activities, StatusView, "status.json", opts)
8 end
9
10 def render("status.json", %{activity: %{data: %{"object" => object}} = activity} = opts) do
11 user = User.get_cached_by_ap_id(activity.data["actor"])
12
13 like_count = object["like_count"] || 0
14 announcement_count = object["announcement_count"] || 0
15
16 tags = object["tag"] || []
17 sensitive = Enum.member?(tags, "nsfw")
18
19 mentions = activity.data["to"]
20 |> Enum.map(fn (ap_id) -> User.get_cached_by_ap_id(ap_id) end)
21 |> Enum.filter(&(&1))
22 |> Enum.map(fn (user) -> AccountView.render("mention.json", %{user: user}) end)
23
24 repeated = opts[:for] && opts[:for].ap_id in (object["announcements"] || [])
25
26 %{
27 id: activity.id,
28 uri: object["id"],
29 url: object["external_url"],
30 account: AccountView.render("account.json", %{user: user}),
31 in_reply_to_id: object["inReplyToStatusId"],
32 in_reply_to_account_id: nil,
33 reblog: nil,
34 content: HtmlSanitizeEx.basic_html(object["content"]),
35 created_at: object["published"],
36 reblogs_count: announcement_count,
37 favourites_count: like_count,
38 reblogged: !!repeated,
39 favourited: false, # fix
40 muted: false,
41 sensitive: sensitive,
42 spoiler_text: "",
43 visibility: "public",
44 media_attachments: [], # fix
45 mentions: mentions,
46 tags: [], # fix,
47 application: nil,
48 language: nil
49 }
50 end
51 end