Preserve stage values and use StaticModel

This commit is contained in:
Kamil Trzcinski 2016-12-05 14:22:41 +01:00
parent d865aedafc
commit 2f972ad47b
1 changed files with 11 additions and 5 deletions

View File

@ -1,23 +1,29 @@
module Ci
class Stage < ActiveRecord::Base
include ActiveModel::Model
# Currently this is artificial object, constructed dynamically
# We should migrate this object to actual database record in the future
class Stage
include StaticModel
attr_reader :pipeline, :name
def initialize(pipeline, name: name, status: status = nil)
def initialize(pipeline, name: name, status: nil)
@pipeline, @name, @status = pipeline, name, status
end
def to_param
name
end
def status
@status ||= statuses.latest.status
end
def statuses
pipeline.statuses.where(stage: stage)
@statuses ||= pipeline.statuses.where(stage: stage)
end
def builds
pipeline.builds.where(stage: stage)
@builds ||= pipeline.builds.where(stage: stage)
end
end
end