debian-mirror-gitlab/app/controllers/groups/variables_controller.rb

61 lines
1.5 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
module Groups
class VariablesController < Groups::ApplicationController
2021-03-05 16:19:46 +05:30
before_action :authorize_admin_group!
2017-09-10 17:25:29 +05:30
2018-03-27 19:54:05 +05:30
skip_cross_project_access_check :show, :update
2021-01-03 14:25:43 +05:30
feature_category :continuous_integration
2017-09-10 17:25:29 +05:30
def show
2018-03-17 18:26:18 +05:30
respond_to do |format|
format.json do
2020-07-28 23:09:34 +05:30
render status: :ok, json: { variables: ::Ci::GroupVariableSerializer.new.represent(@group.variables) }
2018-03-17 18:26:18 +05:30
end
end
2017-09-10 17:25:29 +05:30
end
def update
2020-10-24 23:57:45 +05:30
update_result = Ci::ChangeVariablesService.new(
container: @group, current_user: current_user,
params: group_variables_params
).execute
if update_result
2018-03-17 18:26:18 +05:30
respond_to do |format|
2018-10-15 14:42:47 +05:30
format.json { render_group_variables }
2018-03-17 18:26:18 +05:30
end
2017-09-10 17:25:29 +05:30
else
2018-03-17 18:26:18 +05:30
respond_to do |format|
format.json { render_error }
end
2017-09-10 17:25:29 +05:30
end
end
2018-03-17 18:26:18 +05:30
private
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
def render_group_variables
2020-07-28 23:09:34 +05:30
render status: :ok, json: { variables: ::Ci::GroupVariableSerializer.new.represent(@group.variables) }
2017-09-10 17:25:29 +05:30
end
2018-03-17 18:26:18 +05:30
def render_error
render status: :bad_request, json: @group.errors.full_messages
2017-09-10 17:25:29 +05:30
end
2018-03-17 18:26:18 +05:30
def group_variables_params
params.permit(variables_attributes: [*variable_params_attributes])
2017-09-10 17:25:29 +05:30
end
def variable_params_attributes
2019-07-31 22:56:46 +05:30
%i[id variable_type key secret_value protected masked _destroy]
2017-09-10 17:25:29 +05:30
end
def authorize_admin_build!
return render_404 unless can?(current_user, :admin_build, group)
end
end
end
2021-04-29 21:17:54 +05:30
2021-06-08 01:23:25 +05:30
Groups::VariablesController.prepend_mod_with('Groups::VariablesController')