gitlab-org--gitlab-foss/lib/api/environments.rb

129 lines
4.7 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-07-26 07:37:02 +00:00
module API
# Environments RESTfull API endpoints
class Environments < ::API::Base
include PaginationParams
2016-07-26 07:37:02 +00:00
before { authenticate! }
feature_category :continuous_delivery
params do
requires :id, type: String, desc: 'The project ID'
end
resource :projects, requirements: API::NAMESPACE_OR_PROJECT_REQUIREMENTS do
desc 'Get all environments of the project' do
detail 'This feature was introduced in GitLab 8.11.'
success Entities::Environment
end
2016-08-01 06:42:09 +00:00
params do
use :pagination
optional :name, type: String, desc: 'Returns the environment with this name'
optional :search, type: String, desc: 'Returns list of environments matching the search criteria'
mutually_exclusive :name, :search, message: 'cannot be used together'
2016-08-01 06:42:09 +00:00
end
2016-07-26 07:37:02 +00:00
get ':id/environments' do
authorize! :read_environment, user_project
environments = ::EnvironmentsFinder.new(user_project, current_user, params).find
present paginate(environments), with: Entities::Environment, current_user: current_user
2016-07-26 07:37:02 +00:00
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'
2016-12-08 01:09:18 +00:00
optional :slug, absence: { message: "is automatically generated and cannot be changed" }
end
2016-07-26 07:37:02 +00:00
post ':id/environments' do
authorize! :create_environment, user_project
2016-11-14 13:44:27 +00:00
environment = user_project.environments.create(declared_params)
2016-07-26 07:37:02 +00:00
if environment.persisted?
present environment, with: Entities::Environment, current_user: current_user
2016-07-26 07:37:02 +00:00
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'
2016-12-08 01:09:18 +00:00
optional :slug, absence: { message: "is automatically generated and cannot be changed" }
2016-07-26 07:37:02 +00:00
end
put ':id/environments/:environment_id' do
authorize! :update_environment, user_project
environment = user_project.environments.find(params[:environment_id])
2016-11-14 13:44:27 +00:00
update_params = declared_params(include_missing: false).extract!(:name, :external_url)
if environment.update(update_params)
present environment, with: Entities::Environment, current_user: current_user
2016-07-26 07:37:02 +00:00
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
requires :environment_id, type: Integer, desc: 'The environment ID'
end
delete ':id/environments/:environment_id' do
authorize! :read_environment, user_project
environment = user_project.environments.find(params[:environment_id])
authorize! :destroy_environment, environment
2017-03-02 12:14:13 +00:00
destroy_conditionally!(environment)
end
desc 'Stops an existing environment' do
success Entities::Environment
end
params do
requires :environment_id, type: Integer, desc: 'The environment ID'
end
post ':id/environments/:environment_id/stop' do
authorize! :read_environment, user_project
environment = user_project.environments.find(params[:environment_id])
authorize! :stop_environment, environment
environment.stop_with_action!(current_user)
status 200
present environment, with: Entities::Environment, current_user: current_user
end
desc 'Get a single environment' do
success Entities::Environment
end
params do
requires :environment_id, type: Integer, desc: 'The environment ID'
end
get ':id/environments/:environment_id' do
authorize! :read_environment, user_project
environment = user_project.environments.find(params[:environment_id])
present environment, with: Entities::Environment, current_user: current_user,
except: [:project, { last_deployment: [:environment] }],
last_deployment: true
end
2016-07-26 07:37:02 +00:00
end
end
end