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