Bump versions, use eval trick with version numbers to support dev releases etc
[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
398c5a1b 335=item status_bad_request
336
337Returns a "400 BAD REQUEST" response. Takes a "message" argument
338as a scalar, which will become the value of "error" in the serialized
339response.
340
341Example:
342
343 $self->status_bad_request(
db8bb647 344 $c,
33e5de96 345 message => "Cannot do what you have asked!",
398c5a1b 346 );
347
348=cut
e601adda 349
cc186a5b 350sub status_bad_request {
351 my $self = shift;
e601adda 352 my $c = shift;
d4611771 353 my %p = Params::Validate::validate( @_, { message => { type => SCALAR }, }, );
cc186a5b 354
355 $c->response->status(400);
faf5c20b 356 $c->log->debug( "Status Bad Request: " . $p{'message'} ) if $c->debug;
e601adda 357 $self->_set_entity( $c, { error => $p{'message'} } );
cc186a5b 358 return 1;
359}
360
398c5a1b 361=item status_not_found
362
363Returns a "404 NOT FOUND" response. Takes a "message" argument
364as a scalar, which will become the value of "error" in the serialized
365response.
366
367Example:
368
369 $self->status_not_found(
db8bb647 370 $c,
33e5de96 371 message => "Cannot find what you were looking for!",
398c5a1b 372 );
373
374=cut
e601adda 375
bb4130f6 376sub status_not_found {
377 my $self = shift;
e601adda 378 my $c = shift;
d4611771 379 my %p = Params::Validate::validate( @_, { message => { type => SCALAR }, }, );
bb4130f6 380
381 $c->response->status(404);
faf5c20b 382 $c->log->debug( "Status Not Found: " . $p{'message'} ) if $c->debug;
e601adda 383 $self->_set_entity( $c, { error => $p{'message'} } );
bb4130f6 384 return 1;
385}
386
387sub _set_entity {
e601adda 388 my $self = shift;
389 my $c = shift;
bb4130f6 390 my $entity = shift;
e601adda 391 if ( defined($entity) ) {
faf5c20b 392 $c->stash->{ $self->{'stash_key'} } = $entity;
5511d1ff 393 }
394 return 1;
eccb2137 395}
256c894f 396
398c5a1b 397=back
398
399=head1 MANUAL RESPONSES
400
401If you want to construct your responses yourself, all you need to
402do is put the object you want serialized in $c->stash->{'rest'}.
403
e601adda 404=head1 IMPLEMENTATION DETAILS
405
406This Controller ties together L<Catalyst::Action::REST>,
407L<Catalyst::Action::Serialize> and L<Catalyst::Action::Deserialize>. It should be suitable for most applications. You should be aware that it:
408
409=over 4
410
411=item Configures the Serialization Actions
412
413This class provides a default configuration for Serialization. It is currently:
414
415 __PACKAGE__->config(
416 serialize => {
417 'stash_key' => 'rest',
418 'map' => {
419 'text/html' => 'YAML::HTML',
420 'text/xml' => 'XML::Simple',
421 'text/x-yaml' => 'YAML',
d6fb033c 422 'application/json' => 'JSON',
e601adda 423 'text/x-json' => 'JSON',
424 'text/x-data-dumper' => [ 'Data::Serializer', 'Data::Dumper' ],
425 'text/x-data-denter' => [ 'Data::Serializer', 'Data::Denter' ],
426 'text/x-data-taxi' => [ 'Data::Serializer', 'Data::Taxi' ],
db8bb647 427 'application/x-storable' => [ 'Data::Serializer', 'Storable'
e601adda 428],
db8bb647 429 'application/x-freezethaw' => [ 'Data::Serializer', 'FreezeThaw'
e601adda 430],
431 'text/x-config-general' => [ 'Data::Serializer', 'Config::General' ]
432,
9a76221e 433 'text/x-php-serialization' => [ 'Data::Serializer', 'PHP::Serialization' ],
e601adda 434 },
435 }
436 );
437
438You can read the full set of options for this configuration block in
439L<Catalyst::Action::Serialize>.
440
441=item Sets a C<begin> and C<end> method for you
442
443The C<begin> method uses L<Catalyst::Action::Deserialize>. The C<end>
444method uses L<Catalyst::Action::Serialize>. If you want to override
445either behavior, simply implement your own C<begin> and C<end> actions
def65dcc 446and use MRO::Compat:
e601adda 447
448 my Foo::Controller::Monkey;
449 use base qw(Catalyst::Controller::REST);
450
451 sub begin :Private {
452 my ($self, $c) = @_;
db8bb647 453 ... do things before Deserializing ...
454 $self->maybe::next::method($c);
e601adda 455 ... do things after Deserializing ...
db8bb647 456 }
e601adda 457
458 sub end :Private {
459 my ($self, $c) = @_;
db8bb647 460 ... do things before Serializing ...
def65dcc 461 $self->maybe::next::method($c);
e601adda 462 ... do things after Serializing ...
463 }
464
e540a1fa 465=back
466
e601adda 467=head1 A MILD WARNING
468
469I have code in production using L<Catalyst::Controller::REST>. That said,
470it is still under development, and it's possible that things may change
471between releases. I promise to not break things unneccesarily. :)
472
398c5a1b 473=head1 SEE ALSO
474
475L<Catalyst::Action::REST>, L<Catalyst::Action::Serialize>,
476L<Catalyst::Action::Deserialize>
477
478For help with REST in general:
479
480The HTTP 1.1 Spec is required reading. http://www.w3.org/Protocols/rfc2616/rfc2616.txt
481
482Wikipedia! http://en.wikipedia.org/wiki/Representational_State_Transfer
483
484The REST Wiki: http://rest.blueoxen.net/cgi-bin/wiki.pl?FrontPage
485
486=head1 AUTHOR
487
488Adam Jacob <adam@stalecoffee.org>, with lots of help from mst and jrockway
489
490Marchex, Inc. paid me while I developed this module. (http://www.marchex.com)
491
e540a1fa 492=head1 MAINTAINER
493
494J. Shirley <jshirley@cpan.org>
495
398c5a1b 496=head1 LICENSE
497
498You may distribute this code under the same terms as Perl itself.
499
500=cut
501
256c894f 5021;