2020-04-15 16:23:16 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.PleromaAPI.ChatView do
|
|
|
|
use Pleroma.Web, :view
|
|
|
|
|
|
|
|
alias Pleroma.Chat
|
2020-06-06 09:51:10 +00:00
|
|
|
alias Pleroma.Chat.MessageReference
|
2020-04-17 12:23:59 +00:00
|
|
|
alias Pleroma.User
|
2020-05-14 11:20:28 +00:00
|
|
|
alias Pleroma.Web.CommonAPI.Utils
|
2020-04-17 12:23:59 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.AccountView
|
2020-06-06 09:51:10 +00:00
|
|
|
alias Pleroma.Web.PleromaAPI.Chat.MessageReferenceView
|
2020-04-17 12:23:59 +00:00
|
|
|
|
|
|
|
def render("show.json", %{chat: %Chat{} = chat} = opts) do
|
|
|
|
recipient = User.get_cached_by_ap_id(chat.recipient)
|
2020-06-06 09:51:10 +00:00
|
|
|
last_message = opts[:last_message] || MessageReference.last_message_for_chat(chat)
|
2020-05-10 11:00:01 +00:00
|
|
|
|
2020-04-15 16:23:16 +00:00
|
|
|
%{
|
2020-04-16 16:43:31 +00:00
|
|
|
id: chat.id |> to_string(),
|
2020-04-27 15:48:34 +00:00
|
|
|
account: AccountView.render("show.json", Map.put(opts, :user, recipient)),
|
2020-06-07 12:52:56 +00:00
|
|
|
unread: MessageReference.unread_count_for_chat(chat),
|
2020-05-10 11:00:01 +00:00
|
|
|
last_message:
|
2020-06-03 10:49:53 +00:00
|
|
|
last_message &&
|
2020-06-06 09:51:10 +00:00
|
|
|
MessageReferenceView.render("show.json", chat_message_reference: last_message),
|
2020-05-14 11:20:28 +00:00
|
|
|
updated_at: Utils.to_masto_date(chat.updated_at)
|
2020-04-15 16:23:16 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def render("index.json", %{chats: chats}) do
|
|
|
|
render_many(chats, __MODULE__, "show.json")
|
|
|
|
end
|
|
|
|
end
|