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