debian-mirror-gitlab/app/controllers/admin/ci/variables_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.3 KiB
Ruby
Raw Normal View History

2020-05-24 23:13:21 +05:30
# frozen_string_literal: true
2023-03-04 22:38:38 +05:30
module Admin
module Ci
class VariablesController < ApplicationController
feature_category :pipeline_authoring
def show
respond_to do |format|
format.json { render_instance_variables }
end
2020-05-24 23:13:21 +05:30
end
2023-03-04 22:38:38 +05:30
def update
service = ::Ci::UpdateInstanceVariablesService.new(variables_params)
if service.execute
respond_to do |format|
format.json { render_instance_variables }
end
else
respond_to do |format|
format.json { render_error(service.errors) }
end
end
2020-05-24 23:13:21 +05:30
end
2023-03-04 22:38:38 +05:30
private
2020-05-24 23:13:21 +05:30
2023-03-04 22:38:38 +05:30
def variables
@variables ||= ::Ci::InstanceVariable.all
end
2020-05-24 23:13:21 +05:30
2023-03-04 22:38:38 +05:30
def render_instance_variables
render status: :ok,
json: {
variables: ::Ci::InstanceVariableSerializer.new.represent(variables)
}
end
2020-05-24 23:13:21 +05:30
2023-03-04 22:38:38 +05:30
def render_error(errors)
render status: :bad_request, json: errors
end
2020-05-24 23:13:21 +05:30
2023-03-04 22:38:38 +05:30
def variables_params
params.permit(variables_attributes: Array(variable_params_attributes))
end
2020-05-24 23:13:21 +05:30
2023-03-04 22:38:38 +05:30
def variable_params_attributes
%i[id variable_type key secret_value protected masked raw _destroy]
end
end
2020-05-24 23:13:21 +05:30
end
end