2019-12-16 06:25:06 +01:00
|
|
|
defmodule PhilomenaWeb.Image.ScratchpadController do
|
|
|
|
use PhilomenaWeb, :controller
|
|
|
|
|
|
|
|
alias Philomena.Images.Image
|
|
|
|
alias Philomena.Images
|
|
|
|
|
|
|
|
plug PhilomenaWeb.CanaryMapPlug, edit: :hide, update: :hide
|
|
|
|
plug :load_and_authorize_resource, model: Image, id_name: "image_id", persisted: true
|
|
|
|
|
|
|
|
def edit(conn, _params) do
|
|
|
|
changeset = Images.change_image(conn.assigns.image)
|
2019-12-16 20:24:38 +01:00
|
|
|
render(conn, "edit.html", title: "Editing Moderation Notes", changeset: changeset)
|
2019-12-16 06:25:06 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def update(conn, %{"image" => image_params}) do
|
|
|
|
{:ok, image} = Images.update_scratchpad(conn.assigns.image, image_params)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_flash(:info, "Successfully updated moderation notes.")
|
2024-06-23 16:42:29 +02:00
|
|
|
|> moderation_log(details: &log_details/2, data: image)
|
2024-04-29 02:55:27 +02:00
|
|
|
|> redirect(to: ~p"/images/#{image}")
|
2019-12-16 06:25:06 +01:00
|
|
|
end
|
2021-11-07 19:51:55 +01:00
|
|
|
|
2024-06-23 16:42:29 +02:00
|
|
|
defp log_details(_action, image) do
|
2021-11-07 19:51:55 +01:00
|
|
|
%{
|
|
|
|
body: "Updated mod notes on image >>#{image.id} (#{image.scratchpad})",
|
2024-04-29 02:55:27 +02:00
|
|
|
subject_path: ~p"/images/#{image}"
|
2021-11-07 19:51:55 +01:00
|
|
|
}
|
|
|
|
end
|
2019-12-16 06:25:06 +01:00
|
|
|
end
|