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