ChatView: Add update_at field.
[akkoma] / lib / pleroma / web / pleroma_api / views / chat_view.ex
index ee48385bf9ef49660f545c9be75e1937e8336468..08d5110c3ef954c8c28ec695c6f8b402d308e335 100644 (file)
@@ -6,12 +6,23 @@ defmodule Pleroma.Web.PleromaAPI.ChatView do
   use Pleroma.Web, :view
 
   alias Pleroma.Chat
+  alias Pleroma.User
+  alias Pleroma.Web.CommonAPI.Utils
+  alias Pleroma.Web.MastodonAPI.AccountView
+  alias Pleroma.Web.PleromaAPI.ChatMessageView
+
+  def render("show.json", %{chat: %Chat{} = chat} = opts) do
+    recipient = User.get_cached_by_ap_id(chat.recipient)
+
+    last_message = Chat.last_message_for_chat(chat)
 
-  def render("show.json", %{chat: %Chat{} = chat}) do
     %{
-      id: chat.id,
-      recipient: chat.recipient,
-      unread: chat.unread
+      id: chat.id |> to_string(),
+      account: AccountView.render("show.json", Map.put(opts, :user, recipient)),
+      unread: chat.unread,
+      last_message:
+        last_message && ChatMessageView.render("show.json", chat: chat, object: last_message),
+      updated_at: Utils.to_masto_date(chat.updated_at)
     }
   end