2019-12-10 21:29:48 +01:00
|
|
|
defmodule PhilomenaWeb.Image.Comment.DeleteController do
|
|
|
|
use PhilomenaWeb, :controller
|
|
|
|
|
|
|
|
alias Philomena.Comments.Comment
|
|
|
|
alias Philomena.Comments
|
|
|
|
|
2019-12-12 05:41:33 +01:00
|
|
|
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
|
|
|
|
|
2019-12-12 05:41:33 +01:00
|
|
|
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!")
|
2021-11-08 14:45:19 +01:00
|
|
|
|> moderation_log(details: &log_details/3, data: comment)
|
2020-01-11 05:20:19 +01:00
|
|
|
|> redirect(
|
|
|
|
to: Routes.image_path(conn, :show, comment.image_id) <> "#comment_#{comment.id}"
|
|
|
|
)
|
2019-12-12 05:41:33 +01:00
|
|
|
|
2019-12-11 23:21:14 +01:00
|
|
|
{:error, _changeset} ->
|
|
|
|
conn
|
|
|
|
|> put_flash(:error, "Unable to destroy comment!")
|
2020-01-11 05:20:19 +01:00
|
|
|
|> redirect(
|
|
|
|
to: Routes.image_path(conn, :show, 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: Routes.image_path(conn, :show, comment.image_id) <> "#comment_#{comment.id}"
|
|
|
|
}
|
|
|
|
end
|
2019-12-10 21:29:48 +01:00
|
|
|
end
|