2019-12-11 16:57:36 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 06:08:45 +01:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2019-12-11 16:57:36 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.AdminAPI.StatusView do
|
|
|
|
use Pleroma.Web, :view
|
|
|
|
|
|
|
|
require Pleroma.Constants
|
|
|
|
|
|
|
|
alias Pleroma.User
|
2020-04-25 17:24:10 +02:00
|
|
|
alias Pleroma.Web.MastodonAPI.StatusView
|
2019-12-11 16:57:36 +01:00
|
|
|
|
|
|
|
def render("index.json", opts) do
|
2020-02-10 12:32:38 +01:00
|
|
|
safe_render_many(opts.activities, __MODULE__, "show.json", opts)
|
2019-12-11 16:57:36 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def render("show.json", %{activity: %{data: %{"object" => _object}} = activity} = opts) do
|
2020-04-25 17:24:10 +02:00
|
|
|
user = StatusView.get_user(activity.data["actor"])
|
2019-12-11 16:57:36 +01:00
|
|
|
|
2020-04-25 17:24:10 +02:00
|
|
|
StatusView.render("show.json", opts)
|
2019-12-11 16:57:36 +01:00
|
|
|
|> Map.merge(%{account: merge_account_views(user)})
|
|
|
|
end
|
|
|
|
|
|
|
|
defp merge_account_views(%User{} = user) do
|
|
|
|
Pleroma.Web.MastodonAPI.AccountView.render("show.json", %{user: user})
|
|
|
|
|> Map.merge(Pleroma.Web.AdminAPI.AccountView.render("show.json", %{user: user}))
|
|
|
|
end
|
|
|
|
|
|
|
|
defp merge_account_views(_), do: %{}
|
|
|
|
end
|