d119d3d1b2
Renamed UrlValidator to AddressableUrlValidator to avoid 'url:' naming collision with ActiveModel::Validations::UrlValidator in 'validates' statement. Make use of the options attribute of the parent class ActiveModel::EachValidator. Add more options: allow_nil, allow_blank, message. Renamed 'protocols' option to 'schemes' to match the option naming from UrlValidator.
28 lines
610 B
Ruby
28 lines
610 B
Ruby
# frozen_string_literal: true
|
|
|
|
class GenericCommitStatus < CommitStatus
|
|
before_validation :set_default_values
|
|
|
|
validates :target_url, addressable_url: true,
|
|
length: { maximum: 255 },
|
|
allow_nil: true
|
|
|
|
# GitHub compatible API
|
|
alias_attribute :context, :name
|
|
|
|
def set_default_values
|
|
self.context ||= 'default'
|
|
self.stage ||= 'external'
|
|
self.stage_idx ||= 1000000
|
|
end
|
|
|
|
def tags
|
|
[:external]
|
|
end
|
|
|
|
def detailed_status(current_user)
|
|
Gitlab::Ci::Status::External::Factory
|
|
.new(self, current_user)
|
|
.fabricate!
|
|
end
|
|
end
|