debian-mirror-gitlab/app/models/environment.rb

51 lines
1.1 KiB
Ruby
Raw Normal View History

class Environment < ActiveRecord::Base
belongs_to :project, required: true, validate: true
has_many :deployments
2016-09-13 17:45:13 +05:30
before_validation :nullify_external_url
2016-09-29 09:46:39 +05:30
before_save :set_environment_type
2016-09-13 17:45:13 +05:30
validates :name,
presence: true,
uniqueness: { scope: :project_id },
length: { within: 0..255 },
format: { with: Gitlab::Regex.environment_name_regex,
message: Gitlab::Regex.environment_name_regex_message }
2016-09-13 17:45:13 +05:30
validates :external_url,
uniqueness: { scope: :project_id },
length: { maximum: 255 },
allow_nil: true,
addressable_url: true
def last_deployment
deployments.last
end
2016-09-13 17:45:13 +05:30
def nullify_external_url
self.external_url = nil if self.external_url.blank?
end
2016-09-29 09:46:39 +05:30
def set_environment_type
names = name.split('/')
self.environment_type =
if names.many?
names.first
else
nil
end
end
2016-09-13 17:45:13 +05:30
def includes_commit?(commit)
return false unless last_deployment
last_deployment.includes_commit?(commit)
end
2016-09-29 09:46:39 +05:30
def update_merge_request_metrics?
self.name == "production"
end
end