33 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Elixir
		
	
	
	
	
	
# 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
 | 
						|
  alias Pleroma.Chat.MessageReference
 | 
						|
  alias Pleroma.User
 | 
						|
  alias Pleroma.Web.CommonAPI.Utils
 | 
						|
  alias Pleroma.Web.MastodonAPI.AccountView
 | 
						|
  alias Pleroma.Web.PleromaAPI.Chat.MessageReferenceView
 | 
						|
 | 
						|
  def render("show.json", %{chat: %Chat{} = chat} = opts) do
 | 
						|
    recipient = User.get_cached_by_ap_id(chat.recipient)
 | 
						|
    last_message = opts[:last_message] || MessageReference.last_message_for_chat(chat)
 | 
						|
 | 
						|
    %{
 | 
						|
      id: chat.id |> to_string(),
 | 
						|
      account: AccountView.render("show.json", Map.put(opts, :user, recipient)),
 | 
						|
      unread: MessageReference.unread_count_for_chat(chat),
 | 
						|
      last_message:
 | 
						|
        last_message &&
 | 
						|
          MessageReferenceView.render("show.json", chat_message_reference: last_message),
 | 
						|
      updated_at: Utils.to_masto_date(chat.updated_at)
 | 
						|
    }
 | 
						|
  end
 | 
						|
 | 
						|
  def render("index.json", %{chats: chats}) do
 | 
						|
    render_many(chats, __MODULE__, "show.json")
 | 
						|
  end
 | 
						|
end
 |