public
Description: A Rails plugin to use exceptions for generating HTTP status responses.
Homepage: http://wiki.github.com/wvanbergen/http_status_exceptions
Clone URL: git://github.com/wvanbergen/http_status_exceptions.git
wvanbergen (author)
Sat Oct 10 01:03:54 -0700 2009
commit  80babe656f46b6743a3a5f5929a2253aea327f39
tree    d38a6b8174016f151bf5a782819eaf3a21125220
parent  1185fc341f80762eb5249618abceef4aa68fe02a
name age message
file .gitignore Loading commit data...
file MIT-LICENSE
file README.rdoc
file Rakefile Sat Sep 26 05:46:31 -0700 2009 Whitespace fixing. [wvanbergen]
file http_status_exceptions.gemspec
file init.rb Sat Sep 20 09:58:15 -0700 2008 Initial check-in [wvanbergen]
directory lib/
directory spec/
directory tasks/
README.rdoc

WARNING: the gem version that Github currently serves is faulty. The issue is already fixed in the repository, but Github will not build new gems anymore. Make sure to install the latest version from the gemcutter repository (see below)

HTTP status exception

This simple plugin will register exception classes for all HTTP status. These exceptions can then be raised from your controllers, after which a response will be send back to the client with the desired HTTP status, possible with some other content.

You can use this plugin to access control mechanisms. You can simply raise a HTTPStatus::Forbidden if a user is not allowed to perform a certain action. A nice looking error page will be the result. See the example below:

See the project wiki (github.com/wvanbergen/http_status_exceptions/wikis) for additional documentation.

Installation

Installation is simple. Simply add the gem to the configuration in your environment.rb:

  Rails::Initializer.run do |config|
    ...
    config.gem 'http_status_exceptions', :source => 'http://gemcutter.org'
  end

Run rake gems:install to install the gem if needed.

Configuration

You can modify where HTTP status exception looks for its template files like so:

  class ApplicationController < ActionController::Base
    ...
    HTTPStatus::Base.template_path = 'path_to/http_status_templates'
  end

You can also modify which layout is used when rendering a template by setting the template_layout:

  class ApplicationController < ActionController::Base
    ...
    HTTPStatus::Base.template_layout = 'exception'
  end

If you don’t set a template_layout the current layout for the requested action will be used.

Usage

  class BlogController < ApplicationController

    def destroy
      raise HTTPStatus::Forbidden, 'You cannot delete blogs!' unless current_user.can_delete_blogs?
      @blog.destroy
    end
  end

By default, this will return an empty response with the "forbidden" status code (403). If you want to add content to the response as well, create the following view: shared/http_status/forbidden.html.erb. You can use the @exception-object in your view:

  <h1>Forbidden</h1>
  <p> <%= h(@exception.message) %> </p>
  <hr />
  <p>HTTP status code <small> <%= @exception.status_code %>: <%= @exception.status.to_s.humanize %></small></p>

The response will only be sent if the request format is HTML because of the name of the view file. In theory you could make a response for XML requests as well by using shared/http_status/forbidden.xml.builder as filename