1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.PleromaAPI.ChatView do
9 alias Pleroma.Chat.MessageReference
11 alias Pleroma.Web.CommonAPI.Utils
12 alias Pleroma.Web.MastodonAPI.AccountView
13 alias Pleroma.Web.PleromaAPI.Chat.MessageReferenceView
15 def render("show.json", %{chat: %Chat{} = chat} = opts) do
16 recipient = User.get_cached_by_ap_id(chat.recipient)
17 last_message = opts[:last_message] || MessageReference.last_message_for_chat(chat)
18 account_view_opts = account_view_opts(opts, recipient)
21 id: chat.id |> to_string(),
22 account: AccountView.render("show.json", account_view_opts),
23 unread: MessageReference.unread_count_for_chat(chat),
26 MessageReferenceView.render("show.json", chat_message_reference: last_message),
27 updated_at: Utils.to_masto_date(chat.updated_at)
31 def render("index.json", %{chats: chats} = opts) do
32 render_many(chats, __MODULE__, "show.json", Map.delete(opts, :chats))
35 defp account_view_opts(opts, recipient) do
36 account_view_opts = Map.put(opts, :user, recipient)
38 if Map.has_key?(account_view_opts, :for) do
41 Map.put(account_view_opts, :skip_visibility_check, true)