scinote-web/app/controllers/step_comments_controller.rb

204 lines
5.6 KiB
Ruby
Raw Normal View History

2016-02-12 23:52:43 +08:00
class StepCommentsController < ApplicationController
include ActionView::Helpers::TextHelper
2016-02-12 23:52:43 +08:00
before_action :load_vars
2016-09-20 20:13:40 +08:00
before_action :check_view_permissions, only: [:index]
2016-11-19 23:54:55 +08:00
before_action :check_add_permissions, only: [:create]
before_action :check_edit_permissions, only: [:edit, :update]
before_action :check_destroy_permissions, only: [:destroy]
2016-02-12 23:52:43 +08:00
def index
@comments = @step.last_comments(@last_comment_id, @per_page)
respond_to do |format|
2016-09-20 20:13:40 +08:00
format.json do
2016-02-12 23:52:43 +08:00
# 'index' partial includes header and form for adding new
# messages. 'list' partial is used for showing more
# comments.
2016-09-20 20:13:40 +08:00
partial = 'index.html.erb'
partial = 'list.html.erb' if @last_comment_id > 0
more_url = ''
2016-02-12 23:52:43 +08:00
if @comments.count > 0
more_url = url_for(step_step_comments_path(@step,
format: :json,
2016-09-20 19:31:50 +08:00
from: @comments.first.id))
2016-02-12 23:52:43 +08:00
end
2016-09-20 20:13:40 +08:00
render json: {
2016-09-27 23:31:37 +08:00
perPage: @per_page,
resultsNumber: @comments.length,
moreUrl: more_url,
2016-09-20 20:13:40 +08:00
html: render_to_string(partial: partial,
locals: { comments: @comments,
more_comments_url: more_url })
2016-02-12 23:52:43 +08:00
}
2016-09-20 20:13:40 +08:00
end
2016-02-12 23:52:43 +08:00
end
end
def create
@comment = Comment.new(
message: comment_params[:message],
user: current_user)
respond_to do |format|
if (@comment.valid? && @step.comments << @comment)
2016-07-21 19:11:15 +08:00
# Generate activity (this can only occur in module,
# but nonetheless check if my module is not nil)
if @protocol.in_module?
Activity.create(
type_of: :add_comment_to_step,
user: current_user,
2016-08-10 19:51:24 +08:00
project: @step.my_module.experiment.project,
2016-07-21 19:11:15 +08:00
my_module: @step.my_module,
message: t(
"activities.add_comment_to_step",
user: current_user.full_name,
step: @step.position + 1,
step_name: @step.name
)
2016-02-12 23:52:43 +08:00
)
2016-07-21 19:11:15 +08:00
end
2016-02-12 23:52:43 +08:00
format.json {
render json: {
2016-10-21 15:37:24 +08:00
html: render_to_string(
2016-02-12 23:52:43 +08:00
partial: "comment.html.erb",
locals: {
comment: @comment
}
2016-10-21 15:37:24 +08:00
),
date: @comment.created_at.strftime('%d.%m.%Y')
2016-02-12 23:52:43 +08:00
},
status: :created
}
else
response.status = 400
format.json {
render json: {
errors: @comment.errors.to_hash(true)
}
}
end
end
end
def edit
@update_url = step_step_comment_path(@step, @comment, format: :json)
respond_to do |format|
format.json do
render json: {
html: render_to_string(
partial: '/comments/edit.html.erb'
)
}
end
end
end
def update
@comment.message = comment_params[:message]
respond_to do |format|
format.json do
if @comment.save
# Generate activity
if @protocol.in_module?
Activity.create(
type_of: :edit_step_comment,
user: current_user,
project: @step.my_module.experiment.project,
my_module: @step.my_module,
message: t(
'activities.edit_step_comment',
user: current_user.full_name,
step: @step.position + 1,
step_name: @step.name
)
)
end
render json: {
comment: custom_auto_link(
simple_format(@comment.message),
link: :urls,
html: { target: '_blank' }
)
}, status: :ok
else
render json: { errors: @comment.errors.to_hash(true) },
status: :unprocessable_entity
end
end
end
end
def destroy
respond_to do |format|
format.json do
if @comment.destroy
# Generate activity
if @protocol.in_module?
Activity.create(
type_of: :delete_step_comment,
user: current_user,
project: @step.my_module.experiment.project,
my_module: @step.my_module,
message: t(
'activities.delete_step_comment',
user: current_user.full_name,
step: @step.position + 1,
step_name: @step.name
)
)
end
render json: {}, status: :ok
else
render json: { message: I18n.t('comments.delete_error') },
status: :unprocessable_entity
end
end
end
end
2016-02-12 23:52:43 +08:00
private
def load_vars
@last_comment_id = params[:from].to_i
@per_page = Constants::COMMENTS_SEARCH_LIMIT
2016-02-12 23:52:43 +08:00
@step = Step.find_by_id(params[:step_id])
2016-07-21 19:11:15 +08:00
@protocol = @step.protocol
2016-02-12 23:52:43 +08:00
unless @step
render_404
end
end
def check_view_permissions
2016-07-21 19:11:15 +08:00
unless can_view_step_comments(@protocol)
2016-02-12 23:52:43 +08:00
render_403
end
end
def check_add_permissions
2016-07-21 19:11:15 +08:00
unless can_add_step_comment_in_protocol(@protocol)
2016-02-12 23:52:43 +08:00
render_403
end
end
def check_edit_permissions
@comment = Comment.find_by_id(params[:id])
render_403 unless @comment.present? &&
can_edit_step_comment_in_protocol(@comment)
end
def check_destroy_permissions
@comment = Comment.find_by_id(params[:id])
render_403 unless @comment.present? &&
can_delete_step_comment_in_protocol(@comment)
end
2016-02-12 23:52:43 +08:00
def comment_params
params.require(:comment).permit(:message)
end
end