akkoma/lib/pleroma/web/admin_api/views/report_view.ex

75 lines
2 KiB
Elixir
Raw Normal View History

2019-05-16 13:09:18 -06:00
# Pleroma: A lightweight social networking server
2020-03-03 15:44:49 -07:00
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
2019-05-16 13:09:18 -06:00
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.AdminAPI.ReportView do
use Pleroma.Web, :view
alias Pleroma.HTML
2019-06-15 16:35:45 -06:00
alias Pleroma.User
alias Pleroma.Web.AdminAPI
2019-09-23 16:33:59 -06:00
alias Pleroma.Web.AdminAPI.Report
2019-05-16 13:09:18 -06:00
alias Pleroma.Web.CommonAPI.Utils
alias Pleroma.Web.MastodonAPI.StatusView
defdelegate merge_account_views(user), to: AdminAPI.AccountView
2019-05-16 13:09:18 -06:00
def render("index.json", %{reports: reports}) do
%{
2019-09-05 07:54:34 -06:00
reports:
2019-09-23 16:33:59 -06:00
reports[:items]
|> Enum.map(&Report.extract_report_info/1)
|> Enum.map(&render(__MODULE__, "show.json", &1)),
2019-09-04 11:08:13 -06:00
total: reports[:total]
2019-05-16 13:09:18 -06:00
}
end
2019-09-23 16:33:59 -06:00
def render("show.json", %{report: report, user: user, account: account, statuses: statuses}) do
2019-05-16 13:09:18 -06:00
created_at = Utils.to_masto_date(report.data["published"])
content =
unless is_nil(report.data["content"]) do
HTML.filter_tags(report.data["content"])
else
nil
end
2019-05-16 13:09:18 -06:00
%{
id: report.id,
account: merge_account_views(account),
actor: merge_account_views(user),
content: content,
2019-05-16 13:09:18 -06:00
created_at: created_at,
statuses:
StatusView.render("index.json", %{
activities: statuses,
as: :activity
}),
2019-12-03 07:54:07 -07:00
state: report.data["state"],
notes: render(__MODULE__, "index_notes.json", %{notes: report.report_notes})
2019-05-16 13:09:18 -06:00
}
end
2019-12-03 07:54:07 -07:00
def render("index_notes.json", %{notes: notes}) when is_list(notes) do
2020-10-07 11:30:55 -06:00
Enum.map(notes, &render(__MODULE__, "show_note.json", Map.from_struct(&1)))
2019-12-03 07:54:07 -07:00
end
def render("index_notes.json", _), do: []
2019-12-08 01:27:23 -07:00
def render("show_note.json", %{
id: id,
content: content,
user_id: user_id,
inserted_at: inserted_at
}) do
2019-12-03 07:54:07 -07:00
user = User.get_by_id(user_id)
%{
2019-12-08 01:27:23 -07:00
id: id,
2019-12-03 07:54:07 -07:00
content: content,
2019-12-06 01:17:24 -07:00
user: merge_account_views(user),
2019-12-08 01:27:23 -07:00
created_at: Utils.to_masto_date(inserted_at)
2019-12-03 07:54:07 -07:00
}
end
2019-05-16 13:09:18 -06:00
end