add status for no content and gone
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Controller / REST.pm
CommitLineData
256c894f 1package Catalyst::Controller::REST;
a66af307 2use strict;
3use warnings;
256c894f 4
a66af307 5our $VERSION = '0.75';
6$VERSION = eval $VERSION;
832e768d 7
398c5a1b 8=head1 NAME
9
db8bb647 10Catalyst::Controller::REST - A RESTful controller
398c5a1b 11
12=head1 SYNOPSIS
13
14 package Foo::Controller::Bar;
15
16 use base 'Catalyst::Controller::REST';
17
18 sub thing : Local : ActionClass('REST') { }
19
20 # Answer GET requests to "thing"
21 sub thing_GET {
22 my ( $self, $c ) = @_;
db8bb647 23
398c5a1b 24 # Return a 200 OK, with the data in entity
db8bb647 25 # serialized in the body
398c5a1b 26 $self->status_ok(
db8bb647 27 $c,
398c5a1b 28 entity => {
29 some => 'data',
30 foo => 'is real bar-y',
31 },
32 );
33 }
34
35 # Answer PUT requests to "thing"
db8bb647 36 sub thing_PUT {
398c5a1b 37 .. some action ..
38 }
39
40=head1 DESCRIPTION
41
42Catalyst::Controller::REST implements a mechanism for building
43RESTful services in Catalyst. It does this by extending the
db8bb647 44normal Catalyst dispatch mechanism to allow for different
45subroutines to be called based on the HTTP Method requested,
398c5a1b 46while also transparently handling all the serialization/deserialization for
47you.
48
49This is probably best served by an example. In the above
50controller, we have declared a Local Catalyst action on
db8bb647 51"sub thing", and have used the ActionClass('REST').
398c5a1b 52
53Below, we have declared "thing_GET" and "thing_PUT". Any
db8bb647 54GET requests to thing will be dispatched to "thing_GET",
55while any PUT requests will be dispatched to "thing_PUT".
398c5a1b 56
e601adda 57Any unimplemented HTTP methods will be met with a "405 Method Not Allowed"
58response, automatically containing the proper list of available methods. You
59can override this behavior through implementing a custom
db8bb647 60C<thing_not_implemented> method.
e601adda 61
62If you do not provide an OPTIONS handler, we will respond to any OPTIONS
63requests with a "200 OK", populating the Allowed header automatically.
64
65Any data included in C<< $c->stash->{'rest'} >> will be serialized for you.
66The serialization format will be selected based on the content-type
67of the incoming request. It is probably easier to use the L<STATUS HELPERS>,
68which are described below.
398c5a1b 69
70The HTTP POST, PUT, and OPTIONS methods will all automatically deserialize the
71contents of $c->request->body based on the requests content-type header.
72A list of understood serialization formats is below.
73
e601adda 74If we do not have (or cannot run) a serializer for a given content-type, a 415
db8bb647 75"Unsupported Media Type" error is generated.
398c5a1b 76
77To make your Controller RESTful, simply have it
78
db8bb647 79 use base 'Catalyst::Controller::REST';
398c5a1b 80
81=head1 SERIALIZATION
82
83Catalyst::Controller::REST will automatically serialize your
e601adda 84responses, and deserialize any POST, PUT or OPTIONS requests. It evaluates
85which serializer to use by mapping a content-type to a Serialization module.
db8bb647 86We select the content-type based on:
e601adda 87
88=over 2
89
90=item B<The Content-Type Header>
91
92If the incoming HTTP Request had a Content-Type header set, we will use it.
93
94=item B<The content-type Query Parameter>
95
96If this is a GET request, you can supply a content-type query parameter.
97
98=item B<Evaluating the Accept Header>
99
100Finally, if the client provided an Accept header, we will evaluate
db8bb647 101it and use the best-ranked choice.
e601adda 102
103=back
104
105=head1 AVAILABLE SERIALIZERS
106
107A given serialization mechanism is only available if you have the underlying
108modules installed. For example, you can't use XML::Simple if it's not already
db8bb647 109installed.
e601adda 110
111In addition, each serializer has it's quirks in terms of what sorts of data
112structures it will properly handle. L<Catalyst::Controller::REST> makes
db8bb647 113no attempt to save you from yourself in this regard. :)
e601adda 114
115=over 2
116
117=item C<text/x-yaml> => C<YAML::Syck>
118
119Returns YAML generated by L<YAML::Syck>.
120
121=item C<text/html> => C<YAML::HTML>
122
123This uses L<YAML::Syck> and L<URI::Find> to generate YAML with all URLs turned
124to hyperlinks. Only useable for Serialization.
125
e540a1fa 126=item C<application/json> => C<JSON>
e601adda 127
db8bb647 128Uses L<JSON> to generate JSON output. It is strongly advised to also have
e540a1fa 129L<JSON::XS> installed. The C<text/x-json> content type is supported but is
130deprecated and you will receive warnings in your log.
e601adda 131
132=item C<text/x-data-dumper> => C<Data::Serializer>
133
134Uses the L<Data::Serializer> module to generate L<Data::Dumper> output.
135
136=item C<text/x-data-denter> => C<Data::Serializer>
137
138Uses the L<Data::Serializer> module to generate L<Data::Denter> output.
139
140=item C<text/x-data-taxi> => C<Data::Serializer>
141
142Uses the L<Data::Serializer> module to generate L<Data::Taxi> output.
143
144=item C<application/x-storable> => C<Data::Serializer>
145
146Uses the L<Data::Serializer> module to generate L<Storable> output.
147
148=item C<application/x-freezethaw> => C<Data::Serializer>
149
150Uses the L<Data::Serializer> module to generate L<FreezeThaw> output.
151
152=item C<text/x-config-general> => C<Data::Serializer>
153
154Uses the L<Data::Serializer> module to generate L<Config::General> output.
155
156=item C<text/x-php-serialization> => C<Data::Serializer>
157
158Uses the L<Data::Serializer> module to generate L<PHP::Serialization> output.
159
160=item C<text/xml> => C<XML::Simple>
161
162Uses L<XML::Simple> to generate XML output. This is probably not suitable
163for any real heavy XML work. Due to L<XML::Simple>s requirement that the data
164you serialize be a HASHREF, we transform outgoing data to be in the form of:
165
166 { data => $yourdata }
167
9a76221e 168=item L<View>
169
db8bb647 170Uses a regular Catalyst view. For example, if you wanted to have your
9a76221e 171C<text/html> and C<text/xml> views rendered by TT:
172
21d3f6ae 173 'text/html' => [ 'View', 'TT' ],
174 'text/xml' => [ 'View', 'XML' ],
db8bb647 175
176Will do the trick nicely.
9a76221e 177
e601adda 178=back
179
367b3ff4 180By default, L<Catalyst::Controller::REST> will return a C<415 Unsupported Media Type>
181response if an attempt to use an unsupported content-type is made. You
182can ensure that something is always returned by setting the C<default>
183config option:
398c5a1b 184
21d3f6ae 185 __PACKAGE__->config->{'default'} = 'text/x-yaml';
398c5a1b 186
367b3ff4 187Would make it always fall back to the serializer plugin defined for text/x-yaml.
398c5a1b 188
189Implementing new Serialization formats is easy! Contributions
190are most welcome! See L<Catalyst::Action::Serialize> and
191L<Catalyst::Action::Deserialize> for more information.
192
e601adda 193=head1 CUSTOM SERIALIZERS
194
195If you would like to implement a custom serializer, you should create two new
196modules in the L<Catalyst::Action::Serialize> and
197L<Catalyst::Action::Deserialize> namespace. Then assign your new class
198to the content-type's you want, and you're done.
199
398c5a1b 200=head1 STATUS HELPERS
201
e601adda 202Since so much of REST is in using HTTP, we provide these Status Helpers.
203Using them will ensure that you are responding with the proper codes,
204headers, and entities.
205
398c5a1b 206These helpers try and conform to the HTTP 1.1 Specification. You can
db8bb647 207refer to it at: L<http://www.w3.org/Protocols/rfc2616/rfc2616.txt>.
398c5a1b 208These routines are all implemented as regular subroutines, and as
209such require you pass the current context ($c) as the first argument.
210
211=over 4
212
213=cut
214
256c894f 215use base 'Catalyst::Controller';
d4611771 216use Params::Validate qw(SCALAR OBJECT);
256c894f 217
218__PACKAGE__->mk_accessors(qw(serialize));
219
220__PACKAGE__->config(
e540a1fa 221 'stash_key' => 'rest',
222 'map' => {
223 'text/html' => 'YAML::HTML',
224 'text/xml' => 'XML::Simple',
225 'text/x-yaml' => 'YAML',
226 'application/json' => 'JSON',
227 'text/x-json' => 'JSON',
228 'text/x-data-dumper' => [ 'Data::Serializer', 'Data::Dumper' ],
229 'text/x-data-denter' => [ 'Data::Serializer', 'Data::Denter' ],
230 'text/x-data-taxi' => [ 'Data::Serializer', 'Data::Taxi' ],
231 'application/x-storable' => [ 'Data::Serializer', 'Storable' ],
232 'application/x-freezethaw' => [ 'Data::Serializer', 'FreezeThaw' ],
233 'text/x-config-general' => [ 'Data::Serializer', 'Config::General' ],
234 'text/x-php-serialization' => [ 'Data::Serializer', 'PHP::Serialization' ],
235 },
256c894f 236);
237
e540a1fa 238sub begin : ActionClass('Deserialize') { }
5511d1ff 239
0ba73721 240sub end : ActionClass('Serialize') { }
241
398c5a1b 242=item status_ok
243
244Returns a "200 OK" response. Takes an "entity" to serialize.
245
246Example:
247
248 $self->status_ok(
db8bb647 249 $c,
398c5a1b 250 entity => {
251 radiohead => "Is a good band!",
252 }
253 );
254
255=cut
256
257sub status_ok {
258 my $self = shift;
e601adda 259 my $c = shift;
d4611771 260 my %p = Params::Validate::validate( @_, { entity => 1, }, );
398c5a1b 261
262 $c->response->status(200);
e601adda 263 $self->_set_entity( $c, $p{'entity'} );
398c5a1b 264 return 1;
265}
266
267=item status_created
268
269Returns a "201 CREATED" response. Takes an "entity" to serialize,
270and a "location" where the created object can be found.
271
272Example:
273
274 $self->status_created(
db8bb647 275 $c,
398c5a1b 276 location => $c->req->uri->as_string,
277 entity => {
278 radiohead => "Is a good band!",
279 }
280 );
281
282In the above example, we use the requested URI as our location.
283This is probably what you want for most PUT requests.
284
285=cut
bb4130f6 286
5511d1ff 287sub status_created {
288 my $self = shift;
e601adda 289 my $c = shift;
d4611771 290 my %p = Params::Validate::validate(
e601adda 291 @_,
5511d1ff 292 {
e601adda 293 location => { type => SCALAR | OBJECT },
294 entity => { optional => 1 },
5511d1ff 295 },
296 );
256c894f 297
5511d1ff 298 my $location;
e601adda 299 if ( ref( $p{'location'} ) ) {
5511d1ff 300 $location = $p{'location'}->as_string;
33e5de96 301 } else {
302 $location = $p{'location'};
5511d1ff 303 }
304 $c->response->status(201);
e601adda 305 $c->response->header( 'Location' => $location );
306 $self->_set_entity( $c, $p{'entity'} );
bb4130f6 307 return 1;
308}
309
398c5a1b 310=item status_accepted
311
312Returns a "202 ACCEPTED" response. Takes an "entity" to serialize.
313
314Example:
315
316 $self->status_accepted(
db8bb647 317 $c,
398c5a1b 318 entity => {
319 status => "queued",
320 }
321 );
322
323=cut
e601adda 324
398c5a1b 325sub status_accepted {
bb4130f6 326 my $self = shift;
e601adda 327 my $c = shift;
d4611771 328 my %p = Params::Validate::validate( @_, { entity => 1, }, );
bb4130f6 329
398c5a1b 330 $c->response->status(202);
e601adda 331 $self->_set_entity( $c, $p{'entity'} );
bb4130f6 332 return 1;
333}
334
bbf0feae 335=item status_no_content
336
337Returns a "204 NO CONTENT" response.
338
339=cut
340
341sub status_no_content {
342 my $self = shift;
343 my $c = shift;
344 $c->response->status(204);
345 $self->_set_entity( $c, undef );
346 return 1.;
347}
348
398c5a1b 349=item status_bad_request
350
351Returns a "400 BAD REQUEST" response. Takes a "message" argument
352as a scalar, which will become the value of "error" in the serialized
353response.
354
355Example:
356
357 $self->status_bad_request(
db8bb647 358 $c,
33e5de96 359 message => "Cannot do what you have asked!",
398c5a1b 360 );
361
362=cut
e601adda 363
cc186a5b 364sub status_bad_request {
365 my $self = shift;
e601adda 366 my $c = shift;
d4611771 367 my %p = Params::Validate::validate( @_, { message => { type => SCALAR }, }, );
cc186a5b 368
369 $c->response->status(400);
faf5c20b 370 $c->log->debug( "Status Bad Request: " . $p{'message'} ) if $c->debug;
e601adda 371 $self->_set_entity( $c, { error => $p{'message'} } );
cc186a5b 372 return 1;
373}
374
398c5a1b 375=item status_not_found
376
377Returns a "404 NOT FOUND" response. Takes a "message" argument
378as a scalar, which will become the value of "error" in the serialized
379response.
380
381Example:
382
383 $self->status_not_found(
db8bb647 384 $c,
33e5de96 385 message => "Cannot find what you were looking for!",
398c5a1b 386 );
387
388=cut
e601adda 389
bb4130f6 390sub status_not_found {
391 my $self = shift;
e601adda 392 my $c = shift;
d4611771 393 my %p = Params::Validate::validate( @_, { message => { type => SCALAR }, }, );
bb4130f6 394
395 $c->response->status(404);
faf5c20b 396 $c->log->debug( "Status Not Found: " . $p{'message'} ) if $c->debug;
e601adda 397 $self->_set_entity( $c, { error => $p{'message'} } );
bb4130f6 398 return 1;
399}
400
bbf0feae 401=item gone
402
403Returns a "41O GONE" response. Takes a "message" argument as a scalar,
404which will become the value of "error" in the serialized response.
405
406Example:
407
408 $self->status_gone(
409 $c,
410 message => "The document have been deleted by foo",
411 );
412
413=cut
414
415sub status_gone {
416 my $self = shift;
417 my $c = shift;
418 my %p = Params::Validate::validate( @_, { message => { type => SCALAR }, }, );
419
420 $c->response->status(410);
421 $c->log->debug( "Status Gone " . $p{'message'} ) if $c->debug;
422 $self->_set_entity( $c, { error => $p{'message'} } );
423 return 1;
424}
425
bb4130f6 426sub _set_entity {
e601adda 427 my $self = shift;
428 my $c = shift;
bb4130f6 429 my $entity = shift;
e601adda 430 if ( defined($entity) ) {
faf5c20b 431 $c->stash->{ $self->{'stash_key'} } = $entity;
5511d1ff 432 }
433 return 1;
eccb2137 434}
256c894f 435
398c5a1b 436=back
437
438=head1 MANUAL RESPONSES
439
440If you want to construct your responses yourself, all you need to
441do is put the object you want serialized in $c->stash->{'rest'}.
442
e601adda 443=head1 IMPLEMENTATION DETAILS
444
445This Controller ties together L<Catalyst::Action::REST>,
446L<Catalyst::Action::Serialize> and L<Catalyst::Action::Deserialize>. It should be suitable for most applications. You should be aware that it:
447
448=over 4
449
450=item Configures the Serialization Actions
451
452This class provides a default configuration for Serialization. It is currently:
453
454 __PACKAGE__->config(
455 serialize => {
456 'stash_key' => 'rest',
457 'map' => {
458 'text/html' => 'YAML::HTML',
459 'text/xml' => 'XML::Simple',
460 'text/x-yaml' => 'YAML',
d6fb033c 461 'application/json' => 'JSON',
e601adda 462 'text/x-json' => 'JSON',
463 'text/x-data-dumper' => [ 'Data::Serializer', 'Data::Dumper' ],
464 'text/x-data-denter' => [ 'Data::Serializer', 'Data::Denter' ],
465 'text/x-data-taxi' => [ 'Data::Serializer', 'Data::Taxi' ],
db8bb647 466 'application/x-storable' => [ 'Data::Serializer', 'Storable'
e601adda 467],
db8bb647 468 'application/x-freezethaw' => [ 'Data::Serializer', 'FreezeThaw'
e601adda 469],
470 'text/x-config-general' => [ 'Data::Serializer', 'Config::General' ]
471,
9a76221e 472 'text/x-php-serialization' => [ 'Data::Serializer', 'PHP::Serialization' ],
e601adda 473 },
474 }
475 );
476
477You can read the full set of options for this configuration block in
478L<Catalyst::Action::Serialize>.
479
480=item Sets a C<begin> and C<end> method for you
481
482The C<begin> method uses L<Catalyst::Action::Deserialize>. The C<end>
483method uses L<Catalyst::Action::Serialize>. If you want to override
484either behavior, simply implement your own C<begin> and C<end> actions
def65dcc 485and use MRO::Compat:
e601adda 486
487 my Foo::Controller::Monkey;
488 use base qw(Catalyst::Controller::REST);
489
490 sub begin :Private {
491 my ($self, $c) = @_;
db8bb647 492 ... do things before Deserializing ...
493 $self->maybe::next::method($c);
e601adda 494 ... do things after Deserializing ...
db8bb647 495 }
e601adda 496
497 sub end :Private {
498 my ($self, $c) = @_;
db8bb647 499 ... do things before Serializing ...
def65dcc 500 $self->maybe::next::method($c);
e601adda 501 ... do things after Serializing ...
502 }
503
e540a1fa 504=back
505
e601adda 506=head1 A MILD WARNING
507
508I have code in production using L<Catalyst::Controller::REST>. That said,
509it is still under development, and it's possible that things may change
510between releases. I promise to not break things unneccesarily. :)
511
398c5a1b 512=head1 SEE ALSO
513
514L<Catalyst::Action::REST>, L<Catalyst::Action::Serialize>,
515L<Catalyst::Action::Deserialize>
516
517For help with REST in general:
518
519The HTTP 1.1 Spec is required reading. http://www.w3.org/Protocols/rfc2616/rfc2616.txt
520
521Wikipedia! http://en.wikipedia.org/wiki/Representational_State_Transfer
522
523The REST Wiki: http://rest.blueoxen.net/cgi-bin/wiki.pl?FrontPage
524
525=head1 AUTHOR
526
527Adam Jacob <adam@stalecoffee.org>, with lots of help from mst and jrockway
528
529Marchex, Inc. paid me while I developed this module. (http://www.marchex.com)
530
e540a1fa 531=head1 MAINTAINER
532
533J. Shirley <jshirley@cpan.org>
534
398c5a1b 535=head1 LICENSE
536
537You may distribute this code under the same terms as Perl itself.
538
539=cut
540
256c894f 5411;