2016-02-12 23:52:43 +08:00
|
|
|
class StepCommentsController < ApplicationController
|
2016-12-24 03:41:23 +08:00
|
|
|
include ActionView::Helpers::TextHelper
|
2017-01-13 00:02:01 +08:00
|
|
|
include InputSanitizeHelper
|
2017-01-13 18:34:10 +08:00
|
|
|
include ApplicationHelper
|
2017-04-04 15:19:43 +08:00
|
|
|
include Rails.application.routes.url_helpers
|
2016-12-24 03:41:23 +08:00
|
|
|
|
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]
|
2018-02-09 23:14:40 +08:00
|
|
|
before_action :check_manage_permissions, only: %i(edit update 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'
|
2019-04-20 16:59:59 +08:00
|
|
|
partial = 'steps/comments/list.html.erb' if @last_comment_id.positive?
|
2016-09-20 20:13:40 +08:00
|
|
|
more_url = ''
|
2018-11-13 23:57:42 +08:00
|
|
|
if @comments.size.positive?
|
2016-02-12 23:52:43 +08:00
|
|
|
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,
|
2018-11-13 23:57:42 +08:00
|
|
|
resultsNumber: @comments.size,
|
2016-09-27 23:31:37 +08:00
|
|
|
moreUrl: more_url,
|
2018-11-13 23:57:42 +08:00
|
|
|
html: render_to_string(
|
|
|
|
partial: partial,
|
|
|
|
locals: { step: @step, comments: @comments, per_page: @per_page }
|
|
|
|
)
|
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
|
2017-03-08 20:18:20 +08:00
|
|
|
@comment = StepComment.new(
|
2016-02-12 23:52:43 +08:00
|
|
|
message: comment_params[:message],
|
2017-03-08 20:18:20 +08:00
|
|
|
user: current_user,
|
|
|
|
step: @step
|
|
|
|
)
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
respond_to do |format|
|
2017-03-10 00:20:27 +08:00
|
|
|
if @comment.save
|
2017-04-06 14:42:16 +08:00
|
|
|
|
|
|
|
step_comment_annotation_notification
|
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)
|
2019-03-19 23:12:07 +08:00
|
|
|
log_activity(:add_comment_to_step)
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
format.json {
|
|
|
|
render json: {
|
2016-10-21 15:37:24 +08:00
|
|
|
html: render_to_string(
|
2019-04-20 16:59:59 +08:00
|
|
|
partial: 'steps/comments/item.html.erb',
|
2016-02-12 23:52:43 +08:00
|
|
|
locals: {
|
|
|
|
comment: @comment
|
|
|
|
}
|
2016-10-21 15:37:24 +08:00
|
|
|
),
|
2018-11-09 22:58:08 +08:00
|
|
|
date: I18n.l(@comment.created_at, format: :full_date)
|
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
|
|
|
|
|
2016-08-25 16:26:40 +08:00
|
|
|
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
|
2017-04-06 14:42:16 +08:00
|
|
|
old_text = @comment.message
|
2016-08-25 16:26:40 +08:00
|
|
|
@comment.message = comment_params[:message]
|
|
|
|
respond_to do |format|
|
|
|
|
format.json do
|
|
|
|
if @comment.save
|
2017-04-06 14:42:16 +08:00
|
|
|
|
|
|
|
step_comment_annotation_notification(old_text)
|
2016-08-25 19:33:42 +08:00
|
|
|
# Generate activity
|
2019-03-19 23:12:07 +08:00
|
|
|
log_activity(:edit_step_comment)
|
|
|
|
|
2019-05-15 20:59:15 +08:00
|
|
|
message = custom_auto_link(@comment.message, simple_format: false,
|
|
|
|
tags: %w(img), team: current_team)
|
2017-01-13 18:34:10 +08:00
|
|
|
render json: { comment: message }, status: :ok
|
2016-08-25 16:26:40 +08:00
|
|
|
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
|
2019-03-19 23:12:07 +08:00
|
|
|
log_activity(:delete_step_comment)
|
2016-08-25 16:26:40 +08:00
|
|
|
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
|
2016-10-05 23:45:20 +08:00
|
|
|
@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
|
2018-02-02 01:41:28 +08:00
|
|
|
render_403 unless can_read_protocol_in_module?(@protocol)
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def check_add_permissions
|
2018-02-16 01:46:29 +08:00
|
|
|
render_403 unless can_create_comments_in_module?(@protocol.my_module)
|
2016-08-25 16:26:40 +08:00
|
|
|
end
|
|
|
|
|
2018-02-09 23:14:40 +08:00
|
|
|
def check_manage_permissions
|
2017-03-08 20:18:20 +08:00
|
|
|
@comment = StepComment.find_by_id(params[:id])
|
2016-08-25 16:26:40 +08:00
|
|
|
render_403 unless @comment.present? &&
|
2018-02-13 21:59:30 +08:00
|
|
|
can_manage_comment_in_module?(@comment.becomes(Comment))
|
2016-08-25 16:26:40 +08:00
|
|
|
end
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
def comment_params
|
|
|
|
params.require(:comment).permit(:message)
|
|
|
|
end
|
2017-04-06 14:42:16 +08:00
|
|
|
|
|
|
|
def step_comment_annotation_notification(old_text = nil)
|
|
|
|
smart_annotation_notification(
|
|
|
|
old_text: (old_text if old_text),
|
|
|
|
new_text: comment_params[:message],
|
2017-04-06 20:07:22 +08:00
|
|
|
title: t('notifications.step_comment_annotation_title',
|
2017-04-06 14:42:16 +08:00
|
|
|
step: @step.name,
|
|
|
|
user: current_user.full_name),
|
|
|
|
message: t('notifications.step_annotation_message_html',
|
|
|
|
project: link_to(@step.my_module.experiment.project.name,
|
|
|
|
project_url(@step.my_module
|
|
|
|
.experiment
|
|
|
|
.project)),
|
2017-04-20 19:05:49 +08:00
|
|
|
experiment: link_to(@step.my_module.experiment.name,
|
|
|
|
canvas_experiment_url(@step.my_module
|
|
|
|
.experiment)),
|
2017-04-06 14:42:16 +08:00
|
|
|
my_module: link_to(@step.my_module.name,
|
|
|
|
protocols_my_module_url(
|
|
|
|
@step.my_module
|
|
|
|
)),
|
|
|
|
step: link_to(@step.name,
|
|
|
|
protocols_my_module_url(@step.my_module)))
|
|
|
|
)
|
|
|
|
end
|
2019-03-19 23:12:07 +08:00
|
|
|
|
|
|
|
def log_activity(type_of)
|
|
|
|
Activities::CreateActivityService
|
|
|
|
.call(activity_type: type_of,
|
|
|
|
owner: current_user,
|
|
|
|
subject: @protocol,
|
|
|
|
team: current_team,
|
|
|
|
project: @step.my_module.experiment.project,
|
|
|
|
message_items: {
|
2019-03-29 22:09:20 +08:00
|
|
|
my_module: @step.my_module.id,
|
2019-03-19 23:12:07 +08:00
|
|
|
step: @step.id,
|
2019-04-03 19:10:45 +08:00
|
|
|
step_position: { id: @step.id, value_for: 'position_plus_one' }
|
2019-03-19 23:12:07 +08:00
|
|
|
})
|
|
|
|
end
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|