2016-08-24 22:55:32 -04:00
|
|
|
module HasStatus
|
2016-03-31 13:51:28 -04:00
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2017-02-21 18:32:18 -05:00
|
|
|
DEFAULT_STATUS = 'created'.freeze
|
2017-03-03 08:35:19 -05:00
|
|
|
BLOCKED_STATUS = 'manual'.freeze
|
|
|
|
AVAILABLE_STATUSES = %w[created pending running success failed canceled skipped manual].freeze
|
2017-03-04 04:18:25 -05:00
|
|
|
STARTED_STATUSES = %w[running success failed skipped manual].freeze
|
|
|
|
ACTIVE_STATUSES = %w[pending running].freeze
|
2017-02-21 18:32:18 -05:00
|
|
|
COMPLETED_STATUSES = %w[success failed canceled skipped].freeze
|
2017-03-07 05:48:01 -05:00
|
|
|
ORDERED_STATUSES = %w[failed pending running manual canceled success skipped created].freeze
|
2016-04-13 09:40:12 -04:00
|
|
|
|
|
|
|
class_methods do
|
2016-04-12 13:59:44 -04:00
|
|
|
def status_sql
|
2017-03-02 07:45:01 -05:00
|
|
|
scope = respond_to?(:exclude_ignored) ? exclude_ignored : all
|
|
|
|
|
2016-08-11 09:22:35 -04:00
|
|
|
builds = scope.select('count(*)').to_sql
|
2016-09-12 08:22:59 -04:00
|
|
|
created = scope.created.select('count(*)').to_sql
|
2016-08-11 09:22:35 -04:00
|
|
|
success = scope.success.select('count(*)').to_sql
|
2017-03-03 08:35:19 -05:00
|
|
|
manual = scope.manual.select('count(*)').to_sql
|
2016-08-11 09:22:35 -04:00
|
|
|
pending = scope.pending.select('count(*)').to_sql
|
|
|
|
running = scope.running.select('count(*)').to_sql
|
|
|
|
skipped = scope.skipped.select('count(*)').to_sql
|
2016-10-03 06:22:51 -04:00
|
|
|
canceled = scope.canceled.select('count(*)').to_sql
|
2016-04-12 13:59:44 -04:00
|
|
|
|
2016-10-03 06:22:51 -04:00
|
|
|
"(CASE
|
2016-12-05 08:48:37 -05:00
|
|
|
WHEN (#{builds})=(#{skipped}) THEN 'skipped'
|
2016-12-05 11:52:50 -05:00
|
|
|
WHEN (#{builds})=(#{success}) THEN 'success'
|
2016-10-03 07:35:53 -04:00
|
|
|
WHEN (#{builds})=(#{created}) THEN 'created'
|
2016-12-07 06:47:06 -05:00
|
|
|
WHEN (#{builds})=(#{success})+(#{skipped}) THEN 'success'
|
2016-10-03 06:22:51 -04:00
|
|
|
WHEN (#{builds})=(#{success})+(#{skipped})+(#{canceled}) THEN 'canceled'
|
|
|
|
WHEN (#{builds})=(#{created})+(#{skipped})+(#{pending}) THEN 'pending'
|
2017-03-03 06:51:23 -05:00
|
|
|
WHEN (#{running})+(#{pending})>0 THEN 'running'
|
2017-03-03 08:35:19 -05:00
|
|
|
WHEN (#{manual})>0 THEN 'manual'
|
2017-03-20 14:16:48 -04:00
|
|
|
WHEN (#{created})>0 THEN 'running'
|
2016-04-12 13:59:44 -04:00
|
|
|
ELSE 'failed'
|
|
|
|
END)"
|
|
|
|
end
|
|
|
|
|
2016-03-31 13:51:28 -04:00
|
|
|
def status
|
2016-10-03 07:49:53 -04:00
|
|
|
all.pluck(status_sql).first
|
2016-03-31 13:51:28 -04:00
|
|
|
end
|
|
|
|
|
2016-04-13 14:51:03 -04:00
|
|
|
def started_at
|
|
|
|
all.minimum(:started_at)
|
|
|
|
end
|
|
|
|
|
|
|
|
def finished_at
|
2016-04-16 15:46:26 -04:00
|
|
|
all.maximum(:finished_at)
|
2016-04-13 14:51:03 -04:00
|
|
|
end
|
2016-10-04 12:10:23 -04:00
|
|
|
|
|
|
|
def all_state_names
|
|
|
|
state_machines.values.flat_map(&:states).flat_map { |s| s.map(&:name) }
|
|
|
|
end
|
2016-03-31 13:51:28 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
included do
|
2016-04-13 09:40:12 -04:00
|
|
|
validates :status, inclusion: { in: AVAILABLE_STATUSES }
|
2016-03-31 13:51:28 -04:00
|
|
|
|
2016-08-11 09:22:35 -04:00
|
|
|
state_machine :status, initial: :created do
|
|
|
|
state :created, value: 'created'
|
2016-03-31 13:51:28 -04:00
|
|
|
state :pending, value: 'pending'
|
|
|
|
state :running, value: 'running'
|
|
|
|
state :failed, value: 'failed'
|
|
|
|
state :success, value: 'success'
|
|
|
|
state :canceled, value: 'canceled'
|
2016-04-11 10:55:40 -04:00
|
|
|
state :skipped, value: 'skipped'
|
2017-03-03 08:35:19 -05:00
|
|
|
state :manual, value: 'manual'
|
2016-03-31 13:51:28 -04:00
|
|
|
end
|
|
|
|
|
2016-08-11 09:22:35 -04:00
|
|
|
scope :created, -> { where(status: 'created') }
|
2017-04-07 11:06:41 -04:00
|
|
|
scope :relevant, -> { where(status: AVAILABLE_STATUSES - ['created']) }
|
2016-03-31 13:51:28 -04:00
|
|
|
scope :running, -> { where(status: 'running') }
|
|
|
|
scope :pending, -> { where(status: 'pending') }
|
|
|
|
scope :success, -> { where(status: 'success') }
|
|
|
|
scope :failed, -> { where(status: 'failed') }
|
2016-04-12 13:57:54 -04:00
|
|
|
scope :canceled, -> { where(status: 'canceled') }
|
2016-04-13 11:26:22 -04:00
|
|
|
scope :skipped, -> { where(status: 'skipped') }
|
2017-03-03 08:35:19 -05:00
|
|
|
scope :manual, -> { where(status: 'manual') }
|
2017-02-19 17:17:24 -05:00
|
|
|
scope :created_or_pending, -> { where(status: [:created, :pending]) }
|
2016-03-31 13:51:28 -04:00
|
|
|
scope :running_or_pending, -> { where(status: [:running, :pending]) }
|
|
|
|
scope :finished, -> { where(status: [:success, :failed, :canceled]) }
|
2016-11-19 08:04:11 -05:00
|
|
|
scope :failed_or_canceled, -> { where(status: [:failed, :canceled]) }
|
2016-11-16 11:57:50 -05:00
|
|
|
|
|
|
|
scope :cancelable, -> do
|
2017-03-03 08:35:19 -05:00
|
|
|
where(status: [:running, :pending, :created, :manual])
|
2016-11-16 11:57:50 -05:00
|
|
|
end
|
2016-03-31 13:51:28 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def started?
|
2016-08-11 09:22:35 -04:00
|
|
|
STARTED_STATUSES.include?(status) && started_at
|
2016-03-31 13:51:28 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def active?
|
2016-08-11 09:22:35 -04:00
|
|
|
ACTIVE_STATUSES.include?(status)
|
2016-03-31 13:51:28 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def complete?
|
2016-08-11 09:22:35 -04:00
|
|
|
COMPLETED_STATUSES.include?(status)
|
2016-03-31 13:51:28 -04:00
|
|
|
end
|
2016-08-10 10:45:30 -04:00
|
|
|
|
2017-03-05 03:24:57 -05:00
|
|
|
def blocked?
|
|
|
|
BLOCKED_STATUS == status
|
|
|
|
end
|
|
|
|
|
2016-08-10 10:45:30 -04:00
|
|
|
private
|
|
|
|
|
|
|
|
def calculate_duration
|
|
|
|
if started_at && finished_at
|
|
|
|
finished_at - started_at
|
|
|
|
elsif started_at
|
2016-08-19 04:57:25 -04:00
|
|
|
Time.now - started_at
|
2016-08-10 10:45:30 -04:00
|
|
|
end
|
|
|
|
end
|
2016-04-12 04:23:31 -04:00
|
|
|
end
|