scinote-web/app/controllers/step_elements/checklist_items_controller.rb
aignatov-bio fa881253b6
Merge pull request #4672 from aignatov-bio/ai-sci-7531-fix-cross-team-redirections
Add missed notifications to steps and fix notification for protocol repository [SCI-7531]
2023-01-04 10:07:36 +01:00

170 lines
5.7 KiB
Ruby

# frozen_string_literal: true
module StepElements
class ChecklistItemsController < ApplicationController
include ApplicationHelper
include StepsActions
before_action :load_vars
before_action :load_checklist_item, only: %i(update toggle destroy)
before_action :check_toggle_permissions, only: %i(toggle)
before_action :check_manage_permissions, only: %i(create update destroy)
def create
checklist_item = @checklist.checklist_items.build(checklist_item_params.merge!(created_by: current_user))
ActiveRecord::Base.transaction do
checklist_item.save!
log_activity(
"#{@step.protocol.in_module? ? :task : :protocol}_step_checklist_item_added",
{
checklist_item: checklist_item.text,
checklist_name: @checklist.name
}
)
checklist_item_annotation(@step, checklist_item)
end
render json: checklist_item, serializer: ChecklistItemSerializer, user: current_user
rescue ActiveRecord::RecordInvalid
render json: checklist_item, serializer: ChecklistItemSerializer,
user: current_user,
status: :unprocessable_entity
end
def update
old_text = @checklist_item.text
@checklist_item.assign_attributes(
checklist_item_params.merge(last_modified_by: current_user)
)
if @checklist_item.save!
log_activity(
"#{@step.protocol.in_module? ? :task : :protocol}_step_checklist_item_edited",
checklist_item: @checklist_item.text,
checklist_name: @checklist.name
)
checklist_item_annotation(@step, @checklist_item, old_text)
end
render json: @checklist_item, serializer: ChecklistItemSerializer, user: current_user
rescue ActiveRecord::RecordInvalid
render json: @checklist_item, serializer: ChecklistItemSerializer,
user: current_user,
status: :unprocessable_entity
end
def toggle
@checklist_item.assign_attributes(
checklist_toggle_item_params.merge(last_modified_by: current_user)
)
if @checklist_item.save!
completed_items = @checklist_item.checklist.checklist_items.where(checked: true).count
all_items = @checklist_item.checklist.checklist_items.count
text_activity = smart_annotation_parser(@checklist_item.text).gsub(/\s+/, ' ')
type_of = if @checklist_item.saved_change_to_attribute(:checked).last
:check_step_checklist_item
else
:uncheck_step_checklist_item
end
log_activity(type_of,
checkbox: text_activity,
num_completed: completed_items.to_s,
num_all: all_items.to_s)
end
render json: @checklist_item, serializer: ChecklistItemSerializer, user: current_user
rescue ActiveRecord::RecordInvalid
render json: @checklist_item, serializer: ChecklistItemSerializer,
user: current_user,
status: :unprocessable_entity
end
def destroy
if @checklist_item.destroy
log_activity(
"#{@step.protocol.in_module? ? :task : :protocol}_step_checklist_item_deleted",
checklist_item: @checklist_item.text,
checklist_name: @checklist.name
)
render json: @checklist_item, serializer: ChecklistItemSerializer, user: current_user
else
render json: @checklist_item, serializer: ChecklistItemSerializer,
user: current_user,
status: :unprocessable_entity
end
end
def reorder
@checklist.with_lock do
params[:checklist_item_positions].each do |id, position|
@checklist.checklist_items.find(id).update_column(:position, position)
end
@checklist.touch
end
render json: params[:checklist_item_positions], status: :ok
end
private
def check_toggle_permissions
if ActiveModel::Type::Boolean.new.cast(checklist_toggle_item_params[:checked])
render_403 unless can_check_my_module_steps?(@step.protocol.my_module)
else
render_403 unless can_uncheck_my_module_steps?(@step.protocol.my_module)
end
end
def check_manage_permissions
render_403 unless can_manage_step?(@step)
end
def checklist_item_params
params.require(:attributes).permit(:text, :position)
end
def checklist_toggle_item_params
params.require(:attributes).permit(:checked)
end
def load_vars
@step = Step.find_by(id: params[:step_id])
return render_404 unless @step
@protocol = @step.protocol
@checklist = @step.checklists.find_by(id: params[:checklist_id])
return render_404 unless @checklist
end
def load_checklist_item
@checklist_item = @checklist.checklist_items.find_by(id: params[:id])
return render_404 unless @checklist_item
end
def log_activity(type_of, message_items = {})
Activities::CreateActivityService.call(
activity_type: type_of,
owner: current_user,
subject: @step.protocol,
team: @step.protocol.team,
project: @step.protocol.in_module? ? @step.protocol.my_module.project : nil,
message_items: message_items.merge(step_message_items)
)
end
def step_message_items
items = {
step: @step.id,
step_position: { id: @step.id, value_for: 'position_plus_one' }
}
items[:my_module] = @step.protocol.my_module.id if @step.protocol.in_module?
items
end
end
end