gitlab-org--gitlab-foss/app/helpers/ci_status_helper.rb

109 lines
2.6 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-04-21 20:17:50 +00:00
##
# DEPRECATED
#
# These helpers are deprecated in favor of detailed CI/CD statuses.
#
# See 'detailed_status?` method and `Gitlab::Ci::Status` module.
#
module CiStatusHelper
def ci_label_for_status(status)
if detailed_status?(status)
return status.label
end
2017-06-07 20:13:44 +00:00
label = case status
when 'success'
'passed'
when 'success_with_warnings'
'passed with warnings'
when 'manual'
'waiting for manual action'
2018-10-01 10:00:34 +00:00
when 'scheduled'
'waiting for delayed job'
2017-06-07 20:13:44 +00:00
else
status
end
translation = "CiStatusLabel|#{label}"
s_(translation)
end
def ci_text_for_status(status)
if detailed_status?(status)
return status.text
end
case status
when 'success'
2017-06-07 20:13:44 +00:00
s_('CiStatusText|passed')
when 'success_with_warnings'
2017-06-07 20:13:44 +00:00
s_('CiStatusText|passed')
when 'manual'
2017-06-07 20:13:44 +00:00
s_('CiStatusText|blocked')
2018-10-01 10:00:34 +00:00
when 'scheduled'
s_('CiStatusText|delayed')
else
2017-06-07 20:13:44 +00:00
# All states are already being translated inside the detailed statuses:
# :running => Gitlab::Ci::Status::Running
# :skipped => Gitlab::Ci::Status::Skipped
# :failed => Gitlab::Ci::Status::Failed
# :success => Gitlab::Ci::Status::Success
# :canceled => Gitlab::Ci::Status::Canceled
# The following states are customized above:
# :manual => Gitlab::Ci::Status::Manual
status_translation = "CiStatusText|#{status}"
s_(status_translation)
end
end
def ci_status_for_statuseable(subject)
status = subject.try(:status) || 'not found'
status.humanize
end
def ci_icon_for_status(status, size: 16)
if detailed_status?(status)
2017-09-28 17:05:01 +00:00
return sprite_icon(status.icon)
end
icon_name =
case status
when 'success'
2017-09-28 17:05:01 +00:00
'status_success'
when 'success_with_warnings'
2017-09-28 17:05:01 +00:00
'status_warning'
when 'failed'
2017-09-28 17:05:01 +00:00
'status_failed'
when 'pending'
2017-09-28 17:05:01 +00:00
'status_pending'
when 'running'
2017-09-28 17:05:01 +00:00
'status_running'
when 'play'
2017-09-28 17:05:01 +00:00
'play'
when 'created'
2017-09-28 17:05:01 +00:00
'status_created'
when 'skipped'
2017-09-28 17:05:01 +00:00
'status_skipped'
when 'manual'
2017-09-28 17:05:01 +00:00
'status_manual'
2018-10-01 10:00:34 +00:00
when 'scheduled'
'status_scheduled'
else
2017-09-28 17:05:01 +00:00
'status_canceled'
end
sprite_icon(icon_name, size: size)
end
2017-03-16 09:53:48 +00:00
def pipeline_status_cache_key(pipeline_status)
"pipeline-status/#{pipeline_status.sha}-#{pipeline_status.status}"
end
def detailed_status?(status)
status.respond_to?(:text) &&
status.respond_to?(:label) &&
status.respond_to?(:icon)
end
end