mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
Add edit and delete actions to posts and comments (#125)
This commit is contained in:
committed by
GitHub
parent
07ca2a304a
commit
bc15140512
@@ -1,5 +1,5 @@
|
||||
class CommentsController < ApplicationController
|
||||
before_action :authenticate_user!, only: [:create, :update]
|
||||
before_action :authenticate_user!, only: [:create, :update, :destroy]
|
||||
|
||||
def index
|
||||
comments = Comment
|
||||
@@ -8,58 +8,80 @@ class CommentsController < ApplicationController
|
||||
:body,
|
||||
:parent_id,
|
||||
:is_post_update,
|
||||
:created_at,
|
||||
:updated_at,
|
||||
'users.full_name as user_full_name',
|
||||
'users.email as user_email',
|
||||
)
|
||||
.where(post_id: params[:post_id])
|
||||
.left_outer_joins(:user)
|
||||
.order(updated_at: :desc)
|
||||
.order(created_at: :desc)
|
||||
|
||||
render json: comments
|
||||
end
|
||||
|
||||
def create
|
||||
comment = Comment.new(comment_params)
|
||||
@comment = Comment.new
|
||||
@comment.assign_attributes(comment_create_params)
|
||||
|
||||
if comment.save
|
||||
SendNotificationForCommentWorkflow.new(comment: comment).run
|
||||
if @comment.save
|
||||
SendNotificationForCommentWorkflow.new(comment: @comment).run
|
||||
|
||||
render json: comment.attributes.merge(
|
||||
render json: @comment.attributes.merge(
|
||||
{ user_full_name: current_user.full_name, user_email: current_user.email }
|
||||
), status: :created
|
||||
else
|
||||
render json: {
|
||||
error: comment.errors.full_messages
|
||||
error: @comment.errors.full_messages
|
||||
}, status: :unprocessable_entity
|
||||
end
|
||||
end
|
||||
|
||||
def update
|
||||
comment = Comment.find(params[:id])
|
||||
authorize comment
|
||||
comment.assign_attributes(comment_params)
|
||||
@comment = Comment.find(params[:id])
|
||||
authorize @comment
|
||||
|
||||
if comment.save
|
||||
render json: comment.attributes.merge(
|
||||
{ user_full_name: current_user.full_name, user_email: current_user.email }
|
||||
if @comment.update(comment_update_params)
|
||||
render json: @comment.attributes.merge(
|
||||
{ user_full_name: @comment.user.full_name, user_email: @comment.user.email }
|
||||
)
|
||||
else
|
||||
render json: {
|
||||
error: comment.errors.full_messages
|
||||
error: @comment.errors.full_messages
|
||||
}, status: :unprocessable_entity
|
||||
end
|
||||
end
|
||||
|
||||
def destroy
|
||||
@comment = Comment.find(params[:id])
|
||||
authorize @comment
|
||||
|
||||
if @comment.destroy
|
||||
render json: {
|
||||
id: @comment.id,
|
||||
}, status: :accepted
|
||||
else
|
||||
render json: {
|
||||
error: @comment.errors.full_messages
|
||||
}, status: :unprocessable_entity
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def comment_params
|
||||
def comment_create_params
|
||||
params
|
||||
.require(:comment)
|
||||
.permit(:body, :parent_id, :is_post_update)
|
||||
.permit(policy(@comment).permitted_attributes_for_create)
|
||||
.merge(
|
||||
user_id: current_user.id,
|
||||
post_id: params[:post_id]
|
||||
)
|
||||
end
|
||||
|
||||
def comment_update_params
|
||||
params
|
||||
.require(:comment)
|
||||
.permit(policy(@comment).permitted_attributes_for_update)
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user