Bump versions for release
[catagits/Catalyst-Action-REST.git] / lib / Catalyst / Action / SerializeBase.pm
CommitLineData
e601adda 1package Catalyst::Action::SerializeBase;
2
930013e6 3use Moose;
4use namespace::autoclean;
e601adda 5
930013e6 6extends 'Catalyst::Action';
e601adda 7use Module::Pluggable::Object;
9a76221e 8use Catalyst::Request::REST;
5132f5e4 9use Catalyst::Utils ();
9a76221e 10
3bb36dca 11our $VERSION = '0.82';
f465980c 12$VERSION = eval $VERSION;
13
05009b91 14after BUILDARGS => sub {
15 my $class = shift;
16 my $config = shift;
17 Catalyst::Request::REST->_insert_self_into( $config->{class} );
18};
e601adda 19
05009b91 20has [qw(_serialize_plugins _loaded_plugins)] => ( is => 'rw' );
e601adda 21
22sub _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
e601adda 39 # Finally, we load the class. If you have a default serializer,
40 # and we still don't have a content-type that exists in the map,
41 # we'll use it.
42 my $sclass = $search_path . "::";
43 my $sarg;
faf5c20b 44 my $map;
367b3ff4 45
faf5c20b 46 my $config;
47
07682cbc 48 if ( exists $controller->{'serialize'} ) {
9cd203c9 49 $c->log->info("Catalyst::Action::REST - deprecated use of 'serialize' for configuration.");
50 $c->log->info("Please see 'CONFIGURATION' in Catalyst::Controller::REST.");
07682cbc 51 $config = $controller->{'serialize'};
7b8c5be2 52 # if they're using the deprecated config, they may be expecting a
53 # default mapping too.
54 $config->{map} ||= $controller->{map};
faf5c20b 55 } else {
07682cbc 56 $config = $controller;
faf5c20b 57 }
58 $map = $config->{'map'};
c0aef9cd 59
a51e7bbd 60 # pick preferred content type
61 my @accepted_types; # priority order, best first
62 # give top priority to content type specified by stash, if any
63 my $content_type_stash_key = $config->{content_type_stash_key};
64 if ($content_type_stash_key
65 and my $stashed = $c->stash->{$content_type_stash_key}
66 ) {
67 # convert to array if not already a ref
68 $stashed = [ $stashed ] if not ref $stashed;
69 push @accepted_types, @$stashed;
367b3ff4 70 }
a51e7bbd 71 # then content types requested by caller
72 push @accepted_types, @{ $c->request->accepted_content_types };
73 # then the default
74 push @accepted_types, $config->{'default'} if $config->{'default'};
75 # pick the best match that we have a serializer mapping for
76 my ($content_type) = grep { $map->{$_} } @accepted_types;
77
78 return $self->_unsupported_media_type($c, $content_type)
79 if not $content_type;
367b3ff4 80
c0aef9cd 81 # carp about old text/x-json
82 if ($content_type eq 'text/x-json') {
83 $c->log->info('Using deprecated text/x-json content-type.');
84 $c->log->info('Use application/json instead!');
85 }
86
e601adda 87 if ( exists( $map->{$content_type} ) ) {
88 my $mc;
89 if ( ref( $map->{$content_type} ) eq "ARRAY" ) {
90 $mc = $map->{$content_type}->[0];
91 $sarg = $map->{$content_type}->[1];
92 } else {
93 $mc = $map->{$content_type};
94 }
95 # TODO: Handle custom serializers more elegantly.. this is a start,
96 # but how do we determine which is Serialize and Deserialize?
97 #if ($mc =~ /^+/) {
98 # $sclass = $mc;
99 # $sclass =~ s/^+//g;
100 #} else {
101 $sclass .= $mc;
102 #}
103 if ( !grep( /^$sclass$/, @{ $self->_serialize_plugins } ) ) {
104 return $self->_unsupported_media_type($c, $content_type);
105 }
106 } else {
367b3ff4 107 return $self->_unsupported_media_type($c, $content_type);
e601adda 108 }
109 unless ( exists( $self->_loaded_plugins->{$sclass} ) ) {
110 my $load_class = $sclass;
111 $load_class =~ s/::/\//g;
112 $load_class =~ s/$/.pm/g;
113 eval { require $load_class; };
114 if ($@) {
115 $c->log->error(
d4611771 116 "Error loading $sclass for " . $content_type . ": $!" );
e601adda 117 return $self->_unsupported_media_type($c, $content_type);
118 } else {
119 $self->_loaded_plugins->{$sclass} = 1;
120 }
121 }
122
123 if ($search_path eq "Catalyst::Action::Serialize") {
124 if ($content_type) {
125 $c->response->header( 'Vary' => 'Content-Type' );
9a76221e 126 } elsif ($c->request->accept_only) {
e601adda 127 $c->response->header( 'Vary' => 'Accept' );
128 }
129 $c->response->content_type($content_type);
130 }
131
132 return $sclass, $sarg, $content_type;
133}
134
135sub _unsupported_media_type {
136 my ( $self, $c, $content_type ) = @_;
137 $c->res->content_type('text/plain');
138 $c->res->status(415);
2224bad1 139 if (defined($content_type) && $content_type ne "") {
e601adda 140 $c->res->body(
141 "Content-Type " . $content_type . " is not supported.\r\n" );
142 } else {
143 $c->res->body(
144 "Cannot find a Content-Type supported by your client.\r\n" );
145 }
146 return undef;
147}
148
149sub _serialize_bad_request {
150 my ( $self, $c, $content_type, $error ) = @_;
151 $c->res->content_type('text/plain');
152 $c->res->status(400);
153 $c->res->body(
154 "Content-Type " . $content_type . " had a problem with your request.\r\n***ERROR***\r\n$error" );
155 return undef;
156}
157
05009b91 158__PACKAGE__->meta->make_immutable;
e601adda 159
160=head1 NAME
161
26b59bcb 162Catalyst::Action::SerializeBase - Base class for Catalyst::Action::Serialize and Catlayst::Action::Deserialize.
e601adda 163
164=head1 DESCRIPTION
165
166This module implements the plugin loading and content-type negotiating
167code for L<Catalyst::Action::Serialize> and L<Catalyst::Action::Deserialize>.
168
169=head1 SEE ALSO
170
171L<Catalyst::Action::Serialize>, L<Catalyst::Action::Deserialize>,
172L<Catalyst::Controller::REST>,
173
5cb5f6bb 174=head1 AUTHORS
e601adda 175
5cb5f6bb 176See L<Catalyst::Action::REST> for authors.
e601adda 177
178=head1 LICENSE
179
180You may distribute this code under the same terms as Perl itself.
181
182=cut