2018-09-29 18:34:47 -04:00
# frozen_string_literal: true
2017-07-18 08:40:35 -04:00
module API
class GroupVariables < Grape :: API
include PaginationParams
before { authenticate! }
before { authorize! :admin_build , user_group }
params do
requires :id , type : String , desc : 'The ID of a group'
end
2018-11-08 07:18:17 -05:00
resource :groups , requirements : API :: NAMESPACE_OR_PROJECT_REQUIREMENTS do
2017-07-18 08:40:35 -04:00
desc 'Get group-level variables' do
success Entities :: Variable
end
params do
use :pagination
end
get ':id/variables' do
variables = user_group . variables
present paginate ( variables ) , with : Entities :: Variable
end
desc 'Get a specific variable from a group' do
success Entities :: Variable
end
params do
requires :key , type : String , desc : 'The key of the variable'
end
2018-08-27 11:31:01 -04:00
# rubocop: disable CodeReuse/ActiveRecord
2017-07-18 08:40:35 -04:00
get ':id/variables/:key' do
key = params [ :key ]
variable = user_group . variables . find_by ( key : key )
2018-04-18 05:19:40 -04:00
break not_found! ( 'GroupVariable' ) unless variable
2017-07-18 08:40:35 -04:00
present variable , with : Entities :: Variable
end
2018-08-27 11:31:01 -04:00
# rubocop: enable CodeReuse/ActiveRecord
2017-07-18 08:40:35 -04:00
desc 'Create a new variable in a group' do
success Entities :: Variable
end
params do
requires :key , type : String , desc : 'The key of the variable'
requires :value , type : String , desc : 'The value of the variable'
optional :protected , type : String , desc : 'Whether the variable is protected'
2019-05-06 09:11:42 -04:00
optional :variable_type , type : String , values : Ci :: GroupVariable . variable_types . keys , desc : 'The type of variable, must be one of env_var or file. Defaults to env_var'
2017-07-18 08:40:35 -04:00
end
post ':id/variables' do
variable_params = declared_params ( include_missing : false )
variable = user_group . variables . create ( variable_params )
if variable . valid?
present variable , with : Entities :: Variable
else
render_validation_error! ( variable )
end
end
desc 'Update an existing variable from a group' do
success Entities :: Variable
end
params do
optional :key , type : String , desc : 'The key of the variable'
optional :value , type : String , desc : 'The value of the variable'
optional :protected , type : String , desc : 'Whether the variable is protected'
2019-05-06 09:11:42 -04:00
optional :variable_type , type : String , values : Ci :: GroupVariable . variable_types . keys , desc : 'The type of variable, must be one of env_var or file'
2017-07-18 08:40:35 -04:00
end
2018-08-27 11:31:01 -04:00
# rubocop: disable CodeReuse/ActiveRecord
2017-07-18 08:40:35 -04:00
put ':id/variables/:key' do
variable = user_group . variables . find_by ( key : params [ :key ] )
2018-04-18 05:19:40 -04:00
break not_found! ( 'GroupVariable' ) unless variable
2017-07-18 08:40:35 -04:00
variable_params = declared_params ( include_missing : false ) . except ( :key )
if variable . update ( variable_params )
present variable , with : Entities :: Variable
else
render_validation_error! ( variable )
end
end
2018-08-27 11:31:01 -04:00
# rubocop: enable CodeReuse/ActiveRecord
2017-07-18 08:40:35 -04:00
desc 'Delete an existing variable from a group' do
success Entities :: Variable
end
params do
requires :key , type : String , desc : 'The key of the variable'
end
2018-08-27 11:31:01 -04:00
# rubocop: disable CodeReuse/ActiveRecord
2017-07-18 08:40:35 -04:00
delete ':id/variables/:key' do
variable = user_group . variables . find_by ( key : params [ :key ] )
not_found! ( 'GroupVariable' ) unless variable
2017-08-24 04:41:54 -04:00
destroy_conditionally! ( variable )
2017-07-18 08:40:35 -04:00
end
2018-08-27 11:31:01 -04:00
# rubocop: enable CodeReuse/ActiveRecord
2017-07-18 08:40:35 -04:00
end
end
end