X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FController%2FREST.pm;h=4c017d8f5ac9f33a5a250f97f6611805376922f9;hb=ab8ab47a739539677817d6a7493b888c7a7815f6;hp=b77eb61431ee4f1fd6eacc0886728be10c93deba;hpb=5cb5f6bb8bd7e95865e8e3eb238b482aa161aa0d;p=catagits%2FCatalyst-Action-REST.git diff --git a/lib/Catalyst/Controller/REST.pm b/lib/Catalyst/Controller/REST.pm index b77eb61..4c017d8 100644 --- a/lib/Catalyst/Controller/REST.pm +++ b/lib/Catalyst/Controller/REST.pm @@ -1,8 +1,8 @@ package Catalyst::Controller::REST; -use strict; -use warnings; +use Moose; +use namespace::autoclean; -our $VERSION = '0.78'; +our $VERSION = '0.85'; $VERSION = eval $VERSION; =head1 NAME @@ -36,8 +36,16 @@ Catalyst::Controller::REST - A RESTful controller # Answer PUT requests to "thing" sub thing_PUT { - ... some action ... - } + $radiohead = $req->data->{radiohead}; + + $self->status_created( + $c, + location => $c->req->uri->as_string, + entity => { + radiohead => $radiohead, + } + ); + } =head1 DESCRIPTION @@ -69,9 +77,11 @@ The serialization format will be selected based on the content-type of the incoming request. It is probably easier to use the L, which are described below. -The HTTP POST, PUT, and OPTIONS methods will all automatically deserialize the -contents of $c->request->body based on the requests content-type header. -A list of understood serialization formats is below. +"The HTTP POST, PUT, and OPTIONS methods will all automatically +L the contents of +C<< $c->request->body >> into the C<< $c->request->data >> hashref", based on +the request's C header. A list of understood serialization +formats is L. If we do not have (or cannot run) a serializer for a given content-type, a 415 "Unsupported Media Type" error is generated. @@ -128,7 +138,7 @@ Returns YAML generated by L. =item * C => C This uses L and L to generate YAML with all URLs turned -to hyperlinks. Only useable for Serialization. +to hyperlinks. Only usable for Serialization. =item * C => C @@ -136,6 +146,15 @@ Uses L to generate JSON output. It is strongly advised to also have L installed. The C content type is supported but is deprecated and you will receive warnings in your log. +=item * C => C + +If a callback=? parameter is passed, this returns javascript in the form of: $callback($serializedJSON); + +Note - this is disabled by default as it can be a security risk if you are unaware. + +The usual MIME types for this serialization format are: 'text/javascript', 'application/x-javascript', +'application/javascript'. + =item * C => C Uses the L module to generate L output. @@ -245,7 +264,7 @@ such require you pass the current context ($c) as the first argument. =cut -use base 'Catalyst::Controller'; +BEGIN { extends 'Catalyst::Controller' } use Params::Validate qw(SCALAR OBJECT); __PACKAGE__->mk_accessors(qw(serialize)); @@ -379,6 +398,36 @@ sub status_no_content { return 1.; } +=item status_multiple_choices + +Returns a "300 MULTIPLE CHOICES" response. Takes an "entity" to serialize, which should +provide list of possible locations. Also takes optional "location" for preferred choice. + +=cut + +sub status_multiple_choices { + my $self = shift; + my $c = shift; + my %p = Params::Validate::validate( + @_, + { + entity => 1, + location => { type => SCALAR | OBJECT, optional => 1 }, + }, + ); + + my $location; + if ( ref( $p{'location'} ) ) { + $location = $p{'location'}->as_string; + } else { + $location = $p{'location'}; + } + $c->response->status(300); + $c->response->header( 'Location' => $location ) if exists $p{'location'}; + $self->_set_entity( $c, $p{'entity'} ); + return 1; +} + =item status_bad_request Returns a "400 BAD REQUEST" response. Takes a "message" argument @@ -512,8 +561,11 @@ method uses L. If you want to override either behavior, simply implement your own C and C actions and use MRO::Compat: - my Foo::Controller::Monkey; - use base qw(Catalyst::Controller::REST); + package Foo::Controller::Monkey; + use Moose; + use namespace::autoclean; + + BEGIN { extends 'Catalyst::Controller::REST' } sub begin :Private { my ($self, $c) = @_; @@ -535,7 +587,7 @@ and use MRO::Compat: I have code in production using L. That said, it is still under development, and it's possible that things may change -between releases. I promise to not break things unneccesarily. :) +between releases. I promise to not break things unnecessarily. :) =head1 SEE ALSO