2016-09-29 09:46:39 +05:30
|
|
|
module HasStatus
|
2016-06-02 11:05:42 +05:30
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
AVAILABLE_STATUSES = %w[created pending running success failed canceled skipped]
|
|
|
|
STARTED_STATUSES = %w[running success failed skipped]
|
|
|
|
ACTIVE_STATUSES = %w[pending running]
|
|
|
|
COMPLETED_STATUSES = %w[success failed canceled]
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
class_methods do
|
|
|
|
def status_sql
|
2016-09-29 09:46:39 +05:30
|
|
|
scope = all
|
2016-09-13 17:45:13 +05:30
|
|
|
builds = scope.select('count(*)').to_sql
|
2016-09-29 09:46:39 +05:30
|
|
|
created = scope.created.select('count(*)').to_sql
|
2016-09-13 17:45:13 +05:30
|
|
|
success = scope.success.select('count(*)').to_sql
|
|
|
|
ignored = scope.ignored.select('count(*)').to_sql if scope.respond_to?(:ignored)
|
2016-06-02 11:05:42 +05:30
|
|
|
ignored ||= '0'
|
2016-09-13 17:45:13 +05:30
|
|
|
pending = scope.pending.select('count(*)').to_sql
|
|
|
|
running = scope.running.select('count(*)').to_sql
|
|
|
|
canceled = scope.canceled.select('count(*)').to_sql
|
|
|
|
skipped = scope.skipped.select('count(*)').to_sql
|
2016-06-02 11:05:42 +05:30
|
|
|
|
|
|
|
deduce_status = "(CASE
|
2016-09-29 09:46:39 +05:30
|
|
|
WHEN (#{builds})=(#{created}) THEN 'created'
|
2016-06-02 11:05:42 +05:30
|
|
|
WHEN (#{builds})=(#{skipped}) THEN 'skipped'
|
2016-08-24 12:49:21 +05:30
|
|
|
WHEN (#{builds})=(#{success})+(#{ignored})+(#{skipped}) THEN 'success'
|
2016-09-29 09:46:39 +05:30
|
|
|
WHEN (#{builds})=(#{created})+(#{pending})+(#{skipped}) THEN 'pending'
|
2016-08-24 12:49:21 +05:30
|
|
|
WHEN (#{builds})=(#{canceled})+(#{success})+(#{ignored})+(#{skipped}) THEN 'canceled'
|
2016-09-29 09:46:39 +05:30
|
|
|
WHEN (#{running})+(#{pending})+(#{created})>0 THEN 'running'
|
2016-06-02 11:05:42 +05:30
|
|
|
ELSE 'failed'
|
|
|
|
END)"
|
|
|
|
|
|
|
|
deduce_status
|
|
|
|
end
|
|
|
|
|
|
|
|
def status
|
|
|
|
all.pluck(self.status_sql).first
|
|
|
|
end
|
|
|
|
|
|
|
|
def started_at
|
|
|
|
all.minimum(:started_at)
|
|
|
|
end
|
|
|
|
|
|
|
|
def finished_at
|
|
|
|
all.maximum(:finished_at)
|
|
|
|
end
|
|
|
|
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'
|
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'
|
|
|
|
end
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
scope :created, -> { where(status: 'created') }
|
|
|
|
scope :relevant, -> { where.not(status: 'created') }
|
2016-06-02 11:05:42 +05:30
|
|
|
scope :running, -> { where(status: 'running') }
|
|
|
|
scope :pending, -> { where(status: 'pending') }
|
|
|
|
scope :success, -> { where(status: 'success') }
|
|
|
|
scope :failed, -> { where(status: 'failed') }
|
|
|
|
scope :canceled, -> { where(status: 'canceled') }
|
|
|
|
scope :skipped, -> { where(status: 'skipped') }
|
|
|
|
scope :running_or_pending, -> { where(status: [:running, :pending]) }
|
|
|
|
scope :finished, -> { where(status: [:success, :failed, :canceled]) }
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|