Develop declarative, featureful RESTful-ish JSON service controllers to use with modern Javascript MVC frameworks like AngularJS, Ember, etc. with much less code. (I say "RESTful-ish" instead of RESTful, to differentiate them from true-REST, hypermedia-driven projects, but restful_json controllers are RESTful by the existing Rails definition of being RESTful, using the same actions and resourceful routes, but with more abilities.)
What does that mean? It means you typically won't have to write index, create, update, destroy, etc. methods in your controllers to filter, sort, and do complex queries.
Why do you need this if Rails controllers already make it easy to provide RESTful JSON services via generated controllers? Because this is just as flexible, almost as declarative, and takes less code. That means your controllers will be easier to read and there will be less code to maintain, but when you need an action method more customized than we can provide, that's all you'll have to write.
The goal of the project is to reduce service controller code in an intuitive way, not to be a be-everything DSL or limit what you can do in a controller. Choose what features to expose, and you can still define/redefine actions etc. at will.
We test with travis-ci with with Rails 3.1, 3.2, and Rails 4. Feel free to submit issues and/or do a pull requests if you run into anything.
You can use any of these for the JSON response (the view):
- active_model_serializers - also provides the serialize_action class method in the controller to specify custom serializers (assuming you are using a later version of active_model_serializers that works with respond_with).
- JBuilder - to use, set render_enabled in the restful_json config to false.
- Just about anything else that works with render/respond_with, or that just adjust the view like JBuilder, and don't require extra work in the controller.
And can use any of the following for authorizing parameters in the incoming JSON (for create/update):
- Adam Hawkins' permitters which use Strong Parameters and Cancan. Permitters are an object-oriented way of defining what is permitted in the incoming JSON, and are a great compliment in the same way that ActiveModel::Serializers are. Cancan supports Authlogic, Devise, etc.
- Strong Parameters - lets you only have to define
(single model name)_params
and/orcreate_(single model name)_params
and/orupdate_(single model name)_params
which can call require, permit, etc. on params. - Mass assignment security in Rails 3.x (attr_accessible, etc.).
An example app using an older version of restful_json with AngularJS is employee-training-tracker, featured in Built with AngularJS.
In your Rails app's Gemfile
:
gem 'restful_json', '~> 3.4.1'
And if you go with the defaults to use ActiveModel::Serializers and Permitters (using Strong Parameters and Cancan):
# comment this out if you don't want to use Strong Parameters or Permitters, or if you are using Rails 4, which includes it
gem 'strong_parameters', '~> 0.2.0'
# comment this out if you don't plan to use Permitters
gem 'cancan', '~> 1.6.9'
# comment this out if you don't plan to use ActiveModel::Serializers
gem 'active_model_serializers', '~> 0.7.0'
Then:
bundle install
Strong Parameters is not required, but can be used on its own or as a dependency of Permitters.
If you are using Rails 4.x, you might be able to skip this section, as Strong Parameters is included.
If you are using Rails 3.x, then if you plan to use Permitters or want to use Strong Parameters by itself, you may need to tweak a few things for Strong Parameters
To disable the default whitelisting that occurs in later versions of Rails 3.x, set the config.active_record.whitelist_attributes
property in your config/application.rb
to false:
config.active_record.whitelist_attributes = false
No more attr_accessible needed in your models (so take them out and convert them). Instead you will either put this information into your Permitters, or if you are using Strong Parameters without Permitters, you'll create create_(single model name)_params
, update_(single model name)_params
, and/or (single model name)_params
methods in your controller(s). Encapsulating what params are permissible in such a method is encouraged and described in the Strong Parameters documentation.
Strong Parameters (and Permitters) require a model include.
Put this in each model you want to use Strong Parameters with:
include ActiveModel::ForbiddenAttributesProtection
If you'd rather use Strong Parameters with all models, just put this in your config/environment.rb
:
ActiveRecord::Base.send(:include, ActiveModel::ForbiddenAttributesProtection)
Though optional, if you decide to use Permitters, the Permitters framework relies on Cancan.
Permitters are an object-oriented representation of Strong Parameters, but they also integrate with Cancan. Cancan can restrict what resources a given user is allowed to access. In Cancan, all permissions are defined in a single location (the Ability class) and not duplicated across controllers, views, and database queries.
To setup Cancan, you need a current_user
method in your app/controllers/application_controller.rb
or in your service controllers. For the sake of example, we'll just have it return a new User:
class ApplicationController < ActionController::Base
protect_from_forgery
def current_user
User.new
end
end
Cancan integrates Authlogic, Devise, etc. to return a proper logged-in user or you can return it however you wish.
Cancan also needs an Ability defined in app/models/ability.rb
. Just for testing we'll ignore the user object and allow everything:
class Ability
include CanCan::Ability
def initialize(user)
can :manage, :all
end
end
Put this in each model you want to use Cancan with:
include CanCan::ModelAdditions
Or, if you'd rather use Cancan with all models, just put this in your config/environment.rb
:
ActiveRecord::Base.send(:include, CanCan::ModelAdditions)
Once you get everything setup, go through the Cancan documentation, and then Authlogic, Devise, etc. to setup/integrate with proper authentication and authorization.
Use of ActiveModel::Serializers is optional, but a great way to have object-oriented model-like representation of JSON views.
The purpose of ActiveModel::Serializers is to provide an object to encapsulate serialization of ActiveModel objects, including ActiveRecord objects. Serializers know about both a model and the current_user, so you can customize serialization based upon whether a user is authorized to see the content. In short, serializers replace hash-driven development with object-oriented development.
If you chose to use ActiveModel::Serializers, you'll eventually want to create one or more serializers for each model that you will be returning via the service(s), e.g.:
/app/serializers/singular_model_name_serializer.rb
Without having to do anything else, each restful_json controller will use /app/serializers/singular_model_name_serializer.rb
, e.g. /app/serializers/bar_serializer.rb
for the actions: index, show, new, create, update, destroy (not edit).
If you want to define a different serializer another action, e.g. the index action so that a list of instances has a different JSON format:
serialize_action :index, with: BarsSerializer
You can also use a specific format for multiple actions:
serialize_action :index, :my_other_list_action, with: BarsSerializer
The built-in actions that support custom serializers (you can add more) are: index, show, new, create, update, destroy, and any action you automatically have created via using the restful_json query_for
method (keep reading!).
You can just use the default serialization provided by AMS if you want. No class needed.
Because of some issues with some versions of ActiveModel::Serializers using respond_with, you might want to set the option:
RestfulJson.avoid_respond_with = true
Otherwise, custom serializers, etc. might not be used as intended.
If you want to use JBuilder instead to render, first:
gem 'jbuilder'
If you want to enable JBuilder for all restful_json services, you need to disable all renders and respond_withs in the controller:
RestfulJson.render_enabled = false
Or you can also just enable/disable rendering in a controller via setting self.render_enabled
:
self.render_enabled = false
Then make sure you add a JBuilder view for each action you require. Although all may not be relevant, we support: index, show, new, edit, create, update, destroy. Maybe you'd create:
/app/views/plural_name_of_model/index.json.jbuilder
/app/views/plural_name_of_model/show.json.jbuilder
/app/views/plural_name_of_model/create.json.jbuilder
/app/views/plural_name_of_model/update.json.jbuilder
See Railscast #320 for more examples on setting up and using JBuilder.
You should be able to use anything that works with normal render/responds_with in Rails controllers without additional code in the controller. If you'd like to use something that requires additional code in the action methods of the controller, and you think it would be a good fit, feel free to do a pull request.
We include ApplicationPermitter and optional controller support for Adam Hawkins' permitters.
The default setting is for permitters to be used:
self.use_permitters = true
Permitters use Cancan for authorization and Strong Parameters for parameter permitting.
We have an implementation of ApplicationPermitter, so you just need permitters in /app/permitters/
, e.g. /app/permitters/foobar_permitter.rb
:
class FoobarPermitter < ApplicationPermitter
# attributes we accept (the new way to do attr_accessible, OO-styley! Thanks, twinturbo)
permit :id, :foo_id
permit :bar_id
permit :notes
# foobar has accepts_nested_attributes_for :barfoos
scope :barfoos_attributes do |barfoo|
barfoo.permit :id, :favorite_color, :favorite_chicken
end
end
If you don't accept anything in create/update, you should have an empty Permitter for the model:
class FoobarPermitter < ApplicationPermitter
end
To use strong_parameters by themselves, without Permitters/Cancan, specify this in restful_json config/controller config:
self.use_permitters = false
As noted in Strong Parameters, it is suggested to encapsulate the permitting into a private method in the controller, so we've taken that to heart and the controller just attempts to call the relevant params method or createparams/update*_params, e.g. in the controller:
def foobar_params
params.require(:foobar).permit(:name, :age)
end
To use mass assignment security in Rails 3.x, specify this in restful_json config/controller config:
self.use_permitters = false
Don't use any of these, as they each include Strong Parameters:
include ActionController::StrongParameters
include RestfulJson::DefaultController
acts_as_restful_json
Only the main controller is needed:
include RestfulJson::Controller
Then, make sure that attr_accessible and/or attr_protected, etc. are used properly.
At the bottom of config/environment.rb
, you can set restful_json can be configured one line at a time.
RestfulJson.debug = true
or in bulk, like:
RestfulJson.configure do
# default for :using in can_filter_by
self.can_filter_by_default_using = [:eq]
# to output debugging info during request handling
self.debug = false
# delimiter for values in request parameter values
self.filter_split = ','
# equivalent to specifying respond_to :json, :html in the controller, and can be overriden in the controller. Note that by default responders gem sets respond_to :html in application_controller.rb.
self.formats = :json, :html
# default number of records to return if using the page request function
self.number_of_records_in_a_page = 15
# delimiter for ARel predicate in the request parameter name
self.predicate_prefix = '!'
# if true, will render resource and HTTP 201 for post/create or resource and HTTP 200 for put/update. ignored if render_enabled is false.
self.return_resource = false
# if false, controller actions will just set instance variable and return it instead of calling setting instance variable and then calling render/respond_with
self.render_enabled = true
# if false, will assume that it should either try calling create_(single model name)_params or fall back to calling (single model name)_params if create, or update_(single model name)_params then (single model name)_params if that didn't respond, if update. if it can't call those, it will either use mass assignment security, no parameter security, or some other solution, depending on how it is configured.
self.use_permitters = true
end
In the controller, you can set a variety of class attributes with self.something = ...
in the body of your controller.
All of the app-level configuration parameters are configurable at the controller level:
self.can_filter_by_default_using = [:eq]
self.debug = false
self.filter_split = ','
self.formats = :json, :html
self.number_of_records_in_a_page = 15
self.predicate_prefix = '!'
self.return_resource = false
self.render_enabled = true
self.use_permitters = true
In addition there are some that are controller-only...
If you don't use the standard controller naming convention, you can define this in the controller:
self.model_class = YourModel
If it doesn't handle the other forms well, you can explicitly define the singular/plural names:
self.model_singular_name = 'your_model'
self.model_plural_name = 'your_models'
These are used for *_url method definitions, to set instance variables like @foobar
and @foobars
dynamically, etc.
Other class attributes are available for setting/overriding, but they are all set by the other class methods defined in the next section.
You have a configurable generic Rails 3.1.x/3.2.x/4.0.x controller that does the index, show, create, and update and other custom actions easily for you.
Everything is well-declared and fairly concise.
You can have something as simple as:
class FoobarsController < ApplicationController
include RestfulJson::DefaultController
end
which would use the restful_json configuration and the controller's classname for the service definition and provide a simple no-frills JSON CRUD controller that behaves somewhat similarly to a Rails controller created via rails g scaffold ...
.
Or, you can define many more bells and whistles:
class FoobarsController < ApplicationController
include RestfulJson::DefaultController
query_for :index, is: ->(t,q) {q.joins(:apples, :pears).where(apples: {color: 'green'}).where(pears: {color: 'green'})}
# args sent to can_filter_by are the request parameter name(s)
# implies using: [:eq] because RestfulJson.can_filter_by_default_using = [:eq]
can_filter_by :foo_id
# can specify multiple predicates and optionally a default value
can_filter_by :foo_date, :bar_date, using: [:lt, :eq, :gt], with_default: Time.now
can_filter_by :a_request_param_name, with_query: ->(t,q,param_value) {q.joins(:some_assoc).where(:some_assocs_table_name=>{some_attr: param_value})}
can_filter_by :and_another, through: [:some_attribute_on_this_model]
can_filter_by :one_more, through: [:some_association, :some_attribute_on_some_association_model]
can_filter_by :and_one_more, through: [:my_assoc, :my_assocs_assoc, :my_assocs_assocs_assoc, :an_attribute_on_my_assocs_assocs_assoc]
supports_functions :count, :uniq, :take, :skip, :page, :page_count
order_by {:foo_date => :asc}, :foo_color, {:bar_date => :desc} # an ordered array of hashes, assumes :asc if not a hash
serialize_action :index, with: ListFoobarSerializer
# comma-delimited if you want more than :json, e.g. :json, :html
respond_to :json, :html
end
You can just add normal Rails RESTful routes in config/routes.rb
, e.g. for the Foobar model:
MyAppName::Application.routes.draw do
resources :foobars
end
Supports static, nested, etc. routes also, e.g.:
MyAppName::Application.routes.draw do
namespace :my_service_controller_module do
resources :foobars
end
end
Can pass in params from the path for use in filters, etc. as if they were request parameters:
MyAppName::Application.routes.draw do
namespace :my_service_controller_module do
match 'bar/:bar_id/foobars(.:format)' => 'foobars#index'
end
end
First, declare in the controller:
can_filter_by :foo_id
If RestfulJson.can_filter_by_default_using = [:eq]
as it is by default, then you can now get Foobars with a foo_id of '1':
http://localhost:3000/foobars?foo_id=1
can_filter_by
without an option means you can send in that request param (via routing or directly, just like normal in Rails) and it will use that in the ARel query (safe from SQL injection and only letting you do what you tell it). :using
means you can use those ARel predicates for filtering. If you do Arel::Predications.public_instance_methods.sort
in Rails console, you can see a list of the available predicates. So, you could get crazy with:
can_filter_by :does_not_match, :does_not_match_all, :does_not_match_any, :eq, :eq_all, :eq_any, :gt, :gt_all, :gt_any, :gteq, :gteq_all, :gteq_any, :in, :in_all, :in_any, :lt, :lt_all, :lt_any, :lteq, :lteq_all, :lteq_any, :matches, :matches_all, :matches_any, :not_eq, :not_eq_all, :not_eq_any, :not_in, :not_in_all, :not_in_any
can_filter_by
can also specify a :with_query
to provide a lambda that takes the request parameter in when it is provided by the request.
can_filter_by :a_request_param_name, with_query: ->(t,q,param_value) {q.joins(:some_assoc).where(:some_assocs_table_name=>{some_attr: param_value})}
And can_filter_by
can specify a :through
to provide an easy way to inner join through a bunch of models using ActiveRecord relations, by specifying 0-to-many association names to go "through" to the final argument, which is the attribute name on the last model. The following is equivalent to the last query:
can_filter_by :a_request_param_name, through: [:some_assoc, :some_attr]
Let's say you are in MagicalValleyController, and the MagicalValley model has many :magical_unicorns
. The MagicalUnicorn model has an attribute called name
. You want to return MagicalValleys that are associated with all of the MagicalUnicorns named 'Rainbow'. You could do either:
can_filter_by :magical_unicorn_name, with_query: ->(t,q,param_value) {q.joins(:magical_unicorns).where(:magical_unicorns=>{name: param_value})}
or:
can_filter_by :magical_unicorn_name, through: [:magical_unicorns, :name]
and you can then use this:
http://localhost:3000/magical_valleys?magical_unicorn_name=Rainbow
or if a MagicalUnicorn has_many :friends
and a MagicalUnicorn's friend has a name attribute:
can_filter_by :magical_unicorn_friend_name, through: [:magical_unicorns, :friends, :name]
and use this to get valleys associated with unicorns who in turn have a friend named Oscar:
http://localhost:3000/magical_valleys?magical_unicorn_friend_name=Oscar
First, declare in the controller:
can_filter_by :seen_on, using: [:gteq, :eq_any]
Get Foobars with seen_on of 2012-08-08 or later using the ARel gteq predicate splitting the request param on predicate_prefix
(configurable), you'd use:
http://localhost:3000/foobars?seen_on!gteq=2012-08-08
Multiple values are separated by filter_split
(configurable):
http://localhost:3000/foobars?seen_on!eq_any=2012-08-08,2012-09-09
supports_functions
lets you allow the ARel functions: :uniq
, :skip
, :take
, and/or :count
.
First, declare in the controller:
supports_functions :uniq
Now this works:
http://localhost:3000/foobars?uniq=
First, declare in the controller:
supports_functions :count
Now this works:
http://localhost:3000/foobars?count=
First, declare in the controller:
supports_functions :page, :page_count
Now you can get the page count:
http://localhost:3000/foobars?page_count=
And access each page of results:
http://localhost:3000/foobars?page=1
http://localhost:3000/foobars?page=2
...
To set page size at application level:
RestfulJson.number_of_records_in_a_page = 15
To set page size at controller level:
self.number_of_records_in_a_page = 15
First, declare in the controller:
supports_functions :skip, :take
To skip rows returned, use 'skip'. It is called take, because skip is the ARel equivalent of SQL OFFSET:
http://localhost:3000/foobars?skip=5
To limit the number of rows returned, use 'take'. It is called take, because take is the ARel equivalent of SQL LIMIT:
http://localhost:3000/foobars.json?take=5
Combine skip and take for manual completely customized paging, e.g.
http://localhost:3000/foobars?take=15
http://localhost:3000/foobars?skip=15&take=15
http://localhost:3000/foobars?skip=30&take=15
If using ActiveModel::Serializers, you can use something other than the (singular model name)Serializer
via serialize_action
:
serialize_action :index, with: ListFoobarSerializer
The built-in actions that support custom serializers (you can add more) are: index, show, new, create, update, destroy, and any action you automatically have created via using the restful_json query_for
method.
It will use the serializer
option for single result actions like show, new, create, update, destroy, and the each_serializer
option with index and custom actions. Or, you can specify for:
with :array
or :each
, e.g.:
serialize_action :index, :some_custom_action, with: FoosSerializer, for: :array
Or, you could just use the default serialization, if you want.
To filter the list where the status_code attribute is 'green':
# t is self.model_class.arel_table and q is self.model_class.scoped
query_for :index, is: lambda {|t,q| q.where(:status_code => 'green')}
or use the ->
Ruby 1.9 lambda stab operator (note lack of whitespace between stab and parenthesis):
# t is self.model_class.arel_table and q is self.model_class.scoped
query_for :index, is: is: ->(t,q) {q.where(:status_code => 'green')}
You can also filter out items that have associations that don't have a certain attribute value (or anything else you can think up with ARel/ActiveRecord relations), e.g. to filter the list where the object's apples and pears associations are green:
# t is self.model_class.arel_table and q is self.model_class.scoped
# note: must be no space between -> and parenthesis
query_for :index, is: ->(t,q) {
q.joins(:apples, :pears)
.where(apples: {color: 'green'})
.where(pears: {color: 'green'})
}
You are still working with regular controllers here, so add or override methods if you want more!
However query_for
will create new action methods, so you can easily create custom non-RESTful action methods:
# t is self.model_class.arel_table and q is self.model_class.scoped
# note: must be no space between -> and parenthesis in lambda syntax!
query_for :some_action, is: ->(t,q) {q.where(:status_code => 'green')}
Note that it is a proc so you can really do whatever you want with it and will have access to other things in the environment or can call another method, etc.
query_for :some_action, is: ->(t,q) do
if @current_user.admin?
Rails.logger.debug("Notice: unfiltered results provided to admin #{@current_user.name}")
# just make sure the relation is returned!
q
else
q.where(:access => 'public')
end
end
Be sure to add a route for that action, e.g. in config/routes.rb
, e.g. for the Barfoo model:
MyAppName::Application.routes.draw do
resources :barfoos do
get 'some_action', :on => :collection
end
end
If you want to try out rails-api:
gem 'rails-api', '~> 0.0.3'
In app/controllers/my_service_controller.rb
:
module MyServiceController
extend ActiveSupport::Concern
included do
# Rails-api lets you choose features. You might not need all of these, or may need others.
include AbstractController::Translation
include ActionController::HttpAuthentication::Basic::ControllerMethods
include AbstractController::Layouts
include ActionController::MimeResponds
include ActionController::Cookies
include ActionController::ParamsWrapper
# use Permitters and AMS
include RestfulJson::DefaultController
# or comment that last line and uncomment whatever you want to use
#include ::ActionController::Serialization # AMS
#include ::ActionController::StrongParameters
#include ::TwinTurbo::Controller # Permitters which uses Cancan and Strong Parameters
#include ::RestfulJson::Controller
# If you want any additional inline class stuff, it goes here...
end
end
class FoobarsController < ActionController::API
include MyServiceController
end
class BarfoosController < ActionController::API
include MyServiceController
end
Note that in /config/initializers/wrap_parameters.rb
you might need to add include ActionController::ParamsWrapper
prior to the wrap_parameters
call. For example, for unwrapped JSON, it would look like:
ActiveSupport.on_load(:action_controller) do
# without include of ParamsWrapper, will get undefined method `wrap_parameters' for ActionController::API:Class (NoMethodError)
include ActionController::ParamsWrapper
# in this case it's expecting unwrapped params, but we could maybe use wrap_parameters format: [:json]
wrap_parameters format: []
end
# Disable root element in JSON by default.
ActiveSupport.on_load(:active_record) do
self.include_root_in_json = false
end
Don't subclass and include in the parent, that puts the class attributes into the parent which means they would be shared by the children and bad things can happen.
Don't do this:
class ServiceController < ApplicationController
include ::ActionController::Serialization
include ::ActionController::StrongParameters
include ::TwinTurbo::Controller
include ::RestfulJson::Controller
end
class FoobarsController < ServiceController
end
class BarfoosController < ServiceController
end
And don't do this:
class FoobarsController < ApplicationController
include RestfulJson::DefaultController
end
class FoobarsController < ServiceController
end
class BarfoosController < ServiceController
end
It may appear to work when using the same controller or even on each new controller load, but when you make requests to BarfoosController, make a request to FoobarsController, and then make a request back to the BarfoosController, it may fail in very strange ways, such as missing column(s) from SQL results (because it isn't using the correct model).
In config/initializers/restful_json.rb
you can monkey patch the RestfulJson::Controller module. The DefaultController includes that, so it will get your changes also:
# a horrible Hello World example
module RestfulJson
module Controller
# class methods that should be implemented or overriden
module ClassMethods
def hello(name)
#TODO: find way to call hook into the block call in RJ controller's included block
# without having do funny things to ActiveSupport::Concern, because append_features(base)
# defined in the monkey patch is never called, and module_eval is a royal pain.
# Or, stop using ActiveSupport::Concern. For now, we'll defined class_attribute in the
# class method that uses it and use respond_to? in a nasty hack. I'm sorry.
class_attribute :name, instance_writer: true
self.name = name
end
end
# instance methods that should be implemented or overriden.
#
# note: you don't have to do this to override service methods at the controller-level.
# Instead, just define them in the controller. this is just an example of monkey-patching.
def index
name = self.respond_to?(:name) && self.name ? self.name : 'nobody'
render :json => {:hello => self.name}
rescue => e
# rescue to identify errors that otherwise can be swallowed
puts "index failed: #{self} #{e}"
raise e
end
end
end
Now in your controller, if you:
class FoobarsController < ApplicationController
include RestfulJson::DefaultController
hello 'world'
end
(Note again: RestfulJson::DefaultController includes RestfulJson::Controller.)
Now when you call:
http://localhost:3000/foobars
You would get the response:
{'hello': 'world'}
For more realistic use that takes advantage of existing configuration in the controller, take a look at the controller in lib/restful_json/controller.rb
to see how the actions are defined, and just copy/paste into your controller or module, etc.
Some things restful_json can't do in the controller, like responding with json for a json request when the route is not setup correctly or an action is missing.
Rails 4 has basic error handling defined in the public_exceptions and show_exceptions Rack middleware.
Rails 3.2.x has support for config.exceptions_app
which can be defined as the following to simulate Rails 4 exception handling:
config.exceptions_app = lambda do |env|
exception = env["action_dispatch.exception"]
status = env["PATH_INFO"][1..-1]
request = ActionDispatch::Request.new(env)
content_type = request.formats.first
body = { :status => status, :error => exception.message }
format = content_type && "to_#{content_type.to_sym}"
if format && body.respond_to?(format)
formatted_body = body.public_send(format)
[status, {'Content-Type' => "#{content_type}; charset=#{ActionDispatch::Response.default_charset}",
'Content-Length' => body.bytesize.to_s}, [formatted_body]]
else
found = false
path = "#{public_path}/#{status}.#{I18n.locale}.html" if I18n.locale
path = "#{public_path}/#{status}.html" unless path && (found = File.exist?(path))
if found || File.exist?(path)
[status, {'Content-Type' => "text/html; charset=#{ActionDispatch::Response.default_charset}",
'Content-Length' => body.bytesize.to_s}, [File.read(path)]]
else
[404, { "X-Cascade" => "pass" }, []]
end
end
end
That is just a collapsed version of the behavior of public_exceptions as of April 2013, pre-Rails 4.0.0, so please look at the latest version and adjust accordingly. Use at your own risk, obviously.
Unfortunately, this doesn't work for Rails 3.1.x. However, in many scenarios there is the chance at a rare situation when the proper format is not returned to the client, even if everything is controlled as much as possible on the server. So, the client really needs to be able to handle such a case of unexpected format with a generic error.
But, if you can make Rack respond a little better for some errors, that's great.
The default configuration will rescue StandardError in each action method and will render as 404 for ActiveRecord::RecordNotFound or 500 for all other StandardError (and ancestors, like a normal rescue).
There are a few options to customize the rescue and error rendering behavior.
The rescue_class
config option specifies what to rescue. Set to StandardError to behave like a normal rescue. Set to nil to just reraise everything rescued (to disable handling).
The rescue_handlers
config option is like a minimalist set of rescue blocks that apply to every action method. For example, the following would effectively rescue => e
(rescuing StandardError
) and then for ActiveRecord::RecordNotFound
, it would uses response status :not_found
(HTTP 404). Otherwise it uses status :internal_server_error
(HTTP 500). In both cases the error message is e.message
:
self.rescue_class = StandardError
self.rescue_handlers = [
{exception_classes: [ActiveRecord::RecordNotFound], status: :not_found},
{status: :internal_server_error}
]
In a slightly more complicated case, this configuration would catch all exceptions raised with each actinon method that had ActiveRecord::RecordNotFound
as an ancestor and use the error message defined by i18n key 'api.not_found'. All other exceptions would use status :internal_server_error
(because it is a default, and doesn't have to be specified) but would use the error message defined by i18n key 'api.internal_server_error':
self.rescue_class = Exception
self.rescue_handlers = [
{exception_ancestor_classes: [ActiveRecord::RecordNotFound], status: :not_found, i18n_key: 'api.not_found'.freeze},
{i18n_key: 'api.internal_server_error'.freeze}
]
The return_error_data
config option will not only return a response with status
and error
but also an error_data
containing the e.class.name
, e.message
, and cleaned e.backtrace
.
In past versions, everything was done to the models whether you wanted it done or not. Have been trying to transition away from forcing anything, so starting with v3.3, ensure the following is done.
If you are using Rails 3.1-3.2 and want to use permitters or strong_parameters in all models:
Make sure you include Strong Parameters:
gem "strong_parameters"
Include this in config/environment.rb
:
ActiveRecord::Base.send(:include, ActiveModel::ForbiddenAttributesProtection)
If you want to use permitters in all models, you need Cancan:
Make sure you include Cancan:
gem "cancan"
Include this in config/environment.rb
ActiveRecord::Base.send(:include, CanCan::ModelAdditions)
Strong Parameters is included in Rails 4.
If you are using Rails 3.1.x, note that respond_with returns HTTP 200 instead of 204 for update and destroy, unless return_resource is true.
Without our users, where would we be? Feedback, bug reports, and code/documentation contributions are always welcome!
- Gary Weaver (https://github.com/garysweaver)
- Tommy Odom (https://github.com/tpodom)
Copyright (c) 2013 Gary S. Weaver, released under the MIT license.