gitlab-org--gitlab-foss/lib/gitlab/ci/status/core.rb

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

90 lines
1.6 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
module Gitlab
module Ci
module Status
# Base abstract class for core status
#
class Core
include Gitlab::Routing
include Gitlab::Allowable
attr_reader :subject, :user
delegate :cache_key, to: :subject
def initialize(subject, user)
@subject = subject
@user = user
end
def id
"#{group}-#{subject.id}"
end
def icon
raise NotImplementedError
end
def favicon
raise NotImplementedError
end
2018-03-24 10:46:04 +00:00
def illustration
raise NotImplementedError
end
def label
raise NotImplementedError
end
def group
self.class.name.demodulize.underscore
end
def has_details?
2016-12-08 08:51:36 +00:00
false
end
def details_path
raise NotImplementedError
end
def has_action?
2016-12-08 08:51:36 +00:00
false
end
def action_icon
raise NotImplementedError
end
def action_path
raise NotImplementedError
end
2016-12-08 08:51:36 +00:00
def action_method
raise NotImplementedError
end
2016-12-08 17:18:30 +00:00
def action_title
raise NotImplementedError
end
def action_button_title
raise NotImplementedError
end
# Hint that appears on all the pipeline graph tooltips and builds on the right sidebar in Job detail view
def status_tooltip
label
end
# Hint that appears on the build badges
def badge_tooltip
subject.status
end
end
end
end
end