2018-12-05 23:21:45 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
##
|
|
|
|
# DEPRECATED
|
|
|
|
#
|
|
|
|
# These helpers are deprecated in favor of detailed CI/CD statuses.
|
|
|
|
#
|
|
|
|
# See 'detailed_status?` method and `Gitlab::Ci::Status` module.
|
|
|
|
#
|
2015-10-24 18:46:33 +05:30
|
|
|
module CiStatusHelper
|
2017-08-17 22:00:37 +05:30
|
|
|
def ci_label_for_status(status)
|
|
|
|
if detailed_status?(status)
|
|
|
|
return status.label
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
label = case status
|
|
|
|
when 'success'
|
|
|
|
'passed'
|
2019-07-31 22:56:46 +05:30
|
|
|
when 'success-with-warnings'
|
2017-09-10 17:25:29 +05:30
|
|
|
'passed with warnings'
|
|
|
|
when 'manual'
|
|
|
|
'waiting for manual action'
|
2018-12-05 23:21:45 +05:30
|
|
|
when 'scheduled'
|
|
|
|
'waiting for delayed job'
|
2017-09-10 17:25:29 +05:30
|
|
|
else
|
|
|
|
status
|
|
|
|
end
|
|
|
|
translation = "CiStatusLabel|#{label}"
|
|
|
|
s_(translation)
|
2015-12-23 02:04:40 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def ci_text_for_status(status)
|
|
|
|
if detailed_status?(status)
|
|
|
|
return status.text
|
|
|
|
end
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
case status
|
|
|
|
when 'success'
|
2017-09-10 17:25:29 +05:30
|
|
|
s_('CiStatusText|passed')
|
2019-07-31 22:56:46 +05:30
|
|
|
when 'success-with-warnings'
|
2017-09-10 17:25:29 +05:30
|
|
|
s_('CiStatusText|passed')
|
2017-08-17 22:00:37 +05:30
|
|
|
when 'manual'
|
2017-09-10 17:25:29 +05:30
|
|
|
s_('CiStatusText|blocked')
|
2018-12-05 23:21:45 +05:30
|
|
|
when 'scheduled'
|
2018-12-13 13:39:08 +05:30
|
|
|
s_('CiStatusText|delayed')
|
2015-12-23 02:04:40 +05:30
|
|
|
else
|
2017-09-10 17:25:29 +05:30
|
|
|
# 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)
|
2015-10-24 18:46:33 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-29 09:46:39 +05:30
|
|
|
def ci_status_for_statuseable(subject)
|
|
|
|
status = subject.try(:status) || 'not found'
|
|
|
|
status.humanize
|
|
|
|
end
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
# rubocop:disable Metrics/CyclomaticComplexity
|
2018-11-18 11:00:15 +05:30
|
|
|
def ci_icon_for_status(status, size: 16)
|
2017-08-17 22:00:37 +05:30
|
|
|
if detailed_status?(status)
|
2019-12-21 20:55:43 +05:30
|
|
|
return sprite_icon(status.icon, size: size)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2015-10-24 18:46:33 +05:30
|
|
|
icon_name =
|
|
|
|
case status
|
|
|
|
when 'success'
|
2018-03-17 18:26:18 +05:30
|
|
|
'status_success'
|
2019-07-31 22:56:46 +05:30
|
|
|
when 'success-with-warnings'
|
2018-03-17 18:26:18 +05:30
|
|
|
'status_warning'
|
2015-10-24 18:46:33 +05:30
|
|
|
when 'failed'
|
2018-03-17 18:26:18 +05:30
|
|
|
'status_failed'
|
2016-08-24 12:49:21 +05:30
|
|
|
when 'pending'
|
2018-03-17 18:26:18 +05:30
|
|
|
'status_pending'
|
2020-03-13 15:44:24 +05:30
|
|
|
when 'waiting_for_resource'
|
|
|
|
'status_pending'
|
2019-12-21 20:55:43 +05:30
|
|
|
when 'preparing'
|
|
|
|
'status_preparing'
|
2016-08-24 12:49:21 +05:30
|
|
|
when 'running'
|
2018-03-17 18:26:18 +05:30
|
|
|
'status_running'
|
2016-09-13 17:45:13 +05:30
|
|
|
when 'play'
|
2018-03-17 18:26:18 +05:30
|
|
|
'play'
|
2016-09-13 17:45:13 +05:30
|
|
|
when 'created'
|
2018-03-17 18:26:18 +05:30
|
|
|
'status_created'
|
2017-08-17 22:00:37 +05:30
|
|
|
when 'skipped'
|
2018-03-17 18:26:18 +05:30
|
|
|
'status_skipped'
|
2017-08-17 22:00:37 +05:30
|
|
|
when 'manual'
|
2018-03-17 18:26:18 +05:30
|
|
|
'status_manual'
|
2018-12-05 23:21:45 +05:30
|
|
|
when 'scheduled'
|
|
|
|
'status_scheduled'
|
2015-10-24 18:46:33 +05:30
|
|
|
else
|
2018-03-17 18:26:18 +05:30
|
|
|
'status_canceled'
|
2015-10-24 18:46:33 +05:30
|
|
|
end
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
sprite_icon(icon_name, size: size)
|
2015-10-24 18:46:33 +05:30
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
# rubocop:enable Metrics/CyclomaticComplexity
|
2015-11-26 14:37:03 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
def ci_icon_class_for_status(status)
|
|
|
|
group = detailed_status?(status) ? status.group : status.dasherize
|
|
|
|
|
|
|
|
"ci-status-icon-#{group}"
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def pipeline_status_cache_key(pipeline_status)
|
|
|
|
"pipeline-status/#{pipeline_status.sha}-#{pipeline_status.status}"
|
|
|
|
end
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
def render_commit_status(commit, status, ref: nil, tooltip_placement: 'left')
|
2016-06-02 11:05:42 +05:30
|
|
|
project = commit.project
|
2018-10-15 14:42:47 +05:30
|
|
|
path = pipelines_project_commit_path(project, commit, ref: ref)
|
2016-11-24 13:41:30 +05:30
|
|
|
|
|
|
|
render_status_with_link(
|
2019-12-21 20:55:43 +05:30
|
|
|
status,
|
2016-11-24 13:41:30 +05:30
|
|
|
path,
|
2018-11-18 11:00:15 +05:30
|
|
|
tooltip_placement: tooltip_placement,
|
|
|
|
icon_size: 24)
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
def render_status_with_link(status, path = nil, type: _('pipeline'), tooltip_placement: 'left', cssclass: '', container: 'body', icon_size: 16)
|
2019-12-21 20:55:43 +05:30
|
|
|
klass = "ci-status-link #{ci_icon_class_for_status(status)} d-inline-flex #{cssclass}"
|
2016-09-13 17:45:13 +05:30
|
|
|
title = "#{type.titleize}: #{ci_label_for_status(status)}"
|
2016-09-29 09:46:39 +05:30
|
|
|
data = { toggle: 'tooltip', placement: tooltip_placement, container: container }
|
2016-06-02 11:05:42 +05:30
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
if path
|
2018-11-18 11:00:15 +05:30
|
|
|
link_to ci_icon_for_status(status, size: icon_size), path,
|
2016-09-13 17:45:13 +05:30
|
|
|
class: klass, title: title, data: data
|
|
|
|
else
|
2018-11-18 11:00:15 +05:30
|
|
|
content_tag :span, ci_icon_for_status(status, size: icon_size),
|
2016-09-13 17:45:13 +05:30
|
|
|
class: klass, title: title, data: data
|
|
|
|
end
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
def detailed_status?(status)
|
|
|
|
status.respond_to?(:text) &&
|
2019-12-21 20:55:43 +05:30
|
|
|
status.respond_to?(:group) &&
|
2017-08-17 22:00:37 +05:30
|
|
|
status.respond_to?(:label) &&
|
|
|
|
status.respond_to?(:icon)
|
|
|
|
end
|
2015-10-24 18:46:33 +05:30
|
|
|
end
|