X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FAction%2FREST.pm;h=bc715f638868301ca0c4abc6221d729282587bb9;hb=e566b7c797b76740ac385886bd717c5c82caea77;hp=04454223f1de990aec7730b197bae58c7c99420c;hpb=3c4306f26628d82044c933aa391c346440fdfcdf;p=catagits%2FCatalyst-Action-REST.git diff --git a/lib/Catalyst/Action/REST.pm b/lib/Catalyst/Action/REST.pm index 0445422..bc715f6 100644 --- a/lib/Catalyst/Action/REST.pm +++ b/lib/Catalyst/Action/REST.pm @@ -10,7 +10,7 @@ use Catalyst::Controller::REST; BEGIN { require 5.008001; } -our $VERSION = '1.01'; +our $VERSION = '1.02'; $VERSION = eval $VERSION; sub BUILDARGS { @@ -94,35 +94,45 @@ sub _dispatch_rest_method { my $self = shift; my $c = shift; my $rest_method = shift; + my $req = $c->request; my $controller = $c->component( $self->class ); my ($code, $name); # Execute normal 'foo' action. - $c->execute( $self->class, $self, @{ $c->req->args } ); + $c->execute( $self->class, $self, @{ $req->args } ); # Common case, for foo_GET etc if ( $code = $controller->action_for($rest_method) ) { - return $c->forward( $code, $c->req->args ); # Forward to foo_GET if it's an action + return $c->forward( $code, $req->args ); # Forward to foo_GET if it's an action } elsif ($code = $controller->can($rest_method)) { $name = $rest_method; # Stash name and code to run 'foo_GET' like an action below. } - # Generic handling for foo_OPTIONS + # Generic handling for foo_* if (!$code) { - if ( $c->request->method eq "OPTIONS") { - $name = $rest_method; - $code = sub { $self->_return_options($self->name, @_) }; - } - else { - # Otherwise, not implemented. - $name = $self->name . "_not_implemented"; - $code = $controller->can($name) # User method - # Generic not implemented - || sub { $self->_return_not_implemented($self->name, @_) }; - } + my $code_action = { + OPTIONS => sub { + $name = $rest_method; + $code = sub { $self->_return_options($self->name, @_) }; + }, + HEAD => sub { + $rest_method =~ s{_HEAD$}{_GET}i; + $self->_dispatch_rest_method($c, $rest_method); + }, + default => sub { + # Otherwise, not implemented. + $name = $self->name . "_not_implemented"; + $code = $controller->can($name) # User method + # Generic not implemented + || sub { $self->_return_not_implemented($self->name, @_) }; + }, + }; + my $respond = ($code_action->{$req->method} + || $code_action->{'default'})->(); + return $respond unless $name; } # localise stuff so we can dispatch the action 'as normal, but get @@ -133,7 +143,7 @@ sub _dispatch_rest_method { $name[-1] = $name; local $self->{reverse} = "-> " . join('/', @name); - $c->execute( $self->class, $self, @{ $c->req->args } ); + $c->execute( $self->class, $self, @{ $req->args } ); } sub _get_allowed_methods {