mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
34 lines
1.1 KiB
Elixir
34 lines
1.1 KiB
Elixir
|
defmodule PhilomenaWeb.Gallery.ReportController do
|
||
|
use PhilomenaWeb, :controller
|
||
|
|
||
|
alias PhilomenaWeb.ReportController
|
||
|
alias PhilomenaWeb.ReportView
|
||
|
alias Philomena.Galleries.Gallery
|
||
|
alias Philomena.Reports.Report
|
||
|
alias Philomena.Reports
|
||
|
|
||
|
plug PhilomenaWeb.FilterBannedUsersPlug
|
||
|
plug PhilomenaWeb.UserAttributionPlug
|
||
|
plug PhilomenaWeb.CaptchaPlug when action in [:create]
|
||
|
plug PhilomenaWeb.CanaryMapPlug, new: :show, create: :show
|
||
|
plug :load_and_authorize_resource, model: Gallery, id_name: "gallery_id", persisted: true, preload: [:creator]
|
||
|
|
||
|
def new(conn, _params) do
|
||
|
gallery = conn.assigns.gallery
|
||
|
action = Routes.gallery_report_path(conn, :create, gallery)
|
||
|
changeset =
|
||
|
%Report{reportable_type: "Gallery", reportable_id: gallery.id}
|
||
|
|> Reports.change_report()
|
||
|
|
||
|
conn
|
||
|
|> put_view(ReportView)
|
||
|
|> render("new.html", reportable: gallery, changeset: changeset, action: action)
|
||
|
end
|
||
|
|
||
|
def create(conn, params) do
|
||
|
gallery = conn.assigns.gallery
|
||
|
action = Routes.gallery_report_path(conn, :create, gallery)
|
||
|
|
||
|
ReportController.create(conn, action, gallery, "Gallery", params)
|
||
|
end
|
||
|
end
|