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

107 lines
3.6 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2016-09-13 17:45:13 +05:30
module API
# Environments RESTfull API endpoints
class Environments < Grape::API
2017-08-17 22:00:37 +05:30
include ::API::Helpers::CustomValidators
include PaginationParams
2016-09-13 17:45:13 +05:30
before { authenticate! }
params do
requires :id, type: String, desc: 'The project ID'
end
2019-02-15 15:39:39 +05:30
resource :projects, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
2016-09-13 17:45:13 +05:30
desc 'Get all environments of the project' do
detail 'This feature was introduced in GitLab 8.11.'
success Entities::Environment
end
params do
2017-08-17 22:00:37 +05:30
use :pagination
2016-09-13 17:45:13 +05:30
end
get ':id/environments' do
authorize! :read_environment, user_project
present paginate(user_project.environments), with: Entities::Environment
end
desc 'Creates a new environment' do
detail 'This feature was introduced in GitLab 8.11.'
success Entities::Environment
end
params do
requires :name, type: String, desc: 'The name of the environment to be created'
optional :external_url, type: String, desc: 'URL on which this deployment is viewable'
2017-08-17 22:00:37 +05:30
optional :slug, absence: { message: "is automatically generated and cannot be changed" }
2016-09-13 17:45:13 +05:30
end
post ':id/environments' do
authorize! :create_environment, user_project
2017-08-17 22:00:37 +05:30
environment = user_project.environments.create(declared_params)
2016-09-13 17:45:13 +05:30
if environment.persisted?
present environment, with: Entities::Environment
else
render_validation_error!(environment)
end
end
desc 'Updates an existing environment' do
detail 'This feature was introduced in GitLab 8.11.'
success Entities::Environment
end
params do
requires :environment_id, type: Integer, desc: 'The environment ID'
optional :name, type: String, desc: 'The new environment name'
optional :external_url, type: String, desc: 'The new URL on which this deployment is viewable'
2017-08-17 22:00:37 +05:30
optional :slug, absence: { message: "is automatically generated and cannot be changed" }
2016-09-13 17:45:13 +05:30
end
put ':id/environments/:environment_id' do
authorize! :update_environment, user_project
environment = user_project.environments.find(params[:environment_id])
2017-08-17 22:00:37 +05:30
update_params = declared_params(include_missing: false).extract!(:name, :external_url)
2016-09-13 17:45:13 +05:30
if environment.update(update_params)
present environment, with: Entities::Environment
else
render_validation_error!(environment)
end
end
desc 'Deletes an existing environment' do
detail 'This feature was introduced in GitLab 8.11.'
success Entities::Environment
end
params do
2019-03-02 22:35:43 +05:30
requires :environment_id, type: Integer, desc: 'The environment ID'
2016-09-13 17:45:13 +05:30
end
delete ':id/environments/:environment_id' do
authorize! :update_environment, user_project
environment = user_project.environments.find(params[:environment_id])
2018-03-17 18:26:18 +05:30
destroy_conditionally!(environment)
2017-08-17 22:00:37 +05:30
end
desc 'Stops an existing environment' do
success Entities::Environment
end
params do
2019-03-02 22:35:43 +05:30
requires :environment_id, type: Integer, desc: 'The environment ID'
2017-08-17 22:00:37 +05:30
end
post ':id/environments/:environment_id/stop' do
2018-11-18 11:00:15 +05:30
authorize! :read_environment, user_project
2017-08-17 22:00:37 +05:30
environment = user_project.environments.find(params[:environment_id])
2018-11-18 11:00:15 +05:30
authorize! :stop_environment, environment
2017-08-17 22:00:37 +05:30
environment.stop_with_action!(current_user)
status 200
present environment, with: Entities::Environment
2016-09-13 17:45:13 +05:30
end
end
end
end