2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2016-01-19 16:12:03 +05:30
module API
2020-07-28 23:09:34 +05:30
class Variables < Grape :: API :: Instance
2017-08-17 22:00:37 +05:30
include PaginationParams
2016-01-19 16:12:03 +05:30
before { authenticate! }
2016-04-02 18:10:28 +05:30
before { authorize! :admin_build , user_project }
2016-01-19 16:12:03 +05:30
2019-07-07 11:18:12 +05:30
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-28 23:09:34 +05:30
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-07-07 11:18:12 +05:30
end
2016-11-03 12:29:30 +05:30
params do
requires :id , type : String , desc : 'The ID of a project'
end
2019-03-02 22:35:43 +05:30
resource :projects , requirements : API :: NAMESPACE_OR_PROJECT_REQUIREMENTS do
2016-11-03 12:29:30 +05:30
desc 'Get project variables' do
2020-10-24 23:57:45 +05:30
success Entities :: Ci :: Variable
2016-11-03 12:29:30 +05:30
end
params do
2017-08-17 22:00:37 +05:30
use :pagination
2016-11-03 12:29:30 +05:30
end
2016-01-19 16:12:03 +05:30
get ':id/variables' do
variables = user_project . variables
2020-10-24 23:57:45 +05:30
present paginate ( variables ) , with : Entities :: Ci :: Variable
2016-01-19 16:12:03 +05:30
end
2016-11-03 12:29:30 +05:30
desc 'Get a specific variable from a project' do
2020-10-24 23:57:45 +05:30
success Entities :: Ci :: Variable
2016-11-03 12:29:30 +05:30
end
params do
requires :key , type : String , desc : 'The key of the variable'
end
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2016-01-19 16:12:03 +05:30
get ':id/variables/:key' do
2020-07-28 23:09:34 +05:30
variable = find_variable ( params )
not_found! ( 'Variable' ) unless variable
2016-01-19 16:12:03 +05:30
2020-10-24 23:57:45 +05:30
present variable , with : Entities :: Ci :: Variable
2016-01-19 16:12:03 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2016-01-19 16:12:03 +05:30
2016-11-03 12:29:30 +05:30
desc 'Create a new variable in a project' do
2020-10-24 23:57:45 +05:30
success Entities :: Ci :: Variable
2016-11-03 12:29:30 +05:30
end
params do
requires :key , type : String , desc : 'The key of the variable'
requires :value , type : String , desc : 'The value of the variable'
2019-09-04 21:01:54 +05:30
optional :protected , type : Boolean , desc : 'Whether the variable is protected'
optional :masked , type : Boolean , desc : 'Whether the variable is masked'
2020-07-28 23:09:34 +05:30
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-10-12 21:52:04 +05:30
optional :environment_scope , type : String , desc : 'The environment_scope of the variable'
2016-11-03 12:29:30 +05:30
end
2016-01-19 16:12:03 +05:30
post ':id/variables' do
2020-10-24 23:57:45 +05:30
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
2016-01-19 16:12:03 +05:30
if variable . valid?
2020-10-24 23:57:45 +05:30
present variable , with : Entities :: Ci :: Variable
2016-01-19 16:12:03 +05:30
else
render_validation_error! ( variable )
end
end
2016-11-03 12:29:30 +05:30
desc 'Update an existing variable from a project' do
2020-10-24 23:57:45 +05:30
success Entities :: Ci :: Variable
2016-11-03 12:29:30 +05:30
end
params do
optional :key , type : String , desc : 'The key of the variable'
optional :value , type : String , desc : 'The value of the variable'
2019-09-04 21:01:54 +05:30
optional :protected , type : Boolean , desc : 'Whether the variable is protected'
optional :masked , type : Boolean , desc : 'Whether the variable is masked'
2020-07-28 23:09:34 +05:30
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-10-12 21:52:04 +05:30
optional :environment_scope , type : String , desc : 'The environment_scope of the variable'
2020-07-28 23:09:34 +05:30
optional :filter , type : Hash , desc : 'Available filters: [environment_scope]. Example: filter[environment_scope]=production'
2016-11-03 12:29:30 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2016-01-19 16:12:03 +05:30
put ':id/variables/:key' do
2020-07-28 23:09:34 +05:30
variable = find_variable ( params )
not_found! ( 'Variable' ) unless variable
2016-01-19 16:12:03 +05:30
2020-10-24 23:57:45 +05:30
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-09-10 17:25:29 +05:30
2020-10-24 23:57:45 +05:30
if variable . valid?
present variable , with : Entities :: Ci :: Variable
2016-01-19 16:12:03 +05:30
else
render_validation_error! ( variable )
end
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2016-01-19 16:12:03 +05:30
2016-11-03 12:29:30 +05:30
desc 'Delete an existing variable from a project' do
2020-10-24 23:57:45 +05:30
success Entities :: Ci :: Variable
2016-11-03 12:29:30 +05:30
end
params do
requires :key , type : String , desc : 'The key of the variable'
2020-07-28 23:09:34 +05:30
optional :filter , type : Hash , desc : 'Available filters: [environment_scope]. Example: filter[environment_scope]=production'
2016-11-03 12:29:30 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
2016-01-19 16:12:03 +05:30
delete ':id/variables/:key' do
2020-07-28 23:09:34 +05:30
variable = find_variable ( params )
2017-08-17 22:00:37 +05:30
not_found! ( 'Variable' ) unless variable
2016-01-19 16:12:03 +05:30
2020-10-24 23:57:45 +05:30
:: Ci :: ChangeVariableService . new (
container : user_project ,
current_user : current_user ,
params : { action : :destroy , variable : variable }
) . execute
2020-03-13 15:44:24 +05:30
no_content!
2016-01-19 16:12:03 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2016-01-19 16:12:03 +05:30
end
end
end