debian-mirror-gitlab/lib/api/admin/ci/variables.rb

159 lines
5.3 KiB
Ruby
Raw Normal View History

2020-05-24 23:13:21 +05:30
# frozen_string_literal: true
module API
module Admin
module Ci
2021-01-03 14:25:43 +05:30
class Variables < ::API::Base
2020-05-24 23:13:21 +05:30
include PaginationParams
before { authenticated_as_admin! }
2023-05-27 22:25:52 +05:30
feature_category :pipeline_composition
2021-01-29 00:20:46 +05:30
2020-05-24 23:13:21 +05:30
namespace 'admin' do
namespace 'ci' do
namespace 'variables' do
2023-01-13 00:05:48 +05:30
desc 'List all instance-level variables' do
2020-10-24 23:57:45 +05:30
success Entities::Ci::Variable
2023-01-13 00:05:48 +05:30
tags %w[ci_variables]
2020-05-24 23:13:21 +05:30
end
params do
use :pagination
end
get '/' do
variables = ::Ci::InstanceVariable.all
2020-10-24 23:57:45 +05:30
present paginate(variables), with: Entities::Ci::Variable
2020-05-24 23:13:21 +05:30
end
2023-01-13 00:05:48 +05:30
desc 'Get the details of a specific instance-level variable' do
2020-10-24 23:57:45 +05:30
success Entities::Ci::Variable
2023-01-13 00:05:48 +05:30
failure [{ code: 404, message: 'Instance Variable Not Found' }]
tags %w[ci_variables]
2020-05-24 23:13:21 +05:30
end
params do
2023-01-13 00:05:48 +05:30
requires :key, type: String, desc: 'The key of a variable'
2020-05-24 23:13:21 +05:30
end
get ':key' do
key = params[:key]
variable = ::Ci::InstanceVariable.find_by_key(key)
break not_found!('InstanceVariable') unless variable
2020-10-24 23:57:45 +05:30
present variable, with: Entities::Ci::Variable
2020-05-24 23:13:21 +05:30
end
desc 'Create a new instance-level variable' do
2020-10-24 23:57:45 +05:30
success Entities::Ci::Variable
2023-01-13 00:05:48 +05:30
failure [{ code: 400, message: '400 Bad Request' }]
tags %w[ci_variables]
2020-05-24 23:13:21 +05:30
end
2023-01-13 00:05:48 +05:30
route_setting :log_safety, { safe: %w[key], unsafe: %w[value] }
2020-05-24 23:13:21 +05:30
params do
requires :key,
type: String,
2023-01-13 00:05:48 +05:30
desc: 'The key of the variable. Max 255 characters'
2020-05-24 23:13:21 +05:30
requires :value,
type: String,
2023-01-13 00:05:48 +05:30
desc: 'The value of a variable'
2020-05-24 23:13:21 +05:30
optional :protected,
2023-01-13 00:05:48 +05:30
type: Boolean,
2020-05-24 23:13:21 +05:30
desc: 'Whether the variable is protected'
optional :masked,
2023-01-13 00:05:48 +05:30
type: Boolean,
2020-05-24 23:13:21 +05:30
desc: 'Whether the variable is masked'
2023-01-13 00:05:48 +05:30
optional :raw,
type: Boolean,
desc: 'Whether the variable will be expanded'
2020-05-24 23:13:21 +05:30
optional :variable_type,
type: String,
values: ::Ci::InstanceVariable.variable_types.keys,
2023-01-13 00:05:48 +05:30
desc: 'The type of a variable. Available types are: env_var (default) and file'
2020-05-24 23:13:21 +05:30
end
post '/' do
variable_params = declared_params(include_missing: false)
variable = ::Ci::InstanceVariable.new(variable_params)
if variable.save
2020-10-24 23:57:45 +05:30
present variable, with: Entities::Ci::Variable
2020-05-24 23:13:21 +05:30
else
render_validation_error!(variable)
end
end
2023-01-13 00:05:48 +05:30
desc 'Update an instance-level variable' do
2020-10-24 23:57:45 +05:30
success Entities::Ci::Variable
2023-01-13 00:05:48 +05:30
failure [{ code: 404, message: 'Instance Variable Not Found' }]
tags %w[ci_variables]
2020-05-24 23:13:21 +05:30
end
2023-01-13 00:05:48 +05:30
route_setting :log_safety, { safe: %w[key], unsafe: %w[value] }
2020-05-24 23:13:21 +05:30
params do
optional :key,
type: String,
2023-01-13 00:05:48 +05:30
desc: 'The key of a variable'
2020-05-24 23:13:21 +05:30
optional :value,
type: String,
2023-01-13 00:05:48 +05:30
desc: 'The value of a variable'
2020-05-24 23:13:21 +05:30
optional :protected,
2023-01-13 00:05:48 +05:30
type: Boolean,
2020-05-24 23:13:21 +05:30
desc: 'Whether the variable is protected'
optional :masked,
2023-01-13 00:05:48 +05:30
type: Boolean,
2020-05-24 23:13:21 +05:30
desc: 'Whether the variable is masked'
2023-01-13 00:05:48 +05:30
optional :raw,
type: Boolean,
desc: 'Whether the variable will be expanded'
2020-05-24 23:13:21 +05:30
optional :variable_type,
type: String,
values: ::Ci::InstanceVariable.variable_types.keys,
2023-01-13 00:05:48 +05:30
desc: 'The type of a variable. Available types are: env_var (default) and file'
2020-05-24 23:13:21 +05:30
end
put ':key' do
variable = ::Ci::InstanceVariable.find_by_key(params[:key])
break not_found!('InstanceVariable') unless variable
variable_params = declared_params(include_missing: false).except(:key)
if variable.update(variable_params)
2020-10-24 23:57:45 +05:30
present variable, with: Entities::Ci::Variable
2020-05-24 23:13:21 +05:30
else
render_validation_error!(variable)
end
end
desc 'Delete an existing instance-level variable' do
2020-10-24 23:57:45 +05:30
success Entities::Ci::Variable
2023-01-13 00:05:48 +05:30
failure [{ code: 404, message: 'Instance Variable Not Found' }]
tags %w[ci_variables]
2020-05-24 23:13:21 +05:30
end
params do
2023-01-13 00:05:48 +05:30
requires :key, type: String, desc: 'The key of a variable'
2020-05-24 23:13:21 +05:30
end
delete ':key' do
variable = ::Ci::InstanceVariable.find_by_key(params[:key])
not_found!('InstanceVariable') unless variable
variable.destroy
no_content!
end
end
end
end
end
end
end
end