debian-mirror-gitlab/app/models/concerns/has_status.rb

141 lines
4.9 KiB
Ruby
Raw Normal View History

2018-11-20 20:47:30 +05:30
# frozen_string_literal: true
2016-09-29 09:46:39 +05:30
module HasStatus
2016-06-02 11:05:42 +05:30
extend ActiveSupport::Concern
2017-08-17 22:00:37 +05:30
DEFAULT_STATUS = 'created'.freeze
2018-12-05 23:21:45 +05:30
BLOCKED_STATUS = %w[manual scheduled].freeze
2019-07-07 11:18:12 +05:30
AVAILABLE_STATUSES = %w[created preparing pending running success failed canceled skipped manual scheduled].freeze
2018-12-05 23:21:45 +05:30
STARTED_STATUSES = %w[running success failed skipped manual scheduled].freeze
2019-07-07 11:18:12 +05:30
ACTIVE_STATUSES = %w[preparing pending running].freeze
2017-08-17 22:00:37 +05:30
COMPLETED_STATUSES = %w[success failed canceled skipped].freeze
2019-07-07 11:18:12 +05:30
ORDERED_STATUSES = %w[failed preparing pending running manual scheduled canceled success skipped created].freeze
2018-03-17 18:26:18 +05:30
STATUSES_ENUM = { created: 0, pending: 1, running: 2, success: 3,
2018-12-05 23:21:45 +05:30
failed: 4, canceled: 5, skipped: 6, manual: 7,
2019-07-07 11:18:12 +05:30
scheduled: 8, preparing: 9 }.freeze
2016-06-02 11:05:42 +05:30
2018-11-08 19:23:39 +05:30
UnknownStatusError = Class.new(StandardError)
2016-06-02 11:05:42 +05:30
class_methods do
def status_sql
2017-09-10 17:25:29 +05:30
scope_relevant = respond_to?(:exclude_ignored) ? exclude_ignored : all
scope_warnings = respond_to?(:failed_but_allowed) ? failed_but_allowed : none
builds = scope_relevant.select('count(*)').to_sql
created = scope_relevant.created.select('count(*)').to_sql
success = scope_relevant.success.select('count(*)').to_sql
manual = scope_relevant.manual.select('count(*)').to_sql
2018-12-05 23:21:45 +05:30
scheduled = scope_relevant.scheduled.select('count(*)').to_sql
2019-07-07 11:18:12 +05:30
preparing = scope_relevant.preparing.select('count(*)').to_sql
2017-09-10 17:25:29 +05:30
pending = scope_relevant.pending.select('count(*)').to_sql
running = scope_relevant.running.select('count(*)').to_sql
skipped = scope_relevant.skipped.select('count(*)').to_sql
canceled = scope_relevant.canceled.select('count(*)').to_sql
warnings = scope_warnings.select('count(*) > 0').to_sql.presence || 'false'
2016-06-02 11:05:42 +05:30
2019-09-30 21:07:59 +05:30
Arel.sql(
"(CASE
WHEN (#{builds})=(#{skipped}) AND (#{warnings}) THEN 'success'
WHEN (#{builds})=(#{skipped}) THEN 'skipped'
WHEN (#{builds})=(#{success}) THEN 'success'
WHEN (#{builds})=(#{created}) THEN 'created'
WHEN (#{builds})=(#{preparing}) THEN 'preparing'
WHEN (#{builds})=(#{success})+(#{skipped}) THEN 'success'
WHEN (#{builds})=(#{success})+(#{skipped})+(#{canceled}) THEN 'canceled'
WHEN (#{builds})=(#{created})+(#{skipped})+(#{pending}) THEN 'pending'
WHEN (#{running})+(#{pending})>0 THEN 'running'
WHEN (#{manual})>0 THEN 'manual'
WHEN (#{scheduled})>0 THEN 'scheduled'
WHEN (#{preparing})>0 THEN 'preparing'
WHEN (#{created})>0 THEN 'running'
ELSE 'failed'
END)"
)
2016-06-02 11:05:42 +05:30
end
def status
2016-11-03 12:29:30 +05:30
all.pluck(status_sql).first
2016-06-02 11:05:42 +05:30
end
def started_at
all.minimum(:started_at)
end
def finished_at
all.maximum(:finished_at)
end
2016-11-03 12:29:30 +05:30
def all_state_names
state_machines.values.flat_map(&:states).flat_map { |s| s.map(&:name) }
end
2019-07-31 22:56:46 +05:30
def completed_statuses
COMPLETED_STATUSES.map(&:to_sym)
end
2016-06-02 11:05:42 +05:30
end
included do
validates :status, inclusion: { in: AVAILABLE_STATUSES }
2016-09-13 17:45:13 +05:30
state_machine :status, initial: :created do
state :created, value: 'created'
2019-07-07 11:18:12 +05:30
state :preparing, value: 'preparing'
2016-06-02 11:05:42 +05:30
state :pending, value: 'pending'
state :running, value: 'running'
state :failed, value: 'failed'
state :success, value: 'success'
state :canceled, value: 'canceled'
state :skipped, value: 'skipped'
2017-08-17 22:00:37 +05:30
state :manual, value: 'manual'
2018-12-05 23:21:45 +05:30
state :scheduled, value: 'scheduled'
2016-06-02 11:05:42 +05:30
end
2019-09-30 21:07:59 +05:30
scope :created, -> { with_status(:created) }
scope :preparing, -> { with_status(:preparing) }
scope :relevant, -> { without_status(:created) }
scope :running, -> { with_status(:running) }
scope :pending, -> { with_status(:pending) }
scope :success, -> { with_status(:success) }
scope :failed, -> { with_status(:failed) }
scope :canceled, -> { with_status(:canceled) }
scope :skipped, -> { with_status(:skipped) }
scope :manual, -> { with_status(:manual) }
scope :scheduled, -> { with_status(:scheduled) }
scope :alive, -> { with_status(:created, :preparing, :pending, :running) }
scope :created_or_pending, -> { with_status(:created, :pending) }
scope :running_or_pending, -> { with_status(:running, :pending) }
scope :finished, -> { with_status(:success, :failed, :canceled) }
scope :failed_or_canceled, -> { with_status(:failed, :canceled) }
2017-08-17 22:00:37 +05:30
scope :cancelable, -> do
2019-07-07 11:18:12 +05:30
where(status: [:running, :preparing, :pending, :created, :scheduled])
2017-08-17 22:00:37 +05:30
end
2016-06-02 11:05:42 +05:30
end
def started?
2016-09-13 17:45:13 +05:30
STARTED_STATUSES.include?(status) && started_at
2016-06-02 11:05:42 +05:30
end
def active?
2016-09-13 17:45:13 +05:30
ACTIVE_STATUSES.include?(status)
2016-06-02 11:05:42 +05:30
end
def complete?
2016-09-13 17:45:13 +05:30
COMPLETED_STATUSES.include?(status)
end
2017-08-17 22:00:37 +05:30
def blocked?
2018-12-05 23:21:45 +05:30
BLOCKED_STATUS.include?(status)
2017-08-17 22:00:37 +05:30
end
2016-09-13 17:45:13 +05:30
private
def calculate_duration
if started_at && finished_at
finished_at - started_at
elsif started_at
Time.now - started_at
end
2016-06-02 11:05:42 +05:30
end
end