2015-10-06 06:01:16 -04:00
|
|
|
class GenericCommitStatus < CommitStatus
|
|
|
|
before_validation :set_default_values
|
|
|
|
|
2017-01-18 06:02:44 -05:00
|
|
|
validates :target_url, addressable_url: true,
|
|
|
|
length: { maximum: 255 },
|
|
|
|
allow_nil: true
|
|
|
|
|
2015-10-06 06:01:16 -04:00
|
|
|
# GitHub compatible API
|
|
|
|
alias_attribute :context, :name
|
|
|
|
|
|
|
|
def set_default_values
|
|
|
|
self.context ||= 'default'
|
|
|
|
self.stage ||= 'external'
|
2017-05-05 14:16:54 -04:00
|
|
|
self.stage_idx ||= 1000000
|
2015-10-06 06:01:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def tags
|
|
|
|
[:external]
|
|
|
|
end
|
2017-01-17 08:30:33 -05:00
|
|
|
|
|
|
|
def detailed_status(current_user)
|
|
|
|
Gitlab::Ci::Status::External::Factory
|
|
|
|
.new(self, current_user)
|
|
|
|
.fabricate!
|
|
|
|
end
|
2015-10-06 06:01:16 -04:00
|
|
|
end
|