scinote-web/app/controllers/result_comments_controller.rb
2017-03-09 17:20:27 +01:00

196 lines
5.2 KiB
Ruby

class ResultCommentsController < ApplicationController
include ActionView::Helpers::TextHelper
include InputSanitizeHelper
include ApplicationHelper
before_action :load_vars
before_action :check_view_permissions, only: [:index]
before_action :check_add_permissions, only: [:create]
before_action :check_edit_permissions, only: [:edit, :update]
before_action :check_destroy_permissions, only: [:destroy]
def index
@comments = @result.last_comments(@last_comment_id, @per_page)
respond_to do |format|
format.json do
# 'index' partial includes header and form for adding new
# messages. 'list' partial is used for showing more
# comments.
partial = 'index.html.erb'
partial = 'list.html.erb' if @last_comment_id > 0
more_url = ''
if @comments.count > 0
more_url = url_for(result_result_comments_path(@result,
format: :json,
from: @comments
.first.id))
end
render json: {
perPage: @per_page,
resultsNumber: @comments.length,
moreUrl: more_url,
html: render_to_string(partial: partial,
locals: { comments: @comments,
more_comments_url: more_url })
}
end
end
end
def create
@comment = ResultComment.new(
message: comment_params[:message],
user: current_user,
result: @result
)
respond_to do |format|
if @comment.save
# Generate activity
Activity.create(
type_of: :add_comment_to_result,
user: current_user,
project: @result.my_module.experiment.project,
my_module: @result.my_module,
message: t(
'activities.add_comment_to_result',
user: current_user.full_name,
result: @result.name
)
)
format.json {
render json: {
html: render_to_string(
partial: 'comment.html.erb',
locals: {
comment: @comment
}
),
date: @comment.created_at.strftime('%d.%m.%Y')
},
status: :created
}
else
response.status = 400
format.json {
render json: {
errors: @comment.errors.to_hash(true)
}
}
end
end
end
def edit
@update_url =
result_result_comment_path(@result, @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
Activity.create(
type_of: :edit_result_comment,
user: current_user,
project: @result.my_module.experiment.project,
my_module: @result.my_module,
message: t(
'activities.edit_result_comment',
user: current_user.full_name,
result: @result.name
)
)
message = custom_auto_link(@comment.message)
render json: { comment: message }, 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
Activity.create(
type_of: :delete_result_comment,
user: current_user,
project: @result.my_module.experiment.project,
my_module: @result.my_module,
message: t(
'activities.delete_result_comment',
user: current_user.full_name,
result: @result.name
)
)
render json: {}, status: :ok
else
render json: { message: I18n.t('comments.delete_error') },
status: :unprocessable_entity
end
end
end
end
private
def load_vars
@last_comment_id = params[:from].to_i
@per_page = Constants::COMMENTS_SEARCH_LIMIT
@result = Result.find_by_id(params[:result_id])
@my_module = @result.my_module
unless @result
render_404
end
end
def check_view_permissions
unless can_view_result_comments(@my_module)
render_403
end
end
def check_add_permissions
unless can_add_result_comment_in_module(@my_module)
render_403
end
end
def check_edit_permissions
@comment = ResultComment.find_by_id(params[:id])
render_403 unless @comment.present? &&
can_edit_result_comment_in_module(@comment)
end
def check_destroy_permissions
@comment = ResultComment.find_by_id(params[:id])
render_403 unless @comment.present? &&
can_delete_result_comment_in_module(@comment)
end
def comment_params
params.require(:comment).permit(:message)
end
end