mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 04:27:59 +01:00
49 lines
1.4 KiB
Elixir
49 lines
1.4 KiB
Elixir
defmodule PhilomenaWeb.Topic.Post.ApproveController do
|
|
use PhilomenaWeb, :controller
|
|
|
|
alias Philomena.Posts.Post
|
|
alias Philomena.Posts
|
|
|
|
plug PhilomenaWeb.CanaryMapPlug, create: :approve
|
|
|
|
plug :load_and_authorize_resource,
|
|
model: Post,
|
|
id_name: "post_id",
|
|
persisted: true,
|
|
preload: [:topic, :user, topic: :forum]
|
|
|
|
def create(conn, _params) do
|
|
post = conn.assigns.post
|
|
user = conn.assigns.current_user
|
|
|
|
case Posts.approve_post(post, user) do
|
|
{:ok, post} ->
|
|
conn
|
|
|> put_flash(:info, "Post successfully approved.")
|
|
|> moderation_log(details: &log_details/3, data: post)
|
|
|> redirect(
|
|
to:
|
|
Routes.forum_topic_path(conn, :show, post.topic.forum, post.topic, post_id: post.id) <>
|
|
"#post_#{post.id}"
|
|
)
|
|
|
|
{:error, _changeset} ->
|
|
conn
|
|
|> put_flash(:error, "Unable to approve post!")
|
|
|> redirect(
|
|
to:
|
|
Routes.forum_topic_path(conn, :show, post.topic.forum, post.topic, post_id: post.id) <>
|
|
"#post_#{post.id}"
|
|
)
|
|
end
|
|
end
|
|
|
|
defp log_details(conn, _action, post) do
|
|
%{
|
|
body: "Approved forum post ##{post.id} in topic '#{post.topic.title}'",
|
|
subject_path:
|
|
Routes.forum_topic_path(conn, :show, post.topic.forum, post.topic, post_id: post.id) <>
|
|
"#post_#{post.id}"
|
|
}
|
|
end
|
|
end
|