2019-12-11 15:57:36 +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-12-11 15:57:36 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.AdminAPI.StatusView do
|
|
|
|
use Pleroma.Web, :view
|
|
|
|
|
|
|
|
require Pleroma.Constants
|
|
|
|
|
2020-05-01 15:45:24 +00:00
|
|
|
alias Pleroma.Web.AdminAPI
|
2020-08-31 21:48:24 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2020-05-01 15:45:24 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI
|
2020-05-09 15:05:44 +00:00
|
|
|
|
|
|
|
defdelegate merge_account_views(user), to: AdminAPI.AccountView
|
2019-12-11 15:57:36 +00:00
|
|
|
|
2021-01-21 15:51:21 +00:00
|
|
|
def render("index.json", %{total: total} = opts) do
|
|
|
|
%{total: total, activities: safe_render_many(opts.activities, __MODULE__, "show.json", opts)}
|
|
|
|
end
|
|
|
|
|
2019-12-11 15:57:36 +00:00
|
|
|
def render("index.json", opts) do
|
2020-02-10 11:32:38 +00:00
|
|
|
safe_render_many(opts.activities, __MODULE__, "show.json", opts)
|
2019-12-11 15:57:36 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def render("show.json", %{activity: %{data: %{"object" => _object}} = activity} = opts) do
|
2020-08-31 21:48:24 +00:00
|
|
|
user = CommonAPI.get_user(activity.data["actor"])
|
2019-12-11 15:57:36 +00:00
|
|
|
|
2020-05-09 15:05:44 +00:00
|
|
|
MastodonAPI.StatusView.render("show.json", opts)
|
2019-12-11 15:57:36 +00:00
|
|
|
|> Map.merge(%{account: merge_account_views(user)})
|
|
|
|
end
|
|
|
|
end
|