Added some debug logging - From Dave Rolksy
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Action / REST.pm
CommitLineData
256c894f 1#
2# REST.pm
3# Created by: Adam Jacob, Marchex, <adam@marchex.com>
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;
7328f0ab 15use 5.8.1;
256c894f 16
d34c067a 17our
2224bad1 18$VERSION = '0.31';
7328f0ab 19
20=head1 NAME
21
22Catalyst::Action::REST - Automated REST Method Dispatching
23
24=head1 SYNOPSIS
25
5e87ec47 26 sub foo :Local :ActionClass('REST') {
27 ... do setup for HTTP method specific handlers ...
28 }
7328f0ab 29
30 sub foo_GET {
31 ... do something for GET requests ...
32 }
33
34 sub foo_PUT {
35 ... do somethign for PUT requests ...
36 }
37
38=head1 DESCRIPTION
39
40This Action handles doing automatic method dispatching for REST requests. It
41takes a normal Catalyst action, and changes the dispatch to append an
42underscore and method name.
43
44For example, in the synopsis above, calling GET on "/foo" would result in
45the foo_GET method being dispatched.
46
47If a method is requested that is not implemented, this action will
48return a status 405 (Method Not Found). It will populate the "Allow" header
5e87ec47 49with the list of implemented request methods. You can override this behavior
50by implementing a custom 405 handler like so:
51
52 sub foo_not_implemented {
53 ... handle not implemented methods ...
54 }
55
56If you do not provide an _OPTIONS subroutine, we will automatically respond
57with a 200 OK. The "Allow" header will be populated with the list of
58implemented request methods.
7328f0ab 59
5e87ec47 60It is likely that you really want to look at L<Catalyst::Controller::REST>,
61which brings this class together with automatic Serialization of requests
62and responses.
398c5a1b 63
7328f0ab 64=head1 METHODS
65
66=over 4
67
68=item dispatch
69
70This method overrides the default dispatch mechanism to the re-dispatching
71mechanism described above.
72
73=cut
d34c067a 74
256c894f 75sub dispatch {
bb4130f6 76 my $self = shift;
d34c067a 77 my $c = shift;
256c894f 78
79 my $controller = $self->class;
eccb2137 80 my $method = $self->name . "_" . uc( $c->request->method );
81 if ( $controller->can($method) ) {
d34c067a 82 $c->execute( $self->class, $self, @{ $c->req->args } );
83 return $controller->$method( $c, @{ $c->req->args } );
256c894f 84 } else {
d34c067a 85 if ( $c->request->method eq "OPTIONS" ) {
86 return $self->_return_options($c);
87 } else {
88 my $handle_ni = $self->name . "_not_implemented";
89 if ( $controller->can($handle_ni) ) {
90 return $controller->$handle_ni( $c, @{ $c->req->args } );
91 } else {
92 return $self->_return_not_implemented($c);
93 }
94 }
256c894f 95 }
96}
97
d34c067a 98sub _return_options {
99 my ( $self, $c ) = @_;
100
101 my @allowed = $self->_get_allowed_methods($c);
102 $c->response->content_type('text/plain');
103 $c->response->status(200);
104 $c->response->header( 'Allow' => \@allowed );
105}
106
107sub _get_allowed_methods {
7ad87df9 108 my ( $self, $c ) = @_;
109
110 my $controller = $self->class;
eccb2137 111 my $methods = Class::Inspector->methods($controller);
7ad87df9 112 my @allowed;
eccb2137 113 foreach my $method ( @{$methods} ) {
7ad87df9 114 my $name = $self->name;
eccb2137 115 if ( $method =~ /^$name\_(.+)$/ ) {
116 push( @allowed, $1 );
7ad87df9 117 }
118 }
d34c067a 119 return @allowed;
120}
121
122sub _return_not_implemented {
123 my ( $self, $c ) = @_;
124
125 my @allowed = $self->_get_allowed_methods($c);
7ad87df9 126 $c->response->content_type('text/plain');
127 $c->response->status(405);
eccb2137 128 $c->response->header( 'Allow' => \@allowed );
129 $c->response->body( "Method "
130 . $c->request->method
131 . " not implemented for "
132 . $c->uri_for( $self->reverse ) );
7ad87df9 133}
134
256c894f 1351;
7328f0ab 136
137=back
138
139=head1 SEE ALSO
140
141You likely want to look at L<Catalyst::Controller::REST>, which implements
142a sensible set of defaults for a controller doing REST.
143
144L<Catalyst::Action::Serialize>, L<Catalyst::Action::Deserialize>
145
146=head1 AUTHOR
147
148Adam Jacob <adam@stalecoffee.org>, with lots of help from mst and jrockway
149
398c5a1b 150Marchex, Inc. paid me while I developed this module. (http://www.marchex.com)
151
33e5de96 152=head1 CONTRIBUTERS
153
154Daisuke Maki <daisuke@endeworks.jp>
155
7328f0ab 156=head1 LICENSE
157
158You may distribute this code under the same terms as Perl itself.
159
160=cut
d34c067a 161