2019-12-12 00:58:00 +01:00
|
|
|
defmodule PhilomenaWeb.Topic.Post.DeleteController do
|
|
|
|
use PhilomenaWeb, :controller
|
|
|
|
|
|
|
|
alias Philomena.Posts.Post
|
|
|
|
alias Philomena.Posts
|
|
|
|
|
2019-12-12 05:41:33 +01:00
|
|
|
plug PhilomenaWeb.CanaryMapPlug, create: :hide
|
2019-12-12 00:58:00 +01:00
|
|
|
plug :load_and_authorize_resource, model: Post, id_name: "post_id", persisted: true, preload: [:topic]
|
|
|
|
|
2019-12-12 05:41:33 +01:00
|
|
|
def create(conn, _params) do
|
2019-12-12 00:58:00 +01:00
|
|
|
post = conn.assigns.post
|
|
|
|
|
|
|
|
case Posts.destroy_post(post) do
|
|
|
|
{:ok, post} ->
|
|
|
|
Posts.reindex_post(post)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_flash(:info, "Post successfully destroyed!")
|
|
|
|
|> redirect(to: Routes.forum_topic_path(conn, :show, post.topic.forum_id, post.topic_id) <> "#post_#{post.id}")
|
2019-12-12 05:41:33 +01:00
|
|
|
|
2019-12-12 00:58:00 +01:00
|
|
|
{:error, _changeset} ->
|
|
|
|
conn
|
|
|
|
|> put_flash(:error, "Unable to destroy post!")
|
|
|
|
|> redirect(to: Routes.forum_topic_path(conn, :show, post.topic.forum_id, post.topic_id) <> "#post_#{post.id}")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|