2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
module Gitlab
|
|
|
|
module Ci
|
|
|
|
class Config
|
2017-08-17 22:00:37 +05:30
|
|
|
module Entry
|
2016-09-29 09:46:39 +05:30
|
|
|
##
|
|
|
|
# Entry that represents an environment.
|
|
|
|
#
|
2019-02-15 15:39:39 +05:30
|
|
|
class Environment < ::Gitlab::Config::Entry::Node
|
|
|
|
include ::Gitlab::Config::Entry::Validatable
|
2016-09-29 09:46:39 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
ALLOWED_KEYS = %i[name url action on_stop].freeze
|
2016-09-29 09:46:39 +05:30
|
|
|
|
|
|
|
validations do
|
|
|
|
validate do
|
|
|
|
unless hash? || string?
|
|
|
|
errors.add(:config, 'should be a hash or a string')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
validates :name, presence: true
|
|
|
|
validates :name,
|
|
|
|
type: {
|
|
|
|
with: String,
|
2017-08-17 22:00:37 +05:30
|
|
|
message: Gitlab::Regex.environment_name_regex_message
|
|
|
|
}
|
2016-09-29 09:46:39 +05:30
|
|
|
|
|
|
|
validates :name,
|
|
|
|
format: {
|
|
|
|
with: Gitlab::Regex.environment_name_regex,
|
2017-08-17 22:00:37 +05:30
|
|
|
message: Gitlab::Regex.environment_name_regex_message
|
|
|
|
}
|
2016-09-29 09:46:39 +05:30
|
|
|
|
|
|
|
with_options if: :hash? do
|
|
|
|
validates :config, allowed_keys: ALLOWED_KEYS
|
|
|
|
|
|
|
|
validates :url,
|
|
|
|
length: { maximum: 255 },
|
|
|
|
allow_nil: true
|
2016-11-03 12:29:30 +05:30
|
|
|
|
|
|
|
validates :action,
|
|
|
|
inclusion: { in: %w[start stop], message: 'should be start or stop' },
|
|
|
|
allow_nil: true
|
|
|
|
|
|
|
|
validates :on_stop, type: String, allow_nil: true
|
2016-09-29 09:46:39 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def hash?
|
|
|
|
@config.is_a?(Hash)
|
|
|
|
end
|
|
|
|
|
|
|
|
def string?
|
|
|
|
@config.is_a?(String)
|
|
|
|
end
|
|
|
|
|
|
|
|
def name
|
|
|
|
value[:name]
|
|
|
|
end
|
|
|
|
|
|
|
|
def url
|
|
|
|
value[:url]
|
|
|
|
end
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
def action
|
|
|
|
value[:action] || 'start'
|
|
|
|
end
|
|
|
|
|
|
|
|
def on_stop
|
|
|
|
value[:on_stop]
|
|
|
|
end
|
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
def value
|
|
|
|
case @config
|
2016-11-03 12:29:30 +05:30
|
|
|
when String then { name: @config, action: 'start' }
|
2016-09-29 09:46:39 +05:30
|
|
|
when Hash then @config
|
|
|
|
else {}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|