Add POD escapes for < and >
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Action / REST.pm
CommitLineData
256c894f 1package Catalyst::Action::REST;
2
930013e6 3use Moose;
4use namespace::autoclean;
256c894f 5
930013e6 6extends 'Catalyst::Action';
7ad87df9 7use Class::Inspector;
9a76221e 8use Catalyst::Request::REST;
ebba5325 9use Catalyst::Controller::REST;
10
9c5c9bd1 11BEGIN { require 5.008001; }
256c894f 12
732d8f5f 13our $VERSION = '0.81';
a66af307 14$VERSION = eval $VERSION;
9a76221e 15
5132f5e4 16sub new {
17 my $class = shift;
18 my $config = shift;
37694e6c 19 Catalyst::Request::REST->_insert_self_into( $config->{class} );
e34b463b 20 return $class->next::method($config, @_);
5132f5e4 21}
7328f0ab 22
23=head1 NAME
24
25Catalyst::Action::REST - Automated REST Method Dispatching
26
27=head1 SYNOPSIS
28
5e87ec47 29 sub foo :Local :ActionClass('REST') {
30 ... do setup for HTTP method specific handlers ...
31 }
7328f0ab 32
44d48631 33 sub foo_GET {
7328f0ab 34 ... do something for GET requests ...
35 }
36
4ee24376 37 # alternatively use an Action
e51849a0 38 sub foo_PUT : Action {
4ee24376 39 ... do something for PUT requests ...
7328f0ab 40 }
41
42=head1 DESCRIPTION
43
44This Action handles doing automatic method dispatching for REST requests. It
45takes a normal Catalyst action, and changes the dispatch to append an
4ee24376 46underscore and method name. First it will try dispatching to an action with
47the generated name, and failing that it will try to dispatch to a regular
48method.
7328f0ab 49
50For example, in the synopsis above, calling GET on "/foo" would result in
51the foo_GET method being dispatched.
52
44d48631 53If a method is requested that is not implemented, this action will
54return a status 405 (Method Not Found). It will populate the "Allow" header
5e87ec47 55with the list of implemented request methods. You can override this behavior
56by implementing a custom 405 handler like so:
57
58 sub foo_not_implemented {
59 ... handle not implemented methods ...
60 }
61
62If you do not provide an _OPTIONS subroutine, we will automatically respond
63with a 200 OK. The "Allow" header will be populated with the list of
64implemented request methods.
7328f0ab 65
5e87ec47 66It is likely that you really want to look at L<Catalyst::Controller::REST>,
67which brings this class together with automatic Serialization of requests
68and responses.
398c5a1b 69
85aa4e18 70When you use this module, it adds the L<Catalyst::TraitFor::Request::REST>
71role to your request class.
9a76221e 72
7328f0ab 73=head1 METHODS
74
75=over 4
76
77=item dispatch
78
79This method overrides the default dispatch mechanism to the re-dispatching
80mechanism described above.
81
82=cut
d34c067a 83
256c894f 84sub dispatch {
bb4130f6 85 my $self = shift;
d34c067a 86 my $c = shift;
256c894f 87
2f91bf68 88 my $controller = $c->component( $self->class );
3faede66 89 my $rest_method = $self->name . "_" . uc( $c->request->method );
679978b1 90
3faede66 91 my ($code, $name);
679978b1 92
3faede66 93 # Common case, for foo_GET etc
7656dd12 94 if ( $code = $controller->action_for($rest_method) ) {
95 $c->execute( $self->class, $self, @{ $c->req->args } );
96 return $c->forward( $code, $c->req->args );
5a173b14 97 } elsif ($code = $controller->can($rest_method)) {
3faede66 98 # Exceute normal action
d34c067a 99 $c->execute( $self->class, $self, @{ $c->req->args } );
3faede66 100 $name = $rest_method;
256c894f 101 }
256c894f 102
3faede66 103 # Generic handling for foo_OPTIONS
104 if (!$code && $c->request->method eq "OPTIONS") {
105 $name = $rest_method;
106 $code = sub { $self->_return_options($self->name, @_) };
107 }
d34c067a 108
3faede66 109 # Otherwise, not implemented.
110 if (!$code) {
111 $name = $self->name . "_not_implemented";
112 $code = $controller->can($name) # User method
113 # Generic not implemented
114 || sub { $self->_return_not_implemented($self->name, @_) };
679978b1 115 }
256c894f 116
3faede66 117 # localise stuff so we can dispatch the action 'as normal, but get
118 # different stats shown, and different code run.
119 local $self->{code} = $code;
120 local $self->{reverse} = $name;
d34c067a 121
679978b1 122 $c->execute( $self->class, $self, @{ $c->req->args } );
d34c067a 123}
124
125sub _get_allowed_methods {
d2d93101 126 my ( $self, $controller, $c, $name ) = @_;
679978b1 127 my $class = ref($controller) ? ref($controller) : $controller;
846b6b07 128 my $methods = Class::Inspector->methods($class);
129 return map { /^$name\_(.+)$/ } @$methods;
679978b1 130};
131
132sub _return_options {
3faede66 133 my ( $self, $method_name, $controller, $c) = @_;
d2d93101 134 my @allowed = $self->_get_allowed_methods($controller, $c, $method_name);
679978b1 135 $c->response->content_type('text/plain');
136 $c->response->status(200);
137 $c->response->header( 'Allow' => \@allowed );
d34c067a 138}
139
140sub _return_not_implemented {
3faede66 141 my ( $self, $method_name, $controller, $c ) = @_;
d34c067a 142
d2d93101 143 my @allowed = $self->_get_allowed_methods($controller, $c, $method_name);
7ad87df9 144 $c->response->content_type('text/plain');
145 $c->response->status(405);
eccb2137 146 $c->response->header( 'Allow' => \@allowed );
147 $c->response->body( "Method "
148 . $c->request->method
149 . " not implemented for "
679978b1 150 . $c->uri_for( $method_name ) );
7ad87df9 151}
152
256c894f 1531;
7328f0ab 154
155=back
156
157=head1 SEE ALSO
158
85aa4e18 159You likely want to look at L<Catalyst::Controller::REST>, which implements a
160sensible set of defaults for a controller doing REST.
161
162This class automatically adds the L<Catalyst::TraitFor::Request::REST> role to
163your request class. If you're writing a webapp which provides RESTful
d6ece98c 164responses and still needs to accommodate web browsers, you may prefer to use
85aa4e18 165L<Catalyst::TraitFor::Request::REST::ForBrowsers> instead.
7328f0ab 166
167L<Catalyst::Action::Serialize>, L<Catalyst::Action::Deserialize>
168
5d7480da 169=head1 TROUBLESHOOTING
170
171=over 4
172
173=item Q: I'm getting a "415 Unsupported Media Type" error. What gives?!
174
69ad525b 175A: Most likely, you haven't set Content-type equal to "application/json", or
176one of the accepted return formats. You can do this by setting it in your query
177accepted return formats. You can do this by setting it in your query string
178thusly: C<< ?content-type=application%2Fjson (where %2F == / uri escaped). >>
5d7480da 179
10bcd217 180B<NOTE> Apache will refuse %2F unless configured otherwise.
181Make sure C<AllowEncodedSlashes On> is in your httpd.conf file in order
69ad525b 182for this to run smoothly.
5d7480da 183
69ad525b 184=back
7328f0ab 185
5cb5f6bb 186=head1 AUTHOR
187
410b24f8 188Adam Jacob E<lt>adam@stalecoffee.orgE<gt>, with lots of help from mst and jrockway
5cb5f6bb 189
190Marchex, Inc. paid me while I developed this module. (L<http://www.marchex.com>)
191
2f7533ed 192=head1 CONTRIBUTORS
398c5a1b 193
410b24f8 194Arthur Axel "fREW" Schmidt E<lt>frioux@gmail.comE<gt>
4ee24376 195
2f7533ed 196Christopher Laco
197
198Luke Saunders
199
200John Goulah
33e5de96 201
410b24f8 202Daisuke Maki E<lt>daisuke@endeworks.jpE<gt>
33e5de96 203
410b24f8 204J. Shirley E<lt>jshirley@gmail.comE<gt>
97b3cf7c 205
7580fa2b 206Hans Dieter Pearcey
207
410b24f8 208Tomas Doran (t0m) E<lt>bobtfish@bobtfish.netE<gt>
97b3cf7c 209
410b24f8 210Dave Rolsky E<lt>autarch@urth.orgE<gt>
76a96edc 211
5cb5f6bb 212=head1 COPYRIGHT
2f7533ed 213
5cb5f6bb 214Copyright the above named AUTHOR and CONTRIBUTORS
2f7533ed 215
7328f0ab 216=head1 LICENSE
217
218You may distribute this code under the same terms as Perl itself.
219
220=cut
d34c067a 221