2016-06-10 17:36:54 -04:00
|
|
|
class Environment < ActiveRecord::Base
|
2016-06-15 09:09:50 -04:00
|
|
|
belongs_to :project, required: true, validate: true
|
2016-06-10 17:36:54 -04:00
|
|
|
|
|
|
|
has_many :deployments
|
|
|
|
|
2016-07-26 08:19:37 -04:00
|
|
|
before_validation :nullify_external_url
|
2016-09-13 08:14:55 -04:00
|
|
|
before_save :set_environment_type
|
2016-07-26 08:19:37 -04:00
|
|
|
|
2016-06-14 07:04:21 -04:00
|
|
|
validates :name,
|
|
|
|
presence: true,
|
2016-06-14 12:34:48 -04:00
|
|
|
uniqueness: { scope: :project_id },
|
2016-06-14 07:04:21 -04:00
|
|
|
length: { within: 0..255 },
|
|
|
|
format: { with: Gitlab::Regex.environment_name_regex,
|
|
|
|
message: Gitlab::Regex.environment_name_regex_message }
|
2016-06-10 17:36:54 -04:00
|
|
|
|
2016-07-26 03:35:47 -04:00
|
|
|
validates :external_url,
|
|
|
|
uniqueness: { scope: :project_id },
|
2016-07-26 08:19:37 -04:00
|
|
|
length: { maximum: 255 },
|
|
|
|
allow_nil: true,
|
|
|
|
addressable_url: true
|
2016-07-26 03:35:47 -04:00
|
|
|
|
2016-06-10 17:36:54 -04:00
|
|
|
def last_deployment
|
|
|
|
deployments.last
|
|
|
|
end
|
2016-07-26 08:19:37 -04:00
|
|
|
|
|
|
|
def nullify_external_url
|
|
|
|
self.external_url = nil if self.external_url.blank?
|
|
|
|
end
|
2016-08-02 08:01:22 -04:00
|
|
|
|
2016-09-13 08:14:55 -04:00
|
|
|
def set_environment_type
|
|
|
|
names = name.split('/')
|
|
|
|
|
|
|
|
self.environment_type =
|
|
|
|
if names.many?
|
|
|
|
names.first
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-09 09:11:14 -04:00
|
|
|
def includes_commit?(commit)
|
2016-08-03 07:37:39 -04:00
|
|
|
return false unless last_deployment
|
2016-08-02 08:01:22 -04:00
|
|
|
|
2016-08-09 09:11:14 -04:00
|
|
|
last_deployment.includes_commit?(commit)
|
2016-08-02 08:01:22 -04:00
|
|
|
end
|
2016-09-20 05:36:54 -04:00
|
|
|
|
|
|
|
def update_merge_request_metrics?
|
|
|
|
self.name == "production"
|
|
|
|
end
|
2016-09-30 09:45:27 -04:00
|
|
|
|
|
|
|
def ref_path
|
2016-10-03 09:39:12 -04:00
|
|
|
"refs/environments/#{Shellwords.shellescape(name)}"
|
2016-09-30 09:45:27 -04:00
|
|
|
end
|
2016-06-10 17:36:54 -04:00
|
|
|
end
|