2019-07-10 05:13:23 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# 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
|
|
|
|
|
|
|
|
def render("participation.json", %{participation: participation, user: user}) do
|
|
|
|
participation = Repo.preload(participation, conversation: :users)
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
last_status = StatusView.render("status.json", %{activity: activity, for: user})
|
|
|
|
|
2019-05-31 09:27:14 +00:00
|
|
|
# Conversations return all users except the current user.
|
|
|
|
users =
|
|
|
|
participation.conversation.users
|
|
|
|
|> Enum.reject(&(&1.id == user.id))
|
|
|
|
|
2019-04-21 16:14:27 +00:00
|
|
|
accounts =
|
|
|
|
AccountView.render("accounts.json", %{
|
2019-05-31 09:27:14 +00:00
|
|
|
users: users,
|
2019-04-21 16:14:27 +00:00
|
|
|
as: :user
|
|
|
|
})
|
|
|
|
|
|
|
|
%{
|
|
|
|
id: participation.id |> to_string(),
|
|
|
|
accounts: accounts,
|
|
|
|
unread: !participation.read,
|
|
|
|
last_status: last_status
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|