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

36 lines
571 B
Ruby
Raw Normal View History

2019-09-30 21:07:59 +05:30
# frozen_string_literal: true
module Stepable
extend ActiveSupport::Concern
def steps
self.class._all_steps
end
def execute_steps
initial_result = {}
steps.inject(initial_result) do |previous_result, callback|
2019-12-21 20:55:43 +05:30
result = method(callback).call(previous_result)
2019-09-30 21:07:59 +05:30
2019-12-21 20:55:43 +05:30
if result[:status] != :success
result[:last_step] = callback
2019-09-30 21:07:59 +05:30
break result
end
2019-12-21 20:55:43 +05:30
result
2019-09-30 21:07:59 +05:30
end
end
class_methods do
def _all_steps
@_all_steps ||= []
end
def steps(*methods)
_all_steps.concat methods
end
end
end