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