2021-05-09 22:59:10 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module AccessPermissions
|
|
|
|
class MyModulesController < ApplicationController
|
|
|
|
before_action :set_my_module
|
2023-02-23 21:57:38 +08:00
|
|
|
before_action :set_experiment
|
|
|
|
before_action :set_project
|
2021-05-09 22:59:10 +08:00
|
|
|
before_action :check_read_permissions, only: %i(show)
|
2021-05-22 20:41:56 +08:00
|
|
|
before_action :check_manage_permissions, only: %i(edit update)
|
2021-05-09 22:59:10 +08:00
|
|
|
|
2023-07-18 19:36:41 +08:00
|
|
|
def show; end
|
2021-05-09 22:59:10 +08:00
|
|
|
|
2023-07-18 19:36:41 +08:00
|
|
|
def edit; end
|
2021-05-09 22:59:10 +08:00
|
|
|
|
|
|
|
def update
|
2023-01-23 05:23:18 +08:00
|
|
|
user_id = permitted_update_params[:user_id]
|
2023-01-23 23:01:40 +08:00
|
|
|
@user_assignment = @my_module.user_assignments.find_by(user_id: user_id, team: current_team)
|
2021-11-15 18:12:31 +08:00
|
|
|
|
|
|
|
if permitted_update_params[:user_role_id] == 'reset'
|
2023-01-23 23:01:40 +08:00
|
|
|
@user_assignment.update!(
|
|
|
|
user_role_id: @experiment.user_assignments.find_by(user_id: user_id, team: current_team).user_role_id,
|
2023-01-23 05:23:18 +08:00
|
|
|
assigned: :automatically
|
|
|
|
)
|
2021-11-15 18:12:31 +08:00
|
|
|
else
|
2023-01-23 23:01:40 +08:00
|
|
|
@user_assignment.update!(
|
2023-01-23 05:23:18 +08:00
|
|
|
user_role_id: permitted_update_params[:user_role_id],
|
|
|
|
assigned: :manually
|
|
|
|
)
|
2021-11-15 18:12:31 +08:00
|
|
|
end
|
2021-05-09 22:59:10 +08:00
|
|
|
|
2023-01-23 05:23:18 +08:00
|
|
|
log_change_activity
|
|
|
|
|
2023-07-18 19:36:41 +08:00
|
|
|
render :my_module_member
|
2021-05-09 22:59:10 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def permitted_update_params
|
2023-01-23 05:23:18 +08:00
|
|
|
params.require(:user_assignment)
|
2021-05-09 22:59:10 +08:00
|
|
|
.permit(%i(user_role_id user_id))
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_project
|
2023-02-23 21:57:38 +08:00
|
|
|
@project = @experiment.project
|
2021-05-09 22:59:10 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_experiment
|
2023-02-23 21:57:38 +08:00
|
|
|
@experiment = @my_module.experiment
|
2021-05-09 22:59:10 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_my_module
|
2023-02-23 21:57:38 +08:00
|
|
|
@my_module = MyModule.includes(user_assignments: %i(user user_role)).find_by(id: params[:id])
|
2021-05-09 22:59:10 +08:00
|
|
|
|
|
|
|
render_404 unless @my_module
|
|
|
|
end
|
|
|
|
|
|
|
|
def check_manage_permissions
|
2021-09-14 17:08:35 +08:00
|
|
|
render_403 unless can_manage_my_module_users?(@my_module)
|
2021-05-09 22:59:10 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def check_read_permissions
|
2021-09-14 17:08:35 +08:00
|
|
|
render_403 unless can_read_my_module?(@my_module)
|
2021-05-09 22:59:10 +08:00
|
|
|
end
|
2023-01-23 05:23:18 +08:00
|
|
|
|
|
|
|
def log_change_activity
|
|
|
|
Activities::CreateActivityService.call(
|
|
|
|
activity_type: :change_user_role_on_my_module,
|
|
|
|
owner: current_user,
|
|
|
|
subject: @my_module,
|
|
|
|
team: @project.team,
|
|
|
|
project: @project,
|
|
|
|
message_items: {
|
|
|
|
my_module: @my_module.id,
|
|
|
|
user_target: @user_assignment.user_id,
|
|
|
|
role: @user_assignment.user_role.name
|
|
|
|
}
|
|
|
|
)
|
|
|
|
end
|
2021-05-09 22:59:10 +08:00
|
|
|
end
|
|
|
|
end
|