2019-07-10 05:13:23 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 22:44:49 +00:00
|
|
|
# Copyright © 2017-2020 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
|
|
|
|
ActivityPub.fetch_latest_activity_id_for_context(participation.conversation.ap_id, %{
|
|
|
|
"user" => user,
|
|
|
|
"blocking_user" => user
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
activity = Activity.get_by_id_with_object(last_activity_id)
|
2019-05-31 09:27:14 +00:00
|
|
|
# Conversations return all users except the current user.
|
2019-09-30 09:52:07 +00:00
|
|
|
users = Enum.reject(participation.recipients, &(&1.id == user.id))
|
2019-04-21 16:14:27 +00:00
|
|
|
|
|
|
|
%{
|
|
|
|
id: participation.id |> to_string(),
|
2019-09-30 12:10:54 +00:00
|
|
|
accounts: render(AccountView, "index.json", users: users, as: :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,
|
|
|
|
direct_conversation_id: participation.id
|
|
|
|
)
|
2019-04-21 16:14:27 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|