philomena/lib/philomena_web/controllers/image/comment/delete_controller.ex

36 lines
1.1 KiB
Elixir
Raw Normal View History

2019-12-10 21:29:48 +01:00
defmodule PhilomenaWeb.Image.Comment.DeleteController do
use PhilomenaWeb, :controller
alias Philomena.Comments.Comment
alias Philomena.Comments
plug PhilomenaWeb.CanaryMapPlug, create: :hide
2019-12-10 21:29:48 +01:00
plug :load_and_authorize_resource, model: Comment, id_name: "comment_id", persisted: true
def create(conn, _params) do
2019-12-11 23:21:14 +01:00
comment = conn.assigns.comment
case Comments.destroy_comment(comment) do
{:ok, comment} ->
Comments.reindex_comment(comment)
conn
|> put_flash(:info, "Comment successfully destroyed!")
|> moderation_log(details: &log_details/3, data: comment)
|> redirect(to: ~p"/images/#{comment.image_id}" <> "#comment_#{comment.id}")
2019-12-11 23:21:14 +01:00
{:error, _changeset} ->
conn
|> put_flash(:error, "Unable to destroy comment!")
|> redirect(to: ~p"/images/#{comment.image_id}" <> "#comment_#{comment.id}")
2019-12-11 23:21:14 +01:00
end
2019-12-10 21:29:48 +01:00
end
2021-11-07 19:51:55 +01:00
defp log_details(conn, _action, comment) do
%{
body: "Destroyed comment on image >>#{comment.image_id}",
subject_path: ~p"/images/#{comment.image_id}" <> "#comment_#{comment.id}"
2021-11-07 19:51:55 +01:00
}
end
2019-12-10 21:29:48 +01:00
end