HasStateMachine uses ruby classes to make creating a finite state machine for your ActiveRecord models a breeze.
Add this line to your application's Gemfile:
gem 'has_state_machine'
And then execute:
$ bundle
Or install it yourself as:
$ gem install has_state_machine
You must first use the has_state_machine
macro to define your state machine at
a high level. This includes defining the possible states for your object as well
as some optional configuration should you want to change the default behavior of
the state machine (more on this later).
# By default, it is assumed that the "state" of the object is
# stored in a string column named "status".
class Post < ApplicationRecord
has_state_machine states: %i[draft published archived]
end
Now you must define the classes for the states in your state machine. By default,
HasStateMachine
assumes that these will be under the Workflow
namespace following
the pattern of Workflow::#{ObjectClass}::#{State}
. The state classes must inherit
from HasStateMachine::State
.
module Workflow
class Post::Draft < HasStateMachine::State
# Define the possible transitions from the "draft" state
state_options transitions_to: %i[published archived]
end
end
module Workflow
class Post::Published < HasStateMachine::State
state_options transitions_to: %i[archived]
# Custom validations can be added to the state to ensure a transition is "valid"
validate :title_exists?
def title_exists?
return if object.title.present?
# Errors get added to the ActiveRecord object
errors.add(:title, "can't be blank")
end
end
end
module Workflow
class Post::Archived < HasStateMachine::State
# There are callbacks for running logic before and after
# a transition occurs.
before_transition do
Rails.logger.info "== Post is being archived ==\n"
end
after_transition do
Rails.logger.info "== Post has been archived ==\n"
# You can access the previous state of the object in
# after_transition callbacks as well.
Rails.logger.info "== Transitioned from #{previous_state} ==\n"
end
end
end
Some examples:
post = Post.create(status: "draft")
post.status.transition_to(:published) # => false
post.status # => "draft"
post.title = "Foobar"
post.status.transition_to(:published) # => true
post.status # => "published"
post.status.transition_to(:archived)
# == Post is being archived ==
# == Post has been archived ==
# == Transitioned from published ==
# => true
If you'd like to check that an object can be transitioned into a new state, use the can_transition?
method. This checks to see if the provided argument is in the transitions_to
array defined on the object's current state. (This does not run any validations that may be defined on the new state)
Example:
post = Post.create(status: "draft")
post.status.can_transition?(:published) # => true
post.status.can_transition?(:other_state) # => false
You can define custom validations on a given state to determine whether an object in that state or a transition to that state is valid.
By default, validations defined on the state will be run as part of the object validations if the object is in that state.
post = Post.create(status: "published", title: "Title")
post.valid?
# => true
post.title = nil
post.valid?
# => false
If you wish to change this behavior and not have the state validations run on the object, you can specify that with the state_validations_on_object
option when defining your state machine.
class Post < ApplicationRecord
has_state_machine states: %i[draft published, archived], state_validations_on_object: false
end
post = Post.create(status: "published", title: "Title")
post.valid?
# => true
post.title = nil
post.valid?
# => true
By default, when attempting to transition an object to another state, it checks:
- Validations defined on the object
- That the new state is one of the allowed transitions from the current state
- Any validations defined on the new state
If any are found to be invalid, the transition will fail. Any errors from validations on the new state will be added to the object.
post = Post.create(status: "draft")
post.title = nil
post.status.transition_to(:published)
# => false
post.errors.full_messages
# => ["Title can't be blank"]
If you wish to bypass this behavior and skip validations during a transition, you can do that:
post = Post.create(status: "draft")
post.title = nil
post.status.transition_to(:published, skip_validations: true)
# => true
There may be a situation where you want to manually rollback a state change in one of the provided transition callbacks. To do this, add the transactional: true
option to the state_options
declaration. This results in the transition being wrapped in a transaction. You can then use the rollback_transition
method in your callback when you want to trigger a rollback of the transaction. This will allow you to prevent the transition from persisting if something further down the line fails.
module Workflow
class Post::Archived < HasStateMachine::State
state_options transactional: true
after_transition do
rollback_transition unless notified_watchers?
end
private
def notified_watchers?
#...
end
end
end
Sometimes you may may want to pass additional arguments to a state transition for additional context in your transition callbacks. To do this, add the transients
option to the state_options
declaration. This allows you to define any additional attributes you want to be able to pass along during a state transition to that state.
module Workflow
class Post::Archived < HasStateMachine::State
state_options transients: %i[user]
after_transition do
puts "== Post archived by #{user.name} =="
end
end
end
current_user = User.create(name: "John Doe")
post = Post.create(status: "published")
post.status.transition_to(:archived, user: current_user)
# == Post archived by John Doe ==
# => true
Anyone is encouraged to help improve this project. Here are a few ways you can help:
- Report bugs
- Fix bugs and submit pull requests
- Write, clarify, or fix documentation
- Suggest or add new features
To get started with development:
git clone https://github.com/encampment/has_state_machine.git
cd has_state_machine
bundle install
bundle exec rake test
The gem is available as open source under the terms of the MIT License.