mirror of
https://github.com/aasm/aasm
synced 2023-03-27 23:22:41 -04:00
91794f70fe
add aasm_read_state to complete persistence
62 lines
1.5 KiB
Ruby
62 lines
1.5 KiB
Ruby
require File.join(File.dirname(__FILE__), 'event')
|
|
|
|
module AASM
|
|
class InvalidTransition < Exception
|
|
end
|
|
|
|
def self.included(base) #:nodoc:
|
|
base.extend AASM::ClassMethods
|
|
end
|
|
|
|
module ClassMethods
|
|
def aasm_initial_state
|
|
@aasm_initial_state
|
|
end
|
|
|
|
def aasm_initial_state=(state)
|
|
@aasm_initial_state = state
|
|
end
|
|
alias :initial_state :aasm_initial_state=
|
|
|
|
def state(name, options={})
|
|
self.aasm_initial_state = name unless self.aasm_initial_state
|
|
|
|
define_method("#{name.to_s}?") do
|
|
aasm_current_state == name
|
|
end
|
|
end
|
|
|
|
def event(name, &block)
|
|
aasm_events[name] = AASM::SupportingClasses::Event.new(name, &block)
|
|
|
|
define_method("#{name.to_s}!") do
|
|
new_state = self.class.aasm_events[name].fire(self)
|
|
self.aasm_current_state = new_state unless new_state.nil?
|
|
nil
|
|
end
|
|
end
|
|
|
|
def aasm_events
|
|
@aasm_events ||= {}
|
|
end
|
|
end
|
|
|
|
# Instance methods
|
|
def aasm_current_state
|
|
return @aasm_current_state if @aasm_current_state
|
|
|
|
if self.respond_to?(:aasm_read_state) || self.private_methods.include?('aasm_read_state')
|
|
@aasm_current_state = aasm_read_state
|
|
end
|
|
return @aasm_read_state if @aasm_current_state
|
|
self.class.aasm_initial_state
|
|
end
|
|
|
|
private
|
|
def aasm_current_state=(state)
|
|
@aasm_current_state = state
|
|
if self.respond_to?(:aasm_write_state) || self.private_methods.include?('aasm_write_state')
|
|
aasm_write_state
|
|
end
|
|
end
|
|
end
|