2018-07-25 05:30:33 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-28 09:17:42 -04:00
|
|
|
class ProjectAutoDevops < ApplicationRecord
|
2019-07-19 17:39:26 -04:00
|
|
|
belongs_to :project, inverse_of: :auto_devops
|
2017-09-04 09:44:46 -04:00
|
|
|
|
2018-06-01 17:39:24 -04:00
|
|
|
enum deploy_strategy: {
|
2018-06-07 12:11:08 -04:00
|
|
|
continuous: 0,
|
2018-10-01 09:03:48 -04:00
|
|
|
manual: 1,
|
|
|
|
timed_incremental: 2
|
2018-06-01 17:39:24 -04:00
|
|
|
}
|
|
|
|
|
2017-09-12 06:33:48 -04:00
|
|
|
scope :enabled, -> { where(enabled: true) }
|
|
|
|
scope :disabled, -> { where(enabled: false) }
|
|
|
|
|
2018-06-07 14:09:14 -04:00
|
|
|
after_save :create_gitlab_deploy_token, if: :needs_to_create_deploy_token?
|
|
|
|
|
2018-03-13 09:00:14 -04:00
|
|
|
def predefined_variables
|
|
|
|
Gitlab::Ci::Variables::Collection.new.tap do |variables|
|
2018-10-01 09:03:48 -04:00
|
|
|
variables.concat(deployment_strategy_default_variables)
|
2018-03-13 09:00:14 -04:00
|
|
|
end
|
2017-09-06 12:57:07 -04:00
|
|
|
end
|
2018-06-07 14:09:14 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def create_gitlab_deploy_token
|
|
|
|
project.deploy_tokens.create!(
|
|
|
|
name: DeployToken::GITLAB_DEPLOY_TOKEN_NAME,
|
|
|
|
read_registry: true
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def needs_to_create_deploy_token?
|
2018-08-16 09:24:25 -04:00
|
|
|
project.auto_devops_enabled? &&
|
2018-06-07 14:09:14 -04:00
|
|
|
!project.public? &&
|
|
|
|
!project.deploy_tokens.find_by(name: DeployToken::GITLAB_DEPLOY_TOKEN_NAME).present?
|
|
|
|
end
|
2018-10-01 09:03:48 -04:00
|
|
|
|
|
|
|
def deployment_strategy_default_variables
|
|
|
|
Gitlab::Ci::Variables::Collection.new.tap do |variables|
|
|
|
|
if manual?
|
|
|
|
variables.append(key: 'STAGING_ENABLED', value: '1')
|
|
|
|
variables.append(key: 'INCREMENTAL_ROLLOUT_ENABLED', value: '1') # deprecated
|
|
|
|
variables.append(key: 'INCREMENTAL_ROLLOUT_MODE', value: 'manual')
|
|
|
|
elsif timed_incremental?
|
|
|
|
variables.append(key: 'INCREMENTAL_ROLLOUT_MODE', value: 'timed')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-08-24 07:01:33 -04:00
|
|
|
end
|