| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package CatalystX::RequestModel::ContentBodyParser::MultiPart; |
|
2
|
|
|
|
|
|
|
|
|
3
|
6
|
|
|
6
|
|
3370
|
use warnings; |
|
|
6
|
|
|
|
|
21
|
|
|
|
6
|
|
|
|
|
299
|
|
|
4
|
6
|
|
|
6
|
|
36
|
use strict; |
|
|
6
|
|
|
|
|
19
|
|
|
|
6
|
|
|
|
|
206
|
|
|
5
|
6
|
|
|
6
|
|
35
|
use base 'CatalystX::RequestModel::ContentBodyParser'; |
|
|
6
|
|
|
|
|
27
|
|
|
|
6
|
|
|
|
|
3379
|
|
|
6
|
|
|
|
|
|
|
|
|
7
|
84
|
|
|
84
|
0
|
619
|
sub content_type { 'multipart/form-data' } |
|
8
|
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
sub default_attr_rules { |
|
10
|
2
|
|
|
2
|
0
|
7
|
my ($self, $attr_rules) = @_; |
|
11
|
2
|
|
|
|
|
13
|
return +{ flatten=>1, %$attr_rules }; |
|
12
|
|
|
|
|
|
|
} |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
sub expand_cgi { |
|
15
|
1
|
|
|
1
|
0
|
4
|
my ($self) = shift; |
|
16
|
1
|
|
|
|
|
2
|
my $params = +{ %{$self->{ctx}->req->body_parameters}, %{$self->{ctx}->req->uploads} }; |
|
|
1
|
|
|
|
|
14
|
|
|
|
1
|
|
|
|
|
91
|
|
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
|
19
|
1
|
|
|
|
|
60
|
my $data; |
|
20
|
1
|
|
|
|
|
11
|
foreach my $param (keys %$params) { |
|
21
|
2
|
|
|
|
|
11
|
my (@segments) = split /\./, $param; |
|
22
|
2
|
|
|
|
|
6
|
my $data_ref = \$data; |
|
23
|
2
|
|
|
|
|
5
|
foreach my $segment (@segments) { |
|
24
|
2
|
100
|
|
|
|
10
|
$$data_ref = {} unless defined $$data_ref; |
|
25
|
|
|
|
|
|
|
|
|
26
|
2
|
|
|
|
|
9
|
my ($prefix,$i) = ($segment =~m/^(.+)?\[(\d*)\]$/); |
|
27
|
2
|
50
|
|
|
|
5
|
$segment = $prefix if defined $prefix; |
|
28
|
|
|
|
|
|
|
|
|
29
|
2
|
50
|
|
|
|
7
|
die "CGI param clash for $param=$_" unless ref $$data_ref eq 'HASH'; |
|
30
|
2
|
|
|
|
|
7
|
$data_ref = \($$data_ref->{$segment}); |
|
31
|
2
|
50
|
|
|
|
6
|
$data_ref = \($$data_ref->{$i}) if defined $i; |
|
32
|
|
|
|
|
|
|
} |
|
33
|
2
|
50
|
|
|
|
7
|
die "CGI param clash for $param value $params->{$param}" if defined $$data_ref; |
|
34
|
2
|
|
|
|
|
6
|
$$data_ref = $params->{$param}; |
|
35
|
|
|
|
|
|
|
} |
|
36
|
|
|
|
|
|
|
|
|
37
|
1
|
|
|
|
|
11
|
return $data; |
|
38
|
|
|
|
|
|
|
} |
|
39
|
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
sub new { |
|
41
|
1
|
|
|
1
|
0
|
5
|
my ($class, %args) = @_; |
|
42
|
1
|
|
|
|
|
3
|
my $self = bless \%args, $class; |
|
43
|
1
|
|
33
|
|
|
14
|
$self->{context} ||= $self->expand_cgi; |
|
44
|
|
|
|
|
|
|
|
|
45
|
1
|
|
|
|
|
6
|
return $self; |
|
46
|
|
|
|
|
|
|
} |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
1; |
|
49
|
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 NAME |
|
51
|
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
CatalystX::RequestModel::ContentBodyParser::MultiPart - Parse multipart uploads |
|
53
|
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
55
|
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
TBD |
|
57
|
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
59
|
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
Given a list of uploads and possible form parameters: |
|
61
|
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
[debug] "POST" request for "upload" from "127.0.0.1" |
|
63
|
|
|
|
|
|
|
[debug] Body Parameters are: |
|
64
|
|
|
|
|
|
|
.-------------------------------------+--------------------------------------. |
|
65
|
|
|
|
|
|
|
| Parameter | Value | |
|
66
|
|
|
|
|
|
|
+-------------------------------------+--------------------------------------+ |
|
67
|
|
|
|
|
|
|
| notes | This is the file you seek! | |
|
68
|
|
|
|
|
|
|
'-------------------------------------+--------------------------------------' |
|
69
|
|
|
|
|
|
|
[debug] File Uploads are: |
|
70
|
|
|
|
|
|
|
.--------------+----------------------------+--------------------+-----------. |
|
71
|
|
|
|
|
|
|
| Parameter | Filename | Type | Size | |
|
72
|
|
|
|
|
|
|
+--------------+----------------------------+--------------------+-----------+ |
|
73
|
|
|
|
|
|
|
| file | file.txt | | 13 | |
|
74
|
|
|
|
|
|
|
'--------------+----------------------------+--------------------+-----------' |
|
75
|
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
If you have a request model like: |
|
77
|
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
package Example::Model::UploadRequest; |
|
79
|
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
use Moose; |
|
81
|
|
|
|
|
|
|
use CatalystX::RequestModel; |
|
82
|
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
extends 'Catalyst::Model'; |
|
84
|
|
|
|
|
|
|
content_type 'multipart/form-data'; |
|
85
|
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
has notes => (is=>'ro', required=>1, property=>1); |
|
87
|
|
|
|
|
|
|
has file => (is=>'ro', property=>1); |
|
88
|
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable(); |
|
90
|
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
This will be mapped to an instance of the request model: |
|
92
|
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
$request_model->notes; # 'This is the file you seek!'; |
|
94
|
|
|
|
|
|
|
$request_model->file; # Instance of L<Catalyst::Request::Upload>. |
|
95
|
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
This is basically a subclass of L<CatalystX::RequestModel::ContentBodyParser::FormURLEncoded> |
|
97
|
|
|
|
|
|
|
with added support for multipart form uploads. You should see the parent file for more |
|
98
|
|
|
|
|
|
|
details. |
|
99
|
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
=head1 EXCEPTIONS |
|
101
|
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
See L<CatalystX::RequestModel::ContentBodyParser> for exceptions. |
|
103
|
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
=head1 AUTHOR |
|
105
|
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
See L<CatalystX::RequestModel>. |
|
107
|
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
=head1 COPYRIGHT |
|
109
|
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
See L<CatalystX::RequestModel>. |
|
111
|
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
=head1 LICENSE |
|
113
|
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
See L<CatalystX::RequestModel>. |
|
115
|
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
=cut |