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

106 lines
3.2 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
module API
class Variables < Grape::API
2017-08-17 22:00:37 +05:30
include PaginationParams
before { authenticate! }
2016-04-02 18:10:28 +05:30
before { authorize! :admin_build, user_project }
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
success Entities::Variable
end
params do
2017-08-17 22:00:37 +05:30
use :pagination
2016-11-03 12:29:30 +05:30
end
get ':id/variables' do
variables = user_project.variables
present paginate(variables), with: Entities::Variable
end
2016-11-03 12:29:30 +05:30
desc 'Get a specific variable from a project' do
success Entities::Variable
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
get ':id/variables/:key' do
key = params[:key]
2017-08-17 22:00:37 +05:30
variable = user_project.variables.find_by(key: key)
2018-10-15 14:42:47 +05:30
break not_found!('Variable') unless variable
present variable, with: Entities::Variable
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2016-11-03 12:29:30 +05:30
desc 'Create a new variable in a project' 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'
2017-09-10 17:25:29 +05:30
optional :protected, type: String, desc: 'Whether the variable is protected'
2016-11-03 12:29:30 +05:30
end
post ':id/variables' do
2017-09-10 17:25:29 +05:30
variable_params = declared_params(include_missing: false)
variable = user_project.variables.create(variable_params)
if variable.valid?
present variable, with: Entities::Variable
else
render_validation_error!(variable)
end
end
2016-11-03 12:29:30 +05:30
desc 'Update an existing variable from a project' 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'
2017-09-10 17:25:29 +05:30
optional :protected, type: String, desc: 'Whether the variable is protected'
2016-11-03 12:29:30 +05:30
end
2018-12-05 23:21:45 +05:30
# rubocop: disable CodeReuse/ActiveRecord
put ':id/variables/:key' do
2016-11-03 12:29:30 +05:30
variable = user_project.variables.find_by(key: params[:key])
2018-10-15 14:42:47 +05:30
break not_found!('Variable') unless variable
2017-09-10 17:25:29 +05:30
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-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
2016-11-03 12:29:30 +05:30
desc 'Delete an existing variable from a project' do
success Entities::Variable
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
delete ':id/variables/:key' do
2016-11-03 12:29:30 +05:30
variable = user_project.variables.find_by(key: params[:key])
2017-08-17 22:00:37 +05:30
not_found!('Variable') unless variable
2018-03-17 18:26:18 +05:30
# Variables don't have any timestamp. Therfore, destroy unconditionally.
2017-09-10 17:25:29 +05:30
status 204
2017-08-17 22:00:37 +05:30
variable.destroy
end
2018-12-05 23:21:45 +05:30
# rubocop: enable CodeReuse/ActiveRecord
end
end
end