2018-09-29 18:34:47 -04:00
# frozen_string_literal: true
2015-12-31 09:19:13 -05:00
module API
2020-10-14 20:08:42 -04:00
class Variables < :: API :: Base
2016-11-21 14:15:46 -05:00
include PaginationParams
2015-12-31 09:19:13 -05:00
before { authenticate! }
2016-02-01 17:58:04 -05:00
before { authorize! :admin_build , user_project }
2015-12-31 09:19:13 -05:00
2019-03-04 08:50:15 -05:00
helpers do
def filter_variable_parameters ( params )
# This method exists so that EE can more easily filter out certain
# parameters, without having to modify the source code directly.
params
end
2020-07-08 05:09:17 -04:00
def find_variable ( params )
variables = :: Ci :: VariablesFinder . new ( user_project , params ) . execute . to_a
return variables . first unless variables . many? # rubocop: disable CodeReuse/ActiveRecord
conflict! ( " There are multiple variables with provided parameters. Please use 'filter[environment_scope]' " )
end
2019-03-04 08:50:15 -05:00
end
2016-10-12 14:38:33 -04:00
params do
requires :id , type : String , desc : 'The ID of a project'
end
2019-01-16 07:09:29 -05:00
resource :projects , requirements : API :: NAMESPACE_OR_PROJECT_REQUIREMENTS do
2016-10-12 14:38:33 -04:00
desc 'Get project variables' do
2020-08-13 14:10:36 -04:00
success Entities :: Ci :: Variable
2016-10-12 14:38:33 -04:00
end
params do
2016-11-21 14:15:46 -05:00
use :pagination
2016-10-12 14:38:33 -04:00
end
2015-12-31 09:19:13 -05:00
get ':id/variables' do
variables = user_project . variables
2020-08-13 14:10:36 -04:00
present paginate ( variables ) , with : Entities :: Ci :: Variable
2015-12-31 09:19:13 -05:00
end
2016-10-12 14:38:33 -04:00
desc 'Get a specific variable from a project' do
2020-08-13 14:10:36 -04:00
success Entities :: Ci :: Variable
2016-10-12 14:38:33 -04:00
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
2016-01-07 07:49:38 -05:00
get ':id/variables/:key' do
2020-07-08 05:09:17 -04:00
variable = find_variable ( params )
not_found! ( 'Variable' ) unless variable
2015-12-31 11:03:11 -05:00
2020-08-13 14:10:36 -04:00
present variable , with : Entities :: Ci :: Variable
2015-12-31 09:19:13 -05:00
end
2018-08-27 11:31:01 -04:00
# rubocop: enable CodeReuse/ActiveRecord
2015-12-31 10:25:49 -05:00
2016-10-12 14:38:33 -04:00
desc 'Create a new variable in a project' do
2020-08-13 14:10:36 -04:00
success Entities :: Ci :: Variable
2016-10-12 14:38:33 -04:00
end
params do
requires :key , type : String , desc : 'The key of the variable'
requires :value , type : String , desc : 'The value of the variable'
2019-05-26 20:51:48 -04:00
optional :protected , type : Boolean , desc : 'Whether the variable is protected'
2019-05-26 18:29:41 -04:00
optional :masked , type : Boolean , desc : 'Whether the variable is masked'
2020-06-25 20:09:13 -04:00
optional :variable_type , type : String , values : :: Ci :: Variable . variable_types . keys , desc : 'The type of variable, must be one of env_var or file. Defaults to env_var'
2019-08-08 14:51:52 -04:00
optional :environment_scope , type : String , desc : 'The environment_scope of the variable'
2016-10-12 14:38:33 -04:00
end
2015-12-31 16:30:07 -05:00
post ':id/variables' do
2020-08-18 11:10:33 -04:00
variable = :: Ci :: ChangeVariableService . new (
container : user_project ,
current_user : current_user ,
params : { action : :create , variable_params : filter_variable_parameters ( declared_params ( include_missing : false ) ) }
) . execute
2015-12-31 16:30:07 -05:00
2016-01-13 06:47:11 -05:00
if variable . valid?
2020-08-13 14:10:36 -04:00
present variable , with : Entities :: Ci :: Variable
2016-01-13 06:47:11 -05:00
else
render_validation_error! ( variable )
end
2015-12-31 16:30:07 -05:00
end
2016-10-12 14:38:33 -04:00
desc 'Update an existing variable from a project' do
2020-08-13 14:10:36 -04:00
success Entities :: Ci :: Variable
2016-10-12 14:38:33 -04:00
end
params do
optional :key , type : String , desc : 'The key of the variable'
optional :value , type : String , desc : 'The value of the variable'
2019-05-26 20:51:48 -04:00
optional :protected , type : Boolean , desc : 'Whether the variable is protected'
2019-05-26 18:29:41 -04:00
optional :masked , type : Boolean , desc : 'Whether the variable is masked'
2020-06-25 20:09:13 -04:00
optional :variable_type , type : String , values : :: Ci :: Variable . variable_types . keys , desc : 'The type of variable, must be one of env_var or file'
2019-08-08 14:51:52 -04:00
optional :environment_scope , type : String , desc : 'The environment_scope of the variable'
2020-07-08 05:09:17 -04:00
optional :filter , type : Hash , desc : 'Available filters: [environment_scope]. Example: filter[environment_scope]=production'
2016-10-12 14:38:33 -04:00
end
2018-08-27 11:31:01 -04:00
# rubocop: disable CodeReuse/ActiveRecord
2016-01-07 07:49:38 -05:00
put ':id/variables/:key' do
2020-07-08 05:09:17 -04:00
variable = find_variable ( params )
not_found! ( 'Variable' ) unless variable
2015-12-31 11:03:11 -05:00
2020-08-18 11:10:33 -04:00
variable_params = filter_variable_parameters (
declared_params ( include_missing : false )
. except ( :key , :filter )
)
variable = :: Ci :: ChangeVariableService . new (
container : user_project ,
current_user : current_user ,
params : { action : :update , variable : variable , variable_params : variable_params }
) . execute
2017-07-06 03:45:38 -04:00
2020-08-18 11:10:33 -04:00
if variable . valid?
2020-08-13 14:10:36 -04:00
present variable , with : Entities :: Ci :: Variable
2016-01-13 06:47:11 -05:00
else
render_validation_error! ( variable )
end
2015-12-31 10:25:49 -05:00
end
2018-08-27 11:31:01 -04:00
# rubocop: enable CodeReuse/ActiveRecord
2015-12-31 10:56:03 -05:00
2016-10-12 14:38:33 -04:00
desc 'Delete an existing variable from a project' do
2020-08-13 14:10:36 -04:00
success Entities :: Ci :: Variable
2016-10-12 14:38:33 -04:00
end
params do
requires :key , type : String , desc : 'The key of the variable'
2020-07-08 05:09:17 -04:00
optional :filter , type : Hash , desc : 'Available filters: [environment_scope]. Example: filter[environment_scope]=production'
2016-10-12 14:38:33 -04:00
end
2018-08-27 11:31:01 -04:00
# rubocop: disable CodeReuse/ActiveRecord
2016-01-07 07:49:38 -05:00
delete ':id/variables/:key' do
2020-07-08 05:09:17 -04:00
variable = find_variable ( params )
2017-02-20 14:32:44 -05:00
not_found! ( 'Variable' ) unless variable
2015-12-31 16:30:07 -05:00
2020-08-18 11:10:33 -04:00
:: Ci :: ChangeVariableService . new (
container : user_project ,
current_user : current_user ,
params : { action : :destroy , variable : variable }
) . execute
2020-01-16 13:08:46 -05:00
no_content!
2015-12-31 10:56:03 -05:00
end
2018-08-27 11:31:01 -04:00
# rubocop: enable CodeReuse/ActiveRecord
2015-12-31 09:19:13 -05:00
end
end
end