2019-07-10 07:13:23 +02:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 23:44:49 +01:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-07-10 07:13:23 +02:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-04-21 18:14:27 +02:00
|
|
|
defmodule Pleroma.Web.MastodonAPI.ConversationView do
|
|
|
|
use Pleroma.Web, :view
|
|
|
|
|
|
|
|
alias Pleroma.Activity
|
|
|
|
alias Pleroma.Repo
|
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2019-04-21 18:24:33 +02:00
|
|
|
alias Pleroma.Web.MastodonAPI.AccountView
|
2019-04-21 18:14:27 +02:00
|
|
|
alias Pleroma.Web.MastodonAPI.StatusView
|
|
|
|
|
2019-09-30 11:52:07 +02:00
|
|
|
def render("participations.json", %{participations: participations, for: user}) do
|
2019-11-14 15:26:59 +01:00
|
|
|
safe_render_many(participations, __MODULE__, "participation.json", %{
|
|
|
|
as: :participation,
|
|
|
|
for: user
|
|
|
|
})
|
2019-09-30 11:52:07 +02:00
|
|
|
end
|
|
|
|
|
2019-08-12 14:23:06 +02:00
|
|
|
def render("participation.json", %{participation: participation, for: user}) do
|
2019-08-12 12:51:08 +02:00
|
|
|
participation = Repo.preload(participation, conversation: [], recipients: [])
|
2019-04-21 18:14:27 +02:00
|
|
|
|
|
|
|
last_activity_id =
|
|
|
|
with nil <- participation.last_activity_id do
|
|
|
|
ActivityPub.fetch_latest_activity_id_for_context(participation.conversation.ap_id, %{
|
2020-06-04 19:33:16 +02:00
|
|
|
user: user,
|
|
|
|
blocking_user: user
|
2019-04-21 18:14:27 +02:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
activity = Activity.get_by_id_with_object(last_activity_id)
|
2019-05-31 11:27:14 +02:00
|
|
|
# Conversations return all users except the current user.
|
2019-09-30 11:52:07 +02:00
|
|
|
users = Enum.reject(participation.recipients, &(&1.id == user.id))
|
2019-04-21 18:14:27 +02:00
|
|
|
|
|
|
|
%{
|
|
|
|
id: participation.id |> to_string(),
|
2019-09-30 14:10:54 +02:00
|
|
|
accounts: render(AccountView, "index.json", users: users, as: :user),
|
2019-04-21 18:14:27 +02:00
|
|
|
unread: !participation.read,
|
2019-10-31 01:44:27 +01:00
|
|
|
last_status:
|
|
|
|
render(StatusView, "show.json",
|
|
|
|
activity: activity,
|
|
|
|
direct_conversation_id: participation.id
|
|
|
|
)
|
2019-04-21 18:14:27 +02:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|