gitlab-org--gitlab-foss/app/models/environment.rb

35 lines
886 B
Ruby
Raw Normal View History

2016-06-10 21:36:54 +00:00
class Environment < ActiveRecord::Base
belongs_to :project, required: true, validate: true
2016-06-10 21:36:54 +00:00
has_many :deployments
2016-07-26 12:19:37 +00:00
before_validation :nullify_external_url
2016-06-14 11:04:21 +00:00
validates :name,
presence: true,
2016-06-14 16:34:48 +00:00
uniqueness: { scope: :project_id },
2016-06-14 11:04:21 +00:00
length: { within: 0..255 },
format: { with: Gitlab::Regex.environment_name_regex,
message: Gitlab::Regex.environment_name_regex_message }
2016-06-10 21:36:54 +00:00
validates :external_url,
uniqueness: { scope: :project_id },
2016-07-26 12:19:37 +00:00
length: { maximum: 255 },
allow_nil: true,
addressable_url: true
2016-06-10 21:36:54 +00:00
def last_deployment
deployments.last
end
2016-07-26 12:19:37 +00:00
def nullify_external_url
self.external_url = nil if self.external_url.blank?
end
2016-08-02 12:01:22 +00:00
def includes_commit?(commit)
2016-08-03 11:37:39 +00:00
return false unless last_deployment
2016-08-02 12:01:22 +00:00
last_deployment.includes_commit?(commit)
2016-08-02 12:01:22 +00:00
end
2016-06-10 21:36:54 +00:00
end