apply RequestRole::REST instead of doing Request::REST->_insert_self_info
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Action / REST.pm
CommitLineData
256c894f 1#
2# REST.pm
be3c588a 3# Created by: Adam Jacob, Marchex, <adam@hjksolutions.com>
256c894f 4# Created on: 10/12/2006 03:00:32 PM PDT
5#
6# $Id$
7
8package Catalyst::Action::REST;
9
10use strict;
11use warnings;
12
13use base 'Catalyst::Action';
7ad87df9 14use Class::Inspector;
7e08f674 15use Moose::Util qw(does_role);
d4611771 16use Catalyst;
7e08f674 17use Catalyst::RequestRole::REST;
ebba5325 18use Catalyst::Controller::REST;
7e08f674 19use namespace::clean -except => 'meta';
ebba5325 20
9c5c9bd1 21BEGIN { require 5.008001; }
256c894f 22
888f25e3 23our $VERSION = '0.71';
9a76221e 24
7328f0ab 25=head1 NAME
26
27Catalyst::Action::REST - Automated REST Method Dispatching
28
29=head1 SYNOPSIS
30
5e87ec47 31 sub foo :Local :ActionClass('REST') {
32 ... do setup for HTTP method specific handlers ...
33 }
7328f0ab 34
35 sub foo_GET {
36 ... do something for GET requests ...
37 }
38
39 sub foo_PUT {
40 ... do somethign for PUT requests ...
41 }
42
43=head1 DESCRIPTION
44
45This Action handles doing automatic method dispatching for REST requests. It
46takes a normal Catalyst action, and changes the dispatch to append an
47underscore and method name.
48
49For example, in the synopsis above, calling GET on "/foo" would result in
50the foo_GET method being dispatched.
51
52If a method is requested that is not implemented, this action will
53return a status 405 (Method Not Found). It will populate the "Allow" header
5e87ec47 54with the list of implemented request methods. You can override this behavior
55by implementing a custom 405 handler like so:
56
57 sub foo_not_implemented {
58 ... handle not implemented methods ...
59 }
60
61If you do not provide an _OPTIONS subroutine, we will automatically respond
62with a 200 OK. The "Allow" header will be populated with the list of
63implemented request methods.
7328f0ab 64
5e87ec47 65It is likely that you really want to look at L<Catalyst::Controller::REST>,
66which brings this class together with automatic Serialization of requests
67and responses.
398c5a1b 68
9a76221e 69When you use this module, the request class will be changed to
70L<Catalyst::Request::REST>.
71
7328f0ab 72=head1 METHODS
73
74=over 4
75
76=item dispatch
77
78This method overrides the default dispatch mechanism to the re-dispatching
79mechanism described above.
80
81=cut
d34c067a 82
256c894f 83sub dispatch {
bb4130f6 84 my $self = shift;
d34c067a 85 my $c = shift;
256c894f 86
7e08f674 87 Catalyst::RequestRole::REST->meta->apply($c->request)
88 unless does_role($c->request, 'Catalyst::RequestRole::REST');
89
2f91bf68 90 my $controller = $c->component( $self->class );
eccb2137 91 my $method = $self->name . "_" . uc( $c->request->method );
92 if ( $controller->can($method) ) {
d34c067a 93 $c->execute( $self->class, $self, @{ $c->req->args } );
94 return $controller->$method( $c, @{ $c->req->args } );
256c894f 95 } else {
d34c067a 96 if ( $c->request->method eq "OPTIONS" ) {
97 return $self->_return_options($c);
98 } else {
99 my $handle_ni = $self->name . "_not_implemented";
100 if ( $controller->can($handle_ni) ) {
101 return $controller->$handle_ni( $c, @{ $c->req->args } );
102 } else {
103 return $self->_return_not_implemented($c);
104 }
105 }
256c894f 106 }
107}
108
d34c067a 109sub _return_options {
110 my ( $self, $c ) = @_;
111
112 my @allowed = $self->_get_allowed_methods($c);
113 $c->response->content_type('text/plain');
114 $c->response->status(200);
115 $c->response->header( 'Allow' => \@allowed );
116}
117
118sub _get_allowed_methods {
7ad87df9 119 my ( $self, $c ) = @_;
120
121 my $controller = $self->class;
eccb2137 122 my $methods = Class::Inspector->methods($controller);
7ad87df9 123 my @allowed;
eccb2137 124 foreach my $method ( @{$methods} ) {
7ad87df9 125 my $name = $self->name;
eccb2137 126 if ( $method =~ /^$name\_(.+)$/ ) {
127 push( @allowed, $1 );
7ad87df9 128 }
129 }
d34c067a 130 return @allowed;
131}
132
133sub _return_not_implemented {
134 my ( $self, $c ) = @_;
135
136 my @allowed = $self->_get_allowed_methods($c);
7ad87df9 137 $c->response->content_type('text/plain');
138 $c->response->status(405);
eccb2137 139 $c->response->header( 'Allow' => \@allowed );
140 $c->response->body( "Method "
141 . $c->request->method
142 . " not implemented for "
143 . $c->uri_for( $self->reverse ) );
7ad87df9 144}
145
256c894f 1461;
7328f0ab 147
148=back
149
150=head1 SEE ALSO
151
152You likely want to look at L<Catalyst::Controller::REST>, which implements
153a sensible set of defaults for a controller doing REST.
154
155L<Catalyst::Action::Serialize>, L<Catalyst::Action::Deserialize>
156
5d7480da 157=head1 TROUBLESHOOTING
158
159=over 4
160
161=item Q: I'm getting a "415 Unsupported Media Type" error. What gives?!
162
163A: Most likely, you haven't set Content-type equal to "application/json", or one of the
164accepted return formats. You can do this by setting it in your query string thusly:
6df7d0ae 165?content-type=application%2Fjson (where %2F == / uri escaped).
166
167**NOTE** Apache will refuse %2F unless configured otherise.
168Make sure AllowEncodedSlashes On is in your httpd.conf file in order for this to run smoothly.
5d7480da 169
170=cut
171
172=cut
173
174
175
176
2f7533ed 177=head1 MAINTAINER
7328f0ab 178
2f7533ed 179J. Shirley <jshirley@gmail.com>
7328f0ab 180
2f7533ed 181=head1 CONTRIBUTORS
398c5a1b 182
2f7533ed 183Christopher Laco
184
185Luke Saunders
186
187John Goulah
33e5de96 188
189Daisuke Maki <daisuke@endeworks.jp>
190
2f7533ed 191=head1 AUTHOR
192
193Adam Jacob <adam@stalecoffee.org>, with lots of help from mst and jrockway
194
195Marchex, Inc. paid me while I developed this module. (http://www.marchex.com)
196
7328f0ab 197=head1 LICENSE
198
199You may distribute this code under the same terms as Perl itself.
200
201=cut
d34c067a 202