philomena/lib/philomena_web/controllers/gallery/report_controller.ex

34 lines
1.1 KiB
Elixir
Raw Normal View History

2019-12-05 05:12:49 +01:00
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