mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-01 13:13:22 +08:00
50 lines
1.5 KiB
Ruby
50 lines
1.5 KiB
Ruby
module SampleActions
|
|
extend ActiveSupport::Concern
|
|
include PermissionHelper
|
|
|
|
def delete_samples
|
|
check_destroy_samples_permissions
|
|
|
|
if params[:sample_ids].present?
|
|
counter_user = 0
|
|
counter_other_users = 0
|
|
params[:sample_ids].each do |id|
|
|
sample = Sample.find_by_id(id)
|
|
|
|
if sample && can_update_or_delete_sample?(sample)
|
|
sample.destroy
|
|
counter_user += 1
|
|
else
|
|
counter_other_users += 1
|
|
end
|
|
end
|
|
if counter_user > 0
|
|
if counter_other_users > 0
|
|
flash[:success] = t('samples.destroy.contains_other_samples_flash',
|
|
sample_number: counter_user,
|
|
other_samples_number: counter_other_users)
|
|
else
|
|
flash[:success] = t('samples.destroy.success_flash',
|
|
sample_number: counter_user)
|
|
end
|
|
else
|
|
flash[:notice] = t('samples.destroy.no_deleted_samples_flash',
|
|
other_samples_number: counter_other_users)
|
|
end
|
|
else
|
|
flash[:notice] = t('samples.destroy.no_sample_selected_flash')
|
|
end
|
|
|
|
if params[:controller] == 'my_modules'
|
|
redirect_to samples_my_module_path(@my_module)
|
|
elsif params[:controller] == 'projects'
|
|
redirect_to samples_project_path(@project)
|
|
elsif params[:controller] == 'experiments'
|
|
redirect_to samples_experiment_path(@experiment)
|
|
end
|
|
end
|
|
|
|
def check_destroy_samples_permissions
|
|
render_403 unless can_manage_samples?(@project.team)
|
|
end
|
|
end
|