2020-04-15 10:23:16 -06: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 03:51:10 -06:00
|
|
|
alias Pleroma.Chat.MessageReference
|
2020-04-17 06:23:59 -06:00
|
|
|
alias Pleroma.User
|
2020-05-14 05:20:28 -06:00
|
|
|
alias Pleroma.Web.CommonAPI.Utils
|
2020-04-17 06:23:59 -06:00
|
|
|
alias Pleroma.Web.MastodonAPI.AccountView
|
2020-06-06 03:51:10 -06:00
|
|
|
alias Pleroma.Web.PleromaAPI.Chat.MessageReferenceView
|
2020-04-17 06:23:59 -06:00
|
|
|
|
|
|
|
def render("show.json", %{chat: %Chat{} = chat} = opts) do
|
|
|
|
recipient = User.get_cached_by_ap_id(chat.recipient)
|
2020-06-06 03:51:10 -06:00
|
|
|
last_message = opts[:last_message] || MessageReference.last_message_for_chat(chat)
|
2020-05-10 05:00:01 -06:00
|
|
|
|
2020-04-15 10:23:16 -06:00
|
|
|
%{
|
2020-04-16 10:43:31 -06:00
|
|
|
id: chat.id |> to_string(),
|
2020-04-27 09:48:34 -06:00
|
|
|
account: AccountView.render("show.json", Map.put(opts, :user, recipient)),
|
2020-06-07 06:52:56 -06:00
|
|
|
unread: MessageReference.unread_count_for_chat(chat),
|
2020-05-10 05:00:01 -06:00
|
|
|
last_message:
|
2020-06-03 04:49:53 -06:00
|
|
|
last_message &&
|
2020-06-06 03:51:10 -06:00
|
|
|
MessageReferenceView.render("show.json", chat_message_reference: last_message),
|
2020-05-14 05:20:28 -06:00
|
|
|
updated_at: Utils.to_masto_date(chat.updated_at)
|
2020-04-15 10:23:16 -06:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def render("index.json", %{chats: chats}) do
|
|
|
|
render_many(chats, __MODULE__, "show.json")
|
|
|
|
end
|
|
|
|
end
|