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