| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Catalyst::TraitFor::Request::REST; |
|
2
|
|
|
|
|
|
|
$Catalyst::TraitFor::Request::REST::VERSION = '1.21'; |
|
3
|
14
|
|
|
14
|
|
6799
|
use Moose::Role; |
|
|
14
|
|
|
|
|
32
|
|
|
|
14
|
|
|
|
|
94
|
|
|
4
|
14
|
|
|
14
|
|
65107
|
use HTTP::Headers::Util qw(split_header_words); |
|
|
14
|
|
|
|
|
11283
|
|
|
|
14
|
|
|
|
|
927
|
|
|
5
|
14
|
|
|
14
|
|
99
|
use namespace::autoclean; |
|
|
14
|
|
|
|
|
25
|
|
|
|
14
|
|
|
|
|
79
|
|
|
6
|
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has [qw/ data accept_only /] => ( is => 'rw' ); |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has accepted_content_types => ( |
|
10
|
|
|
|
|
|
|
is => 'ro', |
|
11
|
|
|
|
|
|
|
isa => 'ArrayRef', |
|
12
|
|
|
|
|
|
|
lazy => 1, |
|
13
|
|
|
|
|
|
|
builder => '_build_accepted_content_types', |
|
14
|
|
|
|
|
|
|
clearer => 'clear_accepted_cache', |
|
15
|
|
|
|
|
|
|
init_arg => undef, |
|
16
|
|
|
|
|
|
|
); |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
has preferred_content_type => ( |
|
19
|
|
|
|
|
|
|
is => 'ro', |
|
20
|
|
|
|
|
|
|
isa => 'Str', |
|
21
|
|
|
|
|
|
|
lazy => 1, |
|
22
|
|
|
|
|
|
|
builder => '_build_preferred_content_type', |
|
23
|
|
|
|
|
|
|
init_arg => undef, |
|
24
|
|
|
|
|
|
|
); |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
has 'compliance_mode' => ( |
|
43
|
|
|
|
|
|
|
is => 'ro', |
|
44
|
|
|
|
|
|
|
isa => 'Int', |
|
45
|
|
|
|
|
|
|
lazy => 1, |
|
46
|
|
|
|
|
|
|
writer => '_set_compliance_mode', |
|
47
|
|
|
|
|
|
|
default => 0x3, |
|
48
|
|
|
|
|
|
|
); |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
sub set_accept_only { |
|
53
|
0
|
|
|
0
|
0
|
0
|
my $self = shift; |
|
54
|
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
|
57
|
0
|
|
|
|
|
0
|
$self->clear_accepted_cache(); |
|
58
|
0
|
|
|
|
|
0
|
$self->_set_compliance_mode(0x1); |
|
59
|
|
|
|
|
|
|
} |
|
60
|
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
sub set_content_type_only { |
|
64
|
0
|
|
|
0
|
0
|
0
|
my $self = shift; |
|
65
|
|
|
|
|
|
|
|
|
66
|
0
|
|
|
|
|
0
|
$self->clear_accepted_cache(); |
|
67
|
0
|
|
|
|
|
0
|
$self->_set_compliance_mode(0x2); |
|
68
|
|
|
|
|
|
|
} |
|
69
|
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
sub clear_compliance_mode { |
|
73
|
0
|
|
|
0
|
0
|
0
|
my $self = shift; |
|
74
|
|
|
|
|
|
|
|
|
75
|
0
|
|
|
|
|
0
|
$self->clear_accepted_cache(); |
|
76
|
0
|
|
|
|
|
0
|
$self->_set_compliance_mode(0x3); |
|
77
|
|
|
|
|
|
|
} |
|
78
|
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
sub accept_allowed { |
|
81
|
24
|
|
|
24
|
0
|
1685
|
my $self = shift; |
|
82
|
|
|
|
|
|
|
|
|
83
|
24
|
|
|
|
|
651
|
return $self->compliance_mode & 0x1; |
|
84
|
|
|
|
|
|
|
} |
|
85
|
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
sub content_type_allowed { |
|
88
|
33
|
|
|
33
|
0
|
1754
|
my $self = shift; |
|
89
|
|
|
|
|
|
|
|
|
90
|
33
|
|
|
|
|
880
|
return $self->compliance_mode & 0x2; |
|
91
|
|
|
|
|
|
|
} |
|
92
|
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
sub _set_compliance_mode { |
|
95
|
0
|
|
|
0
|
|
0
|
my $self = shift; |
|
96
|
0
|
|
|
|
|
0
|
my $mode_bits = shift; |
|
97
|
|
|
|
|
|
|
|
|
98
|
0
|
|
|
|
|
0
|
$self->compliance_mode($mode_bits); |
|
99
|
|
|
|
|
|
|
} |
|
100
|
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
sub _build_accepted_content_types { |
|
102
|
47
|
|
|
47
|
|
81
|
my $self = shift; |
|
103
|
|
|
|
|
|
|
|
|
104
|
47
|
|
|
|
|
65
|
my %types; |
|
105
|
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
|
|
109
|
47
|
100
|
66
|
|
|
202
|
$types{ $self->content_type } = 3 |
|
110
|
|
|
|
|
|
|
if $self->content_type && $self->content_type_allowed(); |
|
111
|
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
|
|
115
|
|
|
|
|
|
|
|
|
116
|
47
|
100
|
100
|
|
|
2650
|
if ($self->method eq "GET" && $self->param('content-type') && $self->accept_allowed()) { |
|
|
|
|
66
|
|
|
|
|
|
117
|
4
|
|
|
|
|
14
|
$types{ $self->param('content-type') } = 2; |
|
118
|
|
|
|
|
|
|
} |
|
119
|
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
|
|
122
|
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
|
|
126
|
47
|
100
|
66
|
|
|
2604
|
if ( $self->header('Accept') && $self->accept_allowed() ) { |
|
127
|
20
|
100
|
|
|
|
303
|
$self->accept_only(1) unless keys %types; |
|
128
|
|
|
|
|
|
|
|
|
129
|
20
|
|
|
|
|
48
|
my $accept_header = $self->header('Accept'); |
|
130
|
20
|
|
|
|
|
1143
|
my $counter = 0; |
|
131
|
|
|
|
|
|
|
|
|
132
|
20
|
|
|
|
|
54
|
foreach my $pair ( split_header_words($accept_header) ) { |
|
133
|
68
|
|
|
|
|
1834
|
my ( $type, $qvalue ) = @{$pair}[ 0, 3 ]; |
|
|
68
|
|
|
|
|
127
|
|
|
134
|
68
|
100
|
|
|
|
128
|
next if $types{$type}; |
|
135
|
|
|
|
|
|
|
|
|
136
|
|
|
|
|
|
|
|
|
137
|
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
|
|
139
|
64
|
100
|
66
|
|
|
166
|
unless ( defined $pair->[2] && lc $pair->[2] eq 'q' ) { |
|
140
|
30
|
|
|
|
|
36
|
$qvalue = undef; |
|
141
|
|
|
|
|
|
|
} |
|
142
|
|
|
|
|
|
|
|
|
143
|
64
|
100
|
|
|
|
103
|
unless ( defined $qvalue ) { |
|
144
|
30
|
|
|
|
|
49
|
$qvalue = 1 - ( ++$counter / 1000 ); |
|
145
|
|
|
|
|
|
|
} |
|
146
|
|
|
|
|
|
|
|
|
147
|
64
|
|
|
|
|
322
|
$types{$type} = sprintf( '%.3f', $qvalue ); |
|
148
|
|
|
|
|
|
|
} |
|
149
|
|
|
|
|
|
|
} |
|
150
|
|
|
|
|
|
|
|
|
151
|
47
|
|
|
|
|
2564
|
[ sort { $types{$b} <=> $types{$a} } keys %types ]; |
|
|
106
|
|
|
|
|
888
|
|
|
152
|
|
|
|
|
|
|
} |
|
153
|
|
|
|
|
|
|
|
|
154
|
6
|
|
|
6
|
|
156
|
sub _build_preferred_content_type { $_[0]->accepted_content_types->[0] } |
|
155
|
|
|
|
|
|
|
|
|
156
|
|
|
|
|
|
|
sub accepts { |
|
157
|
59
|
|
|
59
|
1
|
6400
|
my $self = shift; |
|
158
|
59
|
|
|
|
|
76
|
my $type = shift; |
|
159
|
|
|
|
|
|
|
|
|
160
|
59
|
|
|
|
|
76
|
return grep { $_ eq $type } @{ $self->accepted_content_types }; |
|
|
118
|
|
|
|
|
524
|
|
|
|
59
|
|
|
|
|
1665
|
|
|
161
|
|
|
|
|
|
|
} |
|
162
|
|
|
|
|
|
|
|
|
163
|
|
|
|
|
|
|
1; |
|
164
|
|
|
|
|
|
|
__END__ |
|
165
|
|
|
|
|
|
|
|
|
166
|
|
|
|
|
|
|
=head1 NAME |
|
167
|
|
|
|
|
|
|
|
|
168
|
|
|
|
|
|
|
Catalyst::TraitFor::Request::REST - A role to apply to Catalyst::Request giving it REST methods and attributes. |
|
169
|
|
|
|
|
|
|
|
|
170
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
171
|
|
|
|
|
|
|
|
|
172
|
|
|
|
|
|
|
if ( $c->request->accepts('application/json') ) { |
|
173
|
|
|
|
|
|
|
... |
|
174
|
|
|
|
|
|
|
} |
|
175
|
|
|
|
|
|
|
|
|
176
|
|
|
|
|
|
|
my $types = $c->request->accepted_content_types(); |
|
177
|
|
|
|
|
|
|
|
|
178
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
179
|
|
|
|
|
|
|
|
|
180
|
|
|
|
|
|
|
This is a L<Moose::Role> applied to L<Catalyst::Request> that adds a few |
|
181
|
|
|
|
|
|
|
methods to the request object to facilitate writing REST-y code. |
|
182
|
|
|
|
|
|
|
Currently, these methods are all related to the content types accepted by |
|
183
|
|
|
|
|
|
|
the client and the content type sent in the request. |
|
184
|
|
|
|
|
|
|
|
|
185
|
|
|
|
|
|
|
=head1 METHODS |
|
186
|
|
|
|
|
|
|
|
|
187
|
|
|
|
|
|
|
=over |
|
188
|
|
|
|
|
|
|
|
|
189
|
|
|
|
|
|
|
=item data |
|
190
|
|
|
|
|
|
|
|
|
191
|
|
|
|
|
|
|
If the request went through the Deserializer action, this method will |
|
192
|
|
|
|
|
|
|
return the deserialized data structure. |
|
193
|
|
|
|
|
|
|
|
|
194
|
|
|
|
|
|
|
=item accepted_content_types |
|
195
|
|
|
|
|
|
|
|
|
196
|
|
|
|
|
|
|
Returns an array reference of content types accepted by the |
|
197
|
|
|
|
|
|
|
client. |
|
198
|
|
|
|
|
|
|
|
|
199
|
|
|
|
|
|
|
The list of types is created by looking at the following sources: |
|
200
|
|
|
|
|
|
|
|
|
201
|
|
|
|
|
|
|
=over 8 |
|
202
|
|
|
|
|
|
|
|
|
203
|
|
|
|
|
|
|
=item * Content-type header |
|
204
|
|
|
|
|
|
|
|
|
205
|
|
|
|
|
|
|
If this exists, this will always be the first type in the list. |
|
206
|
|
|
|
|
|
|
|
|
207
|
|
|
|
|
|
|
=item * content-type parameter |
|
208
|
|
|
|
|
|
|
|
|
209
|
|
|
|
|
|
|
If the request is a GET request and there is a "content-type" |
|
210
|
|
|
|
|
|
|
parameter in the query string, this will come before any types in the |
|
211
|
|
|
|
|
|
|
Accept header. |
|
212
|
|
|
|
|
|
|
|
|
213
|
|
|
|
|
|
|
=item * Accept header |
|
214
|
|
|
|
|
|
|
|
|
215
|
|
|
|
|
|
|
This will be parsed and the types found will be ordered by the |
|
216
|
|
|
|
|
|
|
relative quality specified for each type. |
|
217
|
|
|
|
|
|
|
|
|
218
|
|
|
|
|
|
|
=back |
|
219
|
|
|
|
|
|
|
|
|
220
|
|
|
|
|
|
|
If a type appears in more than one of these places, it is ordered based on |
|
221
|
|
|
|
|
|
|
where it is first found. |
|
222
|
|
|
|
|
|
|
|
|
223
|
|
|
|
|
|
|
=item preferred_content_type |
|
224
|
|
|
|
|
|
|
|
|
225
|
|
|
|
|
|
|
This returns the first content type found. It is shorthand for: |
|
226
|
|
|
|
|
|
|
|
|
227
|
|
|
|
|
|
|
$request->accepted_content_types->[0] |
|
228
|
|
|
|
|
|
|
|
|
229
|
|
|
|
|
|
|
=item accepts($type) |
|
230
|
|
|
|
|
|
|
|
|
231
|
|
|
|
|
|
|
Given a content type, this returns true if the type is accepted. |
|
232
|
|
|
|
|
|
|
|
|
233
|
|
|
|
|
|
|
Note that this does not do any wildcard expansion of types. |
|
234
|
|
|
|
|
|
|
|
|
235
|
|
|
|
|
|
|
=back |
|
236
|
|
|
|
|
|
|
|
|
237
|
|
|
|
|
|
|
=head1 AUTHORS |
|
238
|
|
|
|
|
|
|
|
|
239
|
|
|
|
|
|
|
See L<Catalyst::Action::REST> for authors. |
|
240
|
|
|
|
|
|
|
|
|
241
|
|
|
|
|
|
|
=head1 LICENSE |
|
242
|
|
|
|
|
|
|
|
|
243
|
|
|
|
|
|
|
You may distribute this code under the same terms as Perl itself. |
|
244
|
|
|
|
|
|
|
|
|
245
|
|
|
|
|
|
|
=cut |
|
246
|
|
|
|
|
|
|
|
|
247
|
|
|
|
|
|
|
|