Mutations
Compose your business logic into commands that sanitize and validate input. Write safe, reusable, and maintainable code for Ruby and Rails apps.
Installation
gem install mutations
Or add it to your Gemfile:
gem 'mutations'
Example
class UserSignup < Mutations::Command
required do
string :email, matches: EMAIL_REGEX
string :name
end
optional do
boolean :newsletter_subscribe
end
def execute
user = User.create!(inputs)
NewsletterSubscriptions.create(email: email, user_id: user.id) if newsletter_subscribe
UserMailer.async(:deliver_welcome, user.id)
user
end
end
def create
outcome = UserSignup.run(params[:user])
if outcome.success?
render json: {message: "Great success, #{outcome.result.name}!"}
else
render json: outcome.errors.symbolic, status: 422
end
end
Some things to note about the example:
- We don't need attr_accessible or strong_attributes to protect against mass assignment attacks
- We're guaranteed that within execute, the inputs will be the correct data types, even if they needed some coercion (all strings are stripped by default, and strings like "1" / "0" are converted to true/false for newsletter_subscribe)
- We don't need ActiveRecord validations
- We don't need callbacks on our models -- everything is in the execute method (helper methods are also encouraged)
- We don't use accepts_nested_attributes_for, even though multiple ActiveRecord models are created
- This code is completely re-usable in other contexts (need an API?)
- The inputs to this 'function' are documented by default -- the bare minimum to use it (name and email) are documented, as are 'extras' (newsletter_subscribe)
Why is it called 'mutations'?
Imagine you had a folder in your Rails project:
app/mutations
And inside, you had a library of business operations that you can do against your datastore:
app/mutations/users/signup.rb
app/mutations/users/login.rb
app/mutations/users/update_profile.rb
app/mutations/users/change_password.rb
...
app/mutations/articles/create.rb
app/mutations/articles/update.rb
app/mutations/articles/publish.rb
app/mutations/articles/comment.rb
...
app/mutations/ideas/upsert.rb
...
Each of these mutations takes your application from one state to the next.
That being said, you can create commands for things that don't mutate your database.
How do I call mutations?
You have two choices. Given a mutation UserSignup, you can do this:
outcome = UserSignup.run(params)
if outcome.success?
user = outcome.result
else
render outcome.errors
end
Or, you can do this:
user = UserSignup.run!(params)
What can I pass to mutations?
Mutations only accept hashes as arguments to #run and #run!
That being said, you can pass multiple hashes to run, and they are merged together. Later hashes take precedence. This give you safety in situations where you want to pass unsafe user inputs and safe server inputs into a single mutation. For instance:
class CreateComment < Mutations::Command
required do
model :user
model :article
string :comment, max_length: 500
end
def execute; ...; end
end
def somewhere
outcome = CreateComment.run(params[:comment],
user: current_user,
article: Article.find(params[:article_id])
)
end
Here, we pass two hashes to CreateComment. Even if the params[:comment] hash has a user or article field, they're overwritten by the second hash. (Also note: even if they weren't, they couldn't be of the correct data type in this particular case.)
How do I define mutations?
-
Subclass Mutations::Command
class YourMutation < Mutations::Command
end
-
Define your required inputs and their validations:
required do
string :name, max_length: 10
symbol :state, in: %i(AL AK AR ... WY)
integer :age
boolean :is_special, default: true
model :account
end
-
Define your optional inputs and their validations:
optional do
array :tags, class: String
hash :prefs do
boolean :smoking
boolean :view
end
end
-
Define your execute method. It can return a value:
def execute
record = do_thing(inputs)
record
end
See a full list of options here.
How do I write an execute method?
Your execute method has access to the inputs passed into it:
self.inputs
If you define an input called email, then you'll have these three methods:
self.email
self.email=(val)
self.email_present?
You can do extra validation inside of execute:
if email =~ /aol.com/
add_error(:email, :old_school, "Wow, you still use AOL?")
return
end
You can return a value as the result of the command:
def execute
"WIN!"
end
outcome = YourMutuation.run(...)
outcome.result
What about validation errors?
If things don't pan out, you'll get back an Mutations::ErrorHash object that maps invalid inputs to either symbols or messages. Example:
outcome = UserSignup.run(name: "Bob", newsletter_subscribe: "Wat")
unless outcome.success?
outcome.errors.symbolic
outcome.errors.message
outcome.errors.message_list
end
You can add errors in a validate method if the default validations are insufficient. Errors added by validate will prevent the execute method from running.
def validate
if password != password_confirmation
add_error(:password_confirmation, :doesnt_match, "Your passwords don't match")
end
end
outcome.errors.symbolic
outcome.errors.message
Alternatively you can also add these validations in the execute method:
def execute
if password != password_confirmation
add_error(:password_confirmation, :doesnt_match, "Your passwords don't match")
return
end
end
outcome.errors.symbolic
outcome.errors.message
If you want to tie the validation messages into your I18n system, you'll need to write a custom error message generator.
FAQs
Is this better than the 'Rails Way'?
Rails comes with an awesome default stack, and a lot of standard practices that folks use are very reasonable (eg, thin controllers, fat models).
That being said, there's a whole slew of patterns that are available to experienced developers. As your Rails app grows in size and complexity, my experience has been that some of these patterns can help your app immensely.
How do I share code between mutations?
Write some modules that you include into multiple mutations.
Can I subclass my mutations?
Yes, but I don't think it's a very good idea. Better to compose.
Can I use this with Rails forms helpers?
Somewhat. Any form can submit to your server, and mutations will happily accept that input. However, if there are errors, there's no built-in way to bake the errors into the HTML with Rails form tag helpers. Right now this is really designed to support a JSON API. You'd probably have to write an adapter of some kind.