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

34 lines
1.1 KiB
Elixir
Raw Normal View History

2019-12-04 05:14:56 +01:00
defmodule PhilomenaWeb.Image.ReportController do
use PhilomenaWeb, :controller
alias PhilomenaWeb.ReportController
alias PhilomenaWeb.ReportView
alias Philomena.Images.Image
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: Image, id_name: "image_id", persisted: true, preload: [:tags]
def new(conn, _params) do
image = conn.assigns.image
action = Routes.image_report_path(conn, :create, image)
changeset =
%Report{reportable_type: "Image", reportable_id: image.id}
|> Reports.change_report()
conn
|> put_view(ReportView)
|> render("new.html", reportable: image, changeset: changeset, action: action)
end
def create(conn, params) do
image = conn.assigns.image
action = Routes.image_report_path(conn, :create, image)
ReportController.create(conn, action, image, "Image", params)
end
end