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