2019-12-08 18:45:37 +01:00
|
|
|
defmodule PhilomenaWeb.Admin.ReportController do
|
|
|
|
use PhilomenaWeb, :controller
|
|
|
|
|
2019-12-24 22:14:42 +01:00
|
|
|
alias Philomena.Elasticsearch
|
2020-05-08 04:19:08 +02:00
|
|
|
alias PhilomenaWeb.TextileRenderer
|
2019-12-08 18:45:37 +01:00
|
|
|
alias Philomena.Reports.Report
|
|
|
|
alias Philomena.Reports.Query
|
|
|
|
alias Philomena.Polymorphic
|
2019-12-17 18:29:18 +01:00
|
|
|
alias Philomena.ModNotes.ModNote
|
2019-12-08 18:45:37 +01:00
|
|
|
alias Philomena.Repo
|
|
|
|
import Ecto.Query
|
|
|
|
|
2019-12-08 18:50:44 +01:00
|
|
|
plug :verify_authorized
|
2020-01-11 05:20:19 +01:00
|
|
|
|
|
|
|
plug :load_and_authorize_resource,
|
|
|
|
model: Report,
|
|
|
|
only: [:show],
|
|
|
|
preload: [:admin, user: [:linked_tags, awards: :badge]]
|
|
|
|
|
2019-12-17 18:29:18 +01:00
|
|
|
plug :set_mod_notes when action in [:show]
|
2019-12-08 18:45:37 +01:00
|
|
|
|
|
|
|
def index(conn, %{"rq" => query_string}) do
|
|
|
|
{:ok, query} = Query.compile(query_string)
|
|
|
|
|
|
|
|
reports = load_reports(conn, query)
|
|
|
|
|
2020-01-11 05:20:19 +01:00
|
|
|
render(conn, "index.html",
|
|
|
|
title: "Admin - Reports",
|
|
|
|
layout_class: "layout--wide",
|
|
|
|
reports: reports,
|
|
|
|
my_reports: []
|
|
|
|
)
|
2019-12-08 18:45:37 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def index(conn, _params) do
|
|
|
|
user = conn.assigns.current_user
|
|
|
|
|
2020-01-11 05:20:19 +01:00
|
|
|
query = %{
|
|
|
|
bool: %{
|
|
|
|
should: [
|
|
|
|
%{term: %{open: false}},
|
|
|
|
%{
|
|
|
|
bool: %{
|
|
|
|
must: %{term: %{open: true}},
|
|
|
|
must_not: %{term: %{admin_id: user.id}}
|
2019-12-08 18:45:37 +01:00
|
|
|
}
|
2020-01-11 05:20:19 +01:00
|
|
|
}
|
|
|
|
]
|
2019-12-08 18:45:37 +01:00
|
|
|
}
|
2020-01-11 05:20:19 +01:00
|
|
|
}
|
2019-12-08 18:45:37 +01:00
|
|
|
|
|
|
|
reports = load_reports(conn, query)
|
|
|
|
|
|
|
|
my_reports =
|
|
|
|
Report
|
|
|
|
|> where(open: true, admin_id: ^user.id)
|
|
|
|
|> preload([:admin, user: :linked_tags])
|
|
|
|
|> order_by(desc: :created_at)
|
|
|
|
|> Repo.all()
|
|
|
|
|> Polymorphic.load_polymorphic(reportable: [reportable_id: :reportable_type])
|
|
|
|
|
2020-01-11 05:20:19 +01:00
|
|
|
render(conn, "index.html",
|
|
|
|
title: "Admin - Reports",
|
|
|
|
layout_class: "layout--wide",
|
|
|
|
reports: reports,
|
|
|
|
my_reports: my_reports
|
|
|
|
)
|
2019-12-08 18:45:37 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def show(conn, _params) do
|
2020-01-11 05:20:19 +01:00
|
|
|
[report] =
|
|
|
|
Polymorphic.load_polymorphic([conn.assigns.report],
|
|
|
|
reportable: [reportable_id: :reportable_type]
|
|
|
|
)
|
|
|
|
|
2020-05-08 04:19:08 +02:00
|
|
|
body = TextileRenderer.render_one(%{body: report.reason}, conn)
|
2019-12-08 18:45:37 +01:00
|
|
|
|
2019-12-16 20:24:38 +01:00
|
|
|
render(conn, "show.html", title: "Showing Report", report: report, body: body)
|
2019-12-08 18:45:37 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
defp load_reports(conn, query) do
|
|
|
|
reports =
|
2020-08-23 21:47:42 +02:00
|
|
|
Report
|
|
|
|
|> Elasticsearch.search_definition(
|
2019-12-08 18:45:37 +01:00
|
|
|
%{
|
|
|
|
query: query,
|
|
|
|
sort: sorts()
|
|
|
|
},
|
2020-08-23 21:47:42 +02:00
|
|
|
conn.assigns.pagination
|
2019-12-08 18:45:37 +01:00
|
|
|
)
|
2020-08-23 21:47:42 +02:00
|
|
|
|> Elasticsearch.search_records(preload(Report, [:admin, user: :linked_tags]))
|
2019-12-08 18:45:37 +01:00
|
|
|
|
2020-01-11 05:20:19 +01:00
|
|
|
entries = Polymorphic.load_polymorphic(reports, reportable: [reportable_id: :reportable_type])
|
2019-12-08 18:45:37 +01:00
|
|
|
|
|
|
|
%{reports | entries: entries}
|
|
|
|
end
|
|
|
|
|
|
|
|
defp sorts do
|
|
|
|
[
|
|
|
|
%{open: :desc},
|
|
|
|
%{state: :desc},
|
|
|
|
%{created_at: :desc}
|
|
|
|
]
|
|
|
|
end
|
2019-12-08 18:50:44 +01:00
|
|
|
|
|
|
|
defp verify_authorized(conn, _opts) do
|
|
|
|
case Canada.Can.can?(conn.assigns.current_user, :index, Report) do
|
2020-01-11 05:20:19 +01:00
|
|
|
true -> conn
|
2019-12-08 18:50:44 +01:00
|
|
|
false -> PhilomenaWeb.NotAuthorizedPlug.call(conn)
|
|
|
|
end
|
|
|
|
end
|
2019-12-17 18:29:18 +01:00
|
|
|
|
|
|
|
defp set_mod_notes(conn, _opts) do
|
|
|
|
case Canada.Can.can?(conn.assigns.current_user, :index, ModNote) do
|
|
|
|
true ->
|
|
|
|
report = conn.assigns.report
|
|
|
|
|
|
|
|
mod_notes =
|
|
|
|
ModNote
|
|
|
|
|> where(notable_type: "Report", notable_id: ^report.id)
|
|
|
|
|> order_by(desc: :id)
|
|
|
|
|> preload(:moderator)
|
|
|
|
|> Repo.all()
|
|
|
|
|> Polymorphic.load_polymorphic(notable: [notable_id: :notable_type])
|
|
|
|
|
|
|
|
mod_notes =
|
|
|
|
mod_notes
|
2020-05-08 04:19:08 +02:00
|
|
|
|> TextileRenderer.render_collection(conn)
|
2019-12-17 18:29:18 +01:00
|
|
|
|> Enum.zip(mod_notes)
|
|
|
|
|
|
|
|
assign(conn, :mod_notes, mod_notes)
|
|
|
|
|
|
|
|
_false ->
|
|
|
|
conn
|
|
|
|
end
|
|
|
|
end
|
2019-12-16 20:24:38 +01:00
|
|
|
end
|