/usr/share/perl5/HTTP/Entity/Parser.pm is in libhttp-entity-parser-perl 0.18-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 | package HTTP::Entity::Parser;
use 5.008005;
use strict;
use warnings;
use Stream::Buffered;
use Module::Load;
our $VERSION = "0.18";
our $BUFFER_LENGTH = 65536;
our %LOADED;
our @DEFAULT_PARSER = qw/
OctetStream
UrlEncoded
MultiPart
JSON
/;
for my $parser ( @DEFAULT_PARSER ) {
load "HTTP::Entity::Parser::".$parser;
$LOADED{"HTTP::Entity::Parser::".$parser} = 1;
}
sub new {
my $class = shift;
my %args = (
buffer_length => $BUFFER_LENGTH,
@_,
);
bless [ [], $args{buffer_length} ], $class;
}
sub register {
my ($self,$content_type, $klass, $opts) = @_;
if ( !$LOADED{$klass} ) {
load $klass;
$LOADED{$klass} = 1;
}
push @{$self->[0]}, [$content_type, $klass, $opts];
}
sub parse {
my ($self, $env) = @_;
my $buffer_length = $self->[1];
my $ct = $env->{CONTENT_TYPE};
if (!$ct) {
# No Content-Type
return ([], []);
}
my $parser;
for my $handler (@{$self->[0]}) {
if ( $ct eq $handler->[0] || index($ct, $handler->[0]) == 0) {
$parser = $handler->[1]->new($env, $handler->[2]);
last;
}
}
if ( !$parser ) {
$parser = HTTP::Entity::Parser::OctetStream->new();
}
my $input = $env->{'psgi.input'};
my $buffer;
if ($env->{'psgix.input.buffered'}) {
# Just in case if input is read by middleware/apps beforehand
$input->seek(0, 0);
} else {
$buffer = Stream::Buffered->new();
}
my $chunked = do { no warnings; lc delete $env->{HTTP_TRANSFER_ENCODING} eq 'chunked' };
if ( my $cl = $env->{CONTENT_LENGTH} ) {
my $spin = 0;
while ($cl > 0) {
$input->read(my $chunk, $cl < $buffer_length ? $cl : $buffer_length);
my $read = length $chunk;
$cl -= $read;
$parser->add($chunk);
$buffer->print($chunk) if $buffer;
if ($read == 0 && $spin++ > 2000) {
Carp::croak "Bad Content-Length: maybe client disconnect? ($cl bytes remaining)";
}
}
}
elsif ($chunked) {
my $chunk_buffer = '';
my $length;
DECHUNK: while(1) {
$input->read(my $chunk, $buffer_length);
$chunk_buffer .= $chunk;
while ( $chunk_buffer =~ s/^(([0-9a-fA-F]+).*\015\012)// ) {
my $trailer = $1;
my $chunk_len = hex $2;
if ($chunk_len == 0) {
last DECHUNK;
} elsif (length $chunk_buffer < $chunk_len + 2) {
$chunk_buffer = $trailer . $chunk_buffer;
last;
}
my $loaded = substr $chunk_buffer, 0, $chunk_len, '';
$parser->add($loaded);
$buffer->print($loaded);
$chunk_buffer =~ s/^\015\012//;
$length += $chunk_len;
}
}
$env->{CONTENT_LENGTH} = $length;
}
if ($buffer) {
$env->{'psgix.input.buffered'} = 1;
$env->{'psgi.input'} = $buffer->rewind;
} else {
$input->seek(0, 0);
}
$parser->finalize();
}
1;
__END__
=encoding utf-8
=head1 NAME
HTTP::Entity::Parser - PSGI compliant HTTP Entity Parser
=head1 SYNOPSIS
use HTTP::Entity::Parser;
my $parser = HTTP::Entity::Parser->new;
$parser->register('application/x-www-form-urlencoded','HTTP::Entity::Parser::UrlEncoded');
$parser->register('multipart/form-data','HTTP::Entity::Parser::MultiPart');
$parser->register('application/json','HTTP::Entity::Parser::JSON');
sub app {
my $env = shift;
my ( $params, $uploads) = $parser->parse($env);
}
=head1 DESCRIPTION
HTTP::Entity::Parser is a PSGI-compliant HTTP Entity parser. This module also is compatible
with L<HTTP::Body>. Unlike HTTP::Body, HTTP::Entity::Parser reads HTTP entities from
PSGI's environment C<< $env->{'psgi.input'} >> and parses it.
This module supports application/x-www-form-urlencoded, multipart/form-data and application/json.
=head1 METHODS
=over 4
=item new( buffer_length => $length:Intger)
Create the instance.
=over 4
=item buffer_length
The buffer length that HTTP::Entity::Parser reads from psgi.input. 16384 by default.
=back
=item register($content_type:String, $class:String, $opts:HashRef)
Register parser class.
$parser->register('application/x-www-form-urlencoded','HTTP::Entity::Parser::UrlEncoded');
$parser->register('multipart/form-data','HTTP::Entity::Parser::MultiPart');
$parser->register('application/json','HTTP::Entity::Parser::JSON');
If the request content_type matches the registered type, HTTP::Entity::Parser uses the registered
parser class. If content_type does not match any registered type, HTTP::Entity::Parser::OctetStream is used.
=item parse($env:HashRef)
parse HTTP entities from PSGI's env.
my ( $params:ArrayRef, $uploads:ArrayRef) = $parser->parse($env);
C<$param> is a key-value pair list.
my ( $params, $uploads) = $parser->parse($env);
my $body_parameters = Hash::MultiValue->new(@$params);
C<$uploads> is an ArrayRef of HashRef.
my ( $params, $uploads) = $parser->parse($env);
warn Dumper($uploads->[0]);
{
"name" => "upload", #field name
"headers" => [
"Content-Type" => "application/octet-stream",
"Content-Disposition" => "form-data; name=\"upload\"; filename=\"hello.pl\""
],
"size" => 78, #size of upload content
"filename" => "hello.png", #original filename in the client
"tempname" => "/tmp/XXXXX", # path to the temporary file where uploaded file is saved
}
When used with L<Plack::Request::Upload>:
my ( $params, $uploads) = $parser->parse($env);
my $upload_hmv = Hash::MultiValue->new();
while ( my ($k,$v) = splice @$uploads, 0, 2 ) {
my %copy = %$v;
$copy{headers} = HTTP::Headers::Fast->new(@{$v->{headers}});
$upload_hmv->add($k, Plack::Request::Upload->new(%copy));
}
=back
=head1 PARSERS
=over 4
=item OctetStream
Default parser, This parser does not parse entity, always return empty list.
=item UrlEncoded
For C<application/x-www-form-urlencoded>. It is used for HTTP POST without file upload
=item MultiPart
For C<multipart/form-data>. It is used for HTTP POST contains file upload.
MultiPart parser use L<HTTP::MultiPartParser>.
=item JSON
For C<application/json>. This parser decodes JSON body automatically.
It is convenient to use with Ajax forms.
=back
=head1 WHAT'S DIFFERENT FROM HTTP::Body
HTTP::Entity::Parser accept PSGI's env and read body from it.
HTTP::Entity::Parser is able to choose parsers by the instance, HTTP::Body requires to modify global variables.
=head1 SEE ALSO
=over 4
=item L<HTTP::Body>
=item L<HTTP::MultiPartParser>
=item L<Plack::Request>
=item L<WWW::Form::UrlEncoded>
HTTP::Entity::Parser uses this for parse application/x-www-form-urlencoded
=back
=head1 LICENSE
Copyright (C) Masahiro Nagano.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=head1 AUTHOR
Masahiro Nagano E<lt>kazeburo@gmail.comE<gt>
Tokuhiro Matsuno E<lt>tokuhirom@gmail.comE<gt>
This module is based on tokuhirom's code, see L<https://github.com/plack/Plack/pull/434>
=cut
|