Rails: Resource_controller Plugin Puts Controllers on a Diet
class StandardsController < ApplicationController
# GET /standards
# GET /standards.xml
def index
@standards = Standard.find(:all)
respond_to do|format|
format.html # index.html.erb
format.xml { render :xml => @standards }
end
end
# GET /standards/1
# GET /standards/1.xml
def show
@standard = Standard.find(params[:id])
respond_to do|format|
format.html # show.html.erb
format.xml { render :xml => @standard }
end
end
# GET /standards/new
# GET /standards/new.xml
def new
@standard = Standard.new
respond_to do|format|
format.html # new.html.erb
format.xml { render :xml => @standard }
end
end
# GET /standards/1/edit
def edit
@standard = Standard.find(params[:id])
end
# POST /standards
# POST /standards.xml
def create
@standard = Standard.new(params[:standard])
respond_to do|format|
if @standard.save
flash[:notice] = 'Standard was successfully created.'
format.html { redirect_to(@standard) }
format.xml { render :xml => @standard, :status => :created, :location => @standard }
else
format.html { render :action => "new" }
format.xml { render :xml => @standard.errors, :status => :unprocessable_entity }
end
end
end
# PUT /standards/1
# PUT /standards/1.xml
def update
@standard = Standard.find(params[:id])
respond_to do|format|
if @standard.update_attributes(params[:standard])
flash[:notice] = 'Standard was successfully updated.'
format.html { redirect_to(@standard) }
format.xml { head :ok }
else
format.html { render :action => "edit" }
format.xml { render :xml => @standard.errors, :status => :unprocessable_entity }
end
end
end
# DELETE /standards/1
# DELETE /standards/1.xml
def destroy
@standard = Standard.find(params[:id])
@standard.destroy
respond_to do|format|
format.html { redirect_to(standards_url) }
format.xml { head :ok }
end
end
end
Other than the specific names, all generated controllers look very much like this.
Using generated controllers is quite easy, and in many cases, little or no change needs to be made to the generated code, particularly if you take the "skinny controllers" mantra to heart.
On the other hand, another Ruby/Rails mantra is "don't repeat yourself", and having all that almost duplicate code, even if you didn't write it yourself, is a violation of the DRY principle.
Enter: resource_controller. James Golick offered up a new plugin for rails called resource_controller which allows the same controller shown above to be written as:
class StandardsController < ApplicationController
resource_controller
end
Well, there is a little bit of a white lie here, this won't give you the standard xml response capability, but that's easy to get back with a few lines:
class StandardsController < ApplicationController
resource_controller
index.wants.xml { render :xml => @standards }
[new, show].each do|action|
action.wants.xml { render :xml => @standard })
end
create.wants.xml { render :xml => @standard, :status => :created, :location => @standard }
[update, destroy].each do|action|
action.wants.xml { head :ok }
end
[create_fails, update_fails].each do|action|
action.wants.xml { render :xml => @standard.errors, :status => :unprocessable_entity }
end
end
This plugin makes writing controllers look more like writing models, with declarative class methods like resource_controller, and "callbacks" like action.wants. The plugin automatically gives the controller the right instance variable for each action, in this case either @standards for the index action or @standard for the others.
There are some common patterns in Rails which force changing controller code. One of these is nesting resources. It's easy to set up the routes in the config/routes.rb file
map.resources :organization, :has_many => :standards
But once you've done this, you need to change the controller to fetch and use the parent resource and use it appropriately for each action. The resource_controller plugin simplifies this. After the above routing change all that's needed is to add a declarative call to our controller
class StandardsController < ApplicationController
resource_controller
belongs_to :organization
end
The belongs_to declaration enables the controller to be used with the nested resource. Now when a controller action is reached through a nested resource URL, like /organization/1234/standards, the controller will automatically create an instance variable named @organization and set it appropriately, and will use the standards association of the parent object to find, and build instances of the model Standard.
Note that the same controller also works if the URL is not nested, so we can have another mapping in routes.rb which allows access to standards outside of an organization:
map.resources :standard
map.resources :organization, :has_many :standards
And the resource controller will automatically work in either context.
The plugin also handles namespaced controllers, polymorphic nested resources (similar and related to polymorphic associations in ActiveRecord) and other magic. You also get URL and path helper functions which work in the context of the URL in the request.
Resource_controller looks like a useful plugin, and it will no doubt get even better as it matures. The details are on James Golicks blog. There's also a rapid-fire screencast by Fabio Akita, which really shows what the plugin can do in action.
YAGN XML
by
James Golick
I wanted to mention that the reason I don't include XML in r_c, by default, is that I think it's a case of YAGNI. I would venture that there are a lot of rails apps in production with the XML format enabled, but completely untested, and missing some business logic, or exposing fields they aren't meant to be exposing, or worse...
That said, in a future version of r_c, there'll likely be something to turn your example of how to turn XML back on in to a one-liner.
make_resourceful
by
Geoffrey Grosenbach
Models already have many acts_as_plugins, but there's room for simplification through behaviors in controllers, too.
Re: make_resourceful
by
J Aaron Farr
How to cleanly map nested resources like that please?
by
Raphaël Valyi
I had lot's of trouble mapping nested resources this way:
/:country/top_level_resource_controller/:year/:month/:day/:text_id/second_level_nested_resource_controller/:id
Any idea or pointer on how to automate such an URL pattern, especially for URL generation? Would those frameworks help?
In route.rb, instead of resources, I had to use:
map.connect ':country/top_level_resource_controller/:year/:month/:day/:text_id', :controller => 'top_level_resource_controller', :action => 'show'
for every action requiring an item id.
And then it was easier for nested resources:
map.resources :second_level_nested_resource, :path_prefix => '/:locale/top_level_resource_controller/:year/:month/:day/:text_id'
But the URL generation to link between actions was totally hard coded in helpers. How to make it better?
Why I choosed those URL patterns?
1) I need the country in the URL (to use the same app for several countries), but I don't want to make it a resources in order to keep the URL simple and pertinent.
2) I need to split the id of my top_level_resource in :year, :month, :day and :text_id because I use static page cache, I have many of those resources, and I need a fast access. So I needed to split the cache in hierarchical folders, not everything in a single folder. Moreover, I'm using the :text_id rather than the natural :id key to optimize SEO.
3) finally I have normal nested resources inside that stuff, just like second_level_nested_resource
Any pointer to make URL generation clean please? Thanks in advance,
Raphaël Valyi.
RESTful controllers diets in general
by
Juan Maria Martinez Arce
From the experience I extract this idea: any of this plugin for RESTful controllers code reduction will be useful if It helps you to not enclose your project between extra and not wanted complexity walls.
Kudos do James
by
Fabio Akita
Re: Kudos do James
by
Fabio Akita
Re: Kudos do James
by
Ben Scofield
I talked a bit about this a few months ago, if anyone would like to see some more conversation on the topic.
An alternative plugin
by
Philippe Lachaise
Here's a plugin of mine that adress this same need :
miceplugins.lachaise.org/mice_restful/trunk (SVN : "scrip/plugin install" should work)
Doc is the code (sorry about that) but some in-depth explanations are to be found her (in french, sorry again, but contains code examples) :
blog.lachaise.org/?p=3
At its simplest, this single statement,
restful_methods
will generate for you all the basic code (format both html and xml) but quite a few more complex real-life cases are handled.
In particular two-levels resource nesting is supported.
e.g
restful_methods :only => [:current_parent, :index, :show],
:parent_model => :item,
:include => { :catalog_item => { :catalog => :shop } },
:batch => :batch_handler,
:batch_redirect => [:organization_item_path, { :organization_id => :@current_organization, :list_id => :'@current_item.list', :id => :@current_item } ],
:before_index => :before_index
Anyway, it it happens to be as useful for someone as it has been for my (rather big and com plex) application I would gladly share information with anyone interested and may consider turn it this code into a properly packaged plugin.
Educational Content
Building Hypermedia APIs with HTML
Jon Moore Jun 19, 2013
Deleting Code at Nokia
Tom Coupland Jun 19, 2013
Intro to CLP with core.logic
Ryan Senior Jun 18, 2013
Spock: A Highly Logical Way To Test
Howard Lewis Ship Jun 18, 2013




Hello stranger!
You need to Register an InfoQ account or Login to post comments. But there's so much more behind being registered.Get the most out of the InfoQ experience.
Tell us what you think