2019-09-16 18:02:52 +02:00
|
|
|
class CommentsController < ApplicationController
|
2019-09-17 11:33:18 +02:00
|
|
|
before_action :authenticate_user!, only: [:create]
|
|
|
|
|
|
2019-09-16 18:02:52 +02:00
|
|
|
def index
|
|
|
|
|
comments = Comment
|
2019-09-30 23:28:52 +02:00
|
|
|
.select(
|
|
|
|
|
:id,
|
|
|
|
|
:body,
|
|
|
|
|
:parent_id,
|
|
|
|
|
:updated_at,
|
|
|
|
|
'users.full_name as user_full_name',
|
|
|
|
|
'users.email as user_email',
|
|
|
|
|
)
|
2019-09-16 18:02:52 +02:00
|
|
|
.where(post_id: params[:post_id])
|
|
|
|
|
.left_outer_joins(:user)
|
|
|
|
|
.order(updated_at: :desc)
|
|
|
|
|
|
|
|
|
|
render json: comments
|
|
|
|
|
end
|
2019-09-17 11:33:18 +02:00
|
|
|
|
|
|
|
|
def create
|
|
|
|
|
comment = Comment.new(comment_params)
|
|
|
|
|
|
|
|
|
|
if comment.save
|
2019-09-30 23:28:52 +02:00
|
|
|
render json: comment.attributes.merge(
|
|
|
|
|
{ user_full_name: current_user.full_name, user_email: current_user.email}
|
|
|
|
|
), status: :created
|
2019-09-17 11:33:18 +02:00
|
|
|
else
|
2019-09-18 13:40:00 +02:00
|
|
|
render json: {
|
|
|
|
|
error: I18n.t('errors.comment.create', message: comment.errors.full_messages)
|
|
|
|
|
}, status: :unprocessable_entity
|
2019-09-17 11:33:18 +02:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
|
|
def comment_params
|
|
|
|
|
params
|
|
|
|
|
.require(:comment)
|
2019-09-18 13:40:00 +02:00
|
|
|
.permit(:body, :parent_id)
|
2019-09-17 11:33:18 +02:00
|
|
|
.merge(
|
|
|
|
|
user_id: current_user.id,
|
|
|
|
|
post_id: params[:post_id]
|
|
|
|
|
)
|
|
|
|
|
end
|
2019-09-16 18:02:52 +02:00
|
|
|
end
|