summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/admin_api/views/report_view.ex
blob: d27f1a21b55bb91676e2cc281dd4e1a887354d53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# 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
  alias Pleroma.Activity
  alias Pleroma.HTML
  alias Pleroma.User
  alias Pleroma.Web.AdminAPI.Report
  alias Pleroma.Web.CommonAPI.Utils
  alias Pleroma.Web.MastodonAPI.StatusView

  def render("index.json", %{reports: reports}) do
    %{
      reports:
        reports[:items]
        |> Enum.map(&Report.extract_report_info(&1))
        |> Enum.map(&render(__MODULE__, "show.json", &1))
        |> Enum.reverse(),
      total: reports[:total]
    }
  end

  def render("show.json", %{report: report, user: user, account: account, statuses: statuses}) do
    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

    %{
      id: report.id,
      account: merge_account_views(account),
      actor: merge_account_views(user),
      content: content,
      created_at: created_at,
      statuses: StatusView.render("index.json", %{activities: statuses, as: :activity}),
      state: report.data["state"],
      notes: render(__MODULE__, "index_notes.json", %{notes: report.report_notes})
    }
  end

  def render("index_grouped_new.json", %{groups: groups}) do
    updated =
      Enum.map(groups, fn report ->
        status =
          case report.status do
            %Activity{} = activity -> StatusView.render("show.json", %{activity: activity})
            _ -> report.status
          end
          |> Map.put_new("deleted", false)

        report
        |> Map.replace!(
          :actors,
          Enum.map(report[:actors], &merge_account_views/1)
        )
        |> Map.replace!(
          :account,
          merge_account_views(report[:account])
        )
        |> Map.replace!(
          :status,
          status
        )
        |> Map.replace!(
          :reports,
          report[:reports]
          |> Enum.map(&Report.extract_report_info(&1))
          |> Enum.map(&render(__MODULE__, "show.json", &1))
        )
      end)

    %{
      reports: updated
    }
  end

  def render("index_grouped.json", %{groups: groups}) do
    reports =
      Enum.map(groups, fn group ->
        status =
          case group.status do
            %Activity{} = activity -> StatusView.render("show.json", %{activity: activity})
            _ -> group.status
          end

        %{
          date: group[:date],
          account: group[:account],
          status: Map.put_new(status, "deleted", false),
          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

  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", %{
        id: id,
        content: content,
        user_id: user_id,
        inserted_at: inserted_at
      }) do
    user = User.get_by_id(user_id)

    %{
      id: id,
      content: content,
      user: merge_account_views(user),
      created_at: Utils.to_masto_date(inserted_at)
    }
  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