7dfe1e8db70f54e3cc20f3664e69c790937df9a9
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Action / SerializeBase.pm
1 #
2 # Catlyst::Action::SerializeBase.pm
3 # Created by: Adam Jacob, Marchex, <adam@marchex.com>
4 #
5 # $Id$
6
7 package Catalyst::Action::SerializeBase;
8
9 use strict;
10 use warnings;
11
12 use base 'Catalyst::Action';
13 use Module::Pluggable::Object;
14 use Data::Dump qw(dump);
15 use Catalyst::Request::REST;
16
17 Catalyst->request_class('Catalyst::Request::REST')
18     unless Catalyst->request_class->isa('Catalyst::Request::REST');
19
20 __PACKAGE__->mk_accessors(qw(_serialize_plugins _loaded_plugins));
21
22 sub _load_content_plugins {
23     my $self = shift;
24     my ( $search_path, $controller, $c ) = @_;
25
26     unless ( defined( $self->_loaded_plugins ) ) {
27         $self->_loaded_plugins( {} );
28     }
29
30     # Load the Serialize Classes
31     unless ( defined( $self->_serialize_plugins ) ) {
32         my @plugins;
33         my $mpo =
34           Module::Pluggable::Object->new( 'search_path' => [$search_path], );
35         @plugins = $mpo->plugins;
36         $self->_serialize_plugins( \@plugins );
37     }
38
39     my $content_type = $c->request->preferred_content_type || '';
40
41     # Finally, we load the class.  If you have a default serializer,
42     # and we still don't have a content-type that exists in the map,
43     # we'll use it.
44     my $sclass = $search_path . "::";
45     my $sarg;
46     my $map;
47
48     my $config;
49     
50     if ( exists $controller->config->{'serialize'} ) {
51         $c->log->info("Using deprecated configuration for Catalyst::Action::REST!");
52         $c->log->info("Please see perldoc Catalyst::Action::REST for the update guide");
53         $config = $controller->config->{'serialize'};
54     } else {
55         $config = $controller->config;
56     }
57     $map = $config->{'map'};
58     # If we don't have a handler for our preferred content type, try
59     # the default
60     if ( ! exists $map->{$content_type} ) {
61         if( exists $config->{'default'} ) {
62             $content_type = $config->{'default'} ;
63         } else {
64             return $self->_unsupported_media_type($c, $content_type);
65         }
66     }
67
68     if ( exists( $map->{$content_type} ) ) {
69         my $mc;
70         if ( ref( $map->{$content_type} ) eq "ARRAY" ) {
71             $mc   = $map->{$content_type}->[0];
72             $sarg = $map->{$content_type}->[1];
73         } else {
74             $mc = $map->{$content_type};
75         }
76         # TODO: Handle custom serializers more elegantly.. this is a start,
77         # but how do we determine which is Serialize and Deserialize?
78         #if ($mc =~ /^+/) {
79         #    $sclass = $mc;
80         #    $sclass =~ s/^+//g;
81         #} else {
82         $sclass .= $mc;
83         #}
84         if ( !grep( /^$sclass$/, @{ $self->_serialize_plugins } ) ) {
85             return $self->_unsupported_media_type($c, $content_type);
86         }
87     } else {
88         return $self->_unsupported_media_type($c, $content_type);
89     }
90     unless ( exists( $self->_loaded_plugins->{$sclass} ) ) {
91         my $load_class = $sclass;
92         $load_class =~ s/::/\//g;
93         $load_class =~ s/$/.pm/g;
94         eval { require $load_class; };
95         if ($@) {
96             $c->log->error(
97                 "Error loading $sclass for " . $content_type . ": $!" );
98             return $self->_unsupported_media_type($c, $content_type);
99         } else {
100             $self->_loaded_plugins->{$sclass} = 1;
101         }
102     }
103
104     if ($search_path eq "Catalyst::Action::Serialize") {
105         if ($content_type) {
106             $c->response->header( 'Vary' => 'Content-Type' );
107         } elsif ($c->request->accept_only) {
108             $c->response->header( 'Vary' => 'Accept' );
109         }
110         $c->response->content_type($content_type);
111     }
112
113     return $sclass, $sarg, $content_type;
114 }
115
116 sub _unsupported_media_type {
117     my ( $self, $c, $content_type ) = @_;
118     $c->res->content_type('text/plain');
119     $c->res->status(415);
120     if (defined($content_type) && $content_type ne "") {
121         $c->res->body(
122             "Content-Type " . $content_type . " is not supported.\r\n" );
123     } else {
124         $c->res->body(
125             "Cannot find a Content-Type supported by your client.\r\n" );
126     }
127     return undef;
128 }
129
130 sub _serialize_bad_request {
131     my ( $self, $c, $content_type, $error ) = @_;
132     $c->res->content_type('text/plain');
133     $c->res->status(400);
134     $c->res->body(
135         "Content-Type " . $content_type . " had a problem with your request.\r\n***ERROR***\r\n$error" );
136     return undef;
137 }
138
139 1;
140
141 =head1 NAME
142
143 B<Catalyst::Action::SerializeBase>
144
145 Base class for Catalyst::Action::Serialize and Catlayst::Action::Deserialize.
146
147 =head1 DESCRIPTION
148
149 This module implements the plugin loading and content-type negotiating
150 code for L<Catalyst::Action::Serialize> and L<Catalyst::Action::Deserialize>.
151
152 =head1 SEE ALSO
153
154 L<Catalyst::Action::Serialize>, L<Catalyst::Action::Deserialize>,
155 L<Catalyst::Controller::REST>,
156
157 =head1 AUTHOR
158
159 Adam Jacob <adam@stalecoffee.org>, with lots of help from mst and jrockway.
160
161 Marchex, Inc. paid me while I developed this module.  (http://www.marchex.com)
162
163 =head1 LICENSE
164
165 You may distribute this code under the same terms as Perl itself.
166
167 =cut
168