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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
919 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2015-10-06 10:01:16 +00:00
class GenericCommitStatus < CommitStatus
EXTERNAL_STAGE_IDX = 1_000_000
2015-10-06 10:01:16 +00:00
before_validation :set_default_values
validates :target_url, addressable_url: true,
length: { maximum: 255 },
allow_nil: true
validate :name_uniqueness_across_types, unless: :importing?
2015-10-06 10:01:16 +00:00
# GitHub compatible API
alias_attribute :context, :name
def set_default_values
self.context ||= 'default'
self.stage ||= 'external'
self.stage_idx ||= EXTERNAL_STAGE_IDX
2015-10-06 10:01:16 +00:00
end
def tags
[:external]
end
def detailed_status(current_user)
Gitlab::Ci::Status::External::Factory
.new(self, current_user)
.fabricate!
end
private
def name_uniqueness_across_types
return if !pipeline || name.blank?
if pipeline.statuses.by_name(name).where.not(type: type).exists?
errors.add(:name, :taken)
end
end
2015-10-06 10:01:16 +00:00
end