|
NAMECatalyst::Action::REST - Automated REST Method DispatchingSYNOPSISsub foo :Local :ActionClass('REST') { ... do setup for HTTP method specific handlers ... } sub foo_GET { ... do something for GET requests ... } # alternatively use an Action sub foo_PUT : Action { ... do something for PUT requests ... } DESCRIPTIONThis Action handles doing automatic method dispatching for REST requests. It takes a normal Catalyst action, and changes the dispatch to append an underscore and method name. First it will try dispatching to an action with the generated name, and failing that it will try to dispatch to a regular method.For example, in the synopsis above, calling GET on "/foo" would result in the foo_GET method being dispatched. If a method is requested that is not implemented, this action will return a status 405 (Method Not Found). It will populate the "Allow" header with the list of implemented request methods. You can override this behavior by implementing a custom 405 handler like so: sub foo_not_implemented { ... handle not implemented methods ... } If you do not provide an _OPTIONS subroutine, we will automatically respond with a 200 OK. The "Allow" header will be populated with the list of implemented request methods. If you do not provide an _HEAD either, we will auto dispatch to the _GET one in case it exists. It is likely that you really want to look at Catalyst::Controller::REST, which brings this class together with automatic Serialization of requests and responses. When you use this module, it adds the Catalyst::TraitFor::Request::REST role to your request class. METHODS
SEE ALSOYou likely want to look at Catalyst::Controller::REST, which implements a sensible set of defaults for a controller doing REST.This class automatically adds the Catalyst::TraitFor::Request::REST role to your request class. If you're writing a web application which provides RESTful responses and still needs to accommodate web browsers, you may prefer to use Catalyst::TraitFor::Request::REST::ForBrowsers instead. Catalyst::Action::Serialize, Catalyst::Action::Deserialize TROUBLESHOOTING
AUTHORAdam Jacob <adam@stalecoffee.org>, with lots of help from mst and jrockwayMarchex, Inc. paid me while I developed this module. (<http://www.marchex.com>) CONTRIBUTORSTomas Doran (t0m) <bobtfish@bobtfish.net>John Goulah Christopher Laco Daisuke Maki <daisuke@endeworks.jp> Hans Dieter Pearcey Brian Phillips <bphillips@cpan.org> Dave Rolsky <autarch@urth.org> Luke Saunders Arthur Axel "fREW" Schmidt <frioux@gmail.com> J. Shirley <jshirley@gmail.com> Gavin Henry <ghenry@surevoip.co.uk> Gerv http://www.gerv.net/ Colin Newell <colin@opusvl.com> Wallace Reis <wreis@cpan.org> André Walker (andrewalker) <andre@cpan.org> COPYRIGHTCopyright (c) 2006-2015 the above named AUTHOR and CONTRIBUTORSLICENSEYou may distribute this code under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |