/usr/share/perl5/Mojo/Message.pm is in libmojolicious-perl 2.98+dfsg-2.
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 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 | package Mojo::Message;
use Mojo::Base 'Mojo::EventEmitter';
use Carp 'croak';
use Mojo::Asset::Memory;
use Mojo::Content::Single;
use Mojo::DOM;
use Mojo::JSON;
use Mojo::JSON::Pointer;
use Mojo::Parameters;
use Mojo::Upload;
use Mojo::Util qw(decode url_unescape);
use Scalar::Util 'weaken';
has content => sub { Mojo::Content::Single->new };
has default_charset => 'UTF-8';
has dom_class => 'Mojo::DOM';
has json_class => 'Mojo::JSON';
has max_message_size => sub { $ENV{MOJO_MAX_MESSAGE_SIZE} || 5242880 };
has version => '1.1';
# "I'll keep it short and sweet. Family. Religion. Friendship.
# These are the three demons you must slay if you wish to succeed in
# business."
sub at_least_version {
my ($self, $version) = @_;
# Major and minor
my ($search_major, $search_minor) = split /\./, $version;
my ($current_major, $current_minor) = split /\./, $self->version;
# Major version is newer
return 1 if $search_major < $current_major;
# Minor version is newer or equal
return $search_major == $current_major && $search_minor <= $current_minor;
}
sub body {
my $self = shift;
# Downgrade multipart content
$self->content(Mojo::Content::Single->new) if $self->content->is_multipart;
my $content = $self->content;
# Get
return $content->asset->slurp unless defined(my $new = shift);
# Callback
if (ref $new eq 'CODE') {
weaken $self;
return $content->unsubscribe('read')->on(read => sub { $self->$new(pop) });
}
# Set text content
else { $content->asset(Mojo::Asset::Memory->new->add_chunk($new)) }
return $self;
}
sub body_params {
my $self = shift;
# Cached
return $self->{body_params} if $self->{body_params};
# Charset
my $p = Mojo::Parameters->new;
$p->charset($self->content->charset || $self->default_charset);
# "x-application-urlencoded" and "application/x-www-form-urlencoded"
my $type = $self->headers->content_type || '';
if ($type =~ m!(?:x-application|application/x-www-form)-urlencoded!i) {
$p->parse($self->content->asset->slurp);
}
# "multipart/formdata"
elsif ($type =~ m!multipart/form-data!i) {
my $formdata = $self->_parse_formdata;
# Formdata
for my $data (@$formdata) {
my ($name, $filename, $value) = @$data;
# File
next if defined $filename;
# Form value
$p->append($name, $value);
}
}
return $self->{body_params} = $p;
}
sub body_size { shift->content->body_size }
# "My new movie is me, standing in front of a brick wall for 90 minutes.
# It cost 80 million dollars to make.
# How do you sleep at night?
# On top of a pile of money, with many beautiful women."
sub build_body { shift->_build('body') }
sub build_headers { shift->_build('header') }
sub build_start_line { shift->_build('start_line') }
sub cookie {
my ($self, $name) = @_;
# Map
unless ($self->{cookies}) {
my $cookies = $self->{cookies} = {};
for my $cookie (@{$self->cookies}) {
my $cookie_name = $cookie->name;
# Multiple cookies with same name
if (exists $cookies->{$cookie_name}) {
$cookies->{$cookie_name} = [$cookies->{$cookie_name}]
unless ref $cookies->{$cookie_name} eq 'ARRAY';
push @{$cookies->{$cookie_name}}, $cookie;
}
# Cookie
else { $cookies->{$cookie_name} = $cookie }
}
}
# Multiple
my $cookies = $self->{cookies}{$name};
my @cookies;
@cookies = ref $cookies eq 'ARRAY' ? @$cookies : ($cookies) if $cookies;
return wantarray ? @cookies : $cookies[0];
}
sub cookies { croak 'Method "cookies" not implemented by subclass' }
sub dom {
my $self = shift;
return if $self->is_multipart;
my $dom = $self->dom_class->new;
$dom->charset($self->content->charset);
$dom->parse($self->body);
return @_ ? $dom->find(@_) : $dom;
}
sub error {
my $self = shift;
# Get
unless (@_) {
return unless my $err = $self->{error};
return wantarray ? @$err : $err->[0];
}
# Set
$self->{error} = [@_];
$self->{state} = 'finished';
return $self;
}
sub fix_headers {
my $self = shift;
# Content-Length header or connection close is required in HTTP 1.0
# unless the chunked transfer encoding is used
return $self
if $self->{fix}++ || !$self->at_least_version('1.0') || $self->is_chunked;
my $headers = $self->headers;
$self->is_dynamic
? $headers->connection('close')
: $headers->content_length($self->body_size)
unless $headers->content_length;
return $self;
}
sub get_body_chunk {
my ($self, $offset) = @_;
# Progress
$self->emit(progress => 'body', $offset);
# Chunk
my $chunk = $self->content->get_body_chunk($offset);
return $chunk if !defined $chunk || length $chunk;
# Finish
$self->{state} = 'finished';
$self->emit('finish');
return $chunk;
}
sub get_header_chunk {
my ($self, $offset) = @_;
# Progress
$self->emit(progress => 'headers', $offset);
# HTTP 0.9 has no headers
return '' if $self->version eq '0.9';
return $self->fix_headers->content->get_header_chunk($offset);
}
sub get_start_line_chunk {
my ($self, $offset) = @_;
$self->emit(progress => 'start_line', $offset);
return substr $self->{start_line_buffer} //= $self->_build_start_line,
$offset, $ENV{MOJO_CHUNK_SIZE} || 131072;
}
sub has_leftovers { shift->content->has_leftovers }
sub header_size { shift->fix_headers->content->header_size }
sub headers { shift->content->headers(@_) }
sub is_chunked { shift->content->is_chunked }
sub is_dynamic { shift->content->is_dynamic }
sub is_finished { (shift->{state} || '') eq 'finished' }
sub is_limit_exceeded { ((shift->error)[1] || 0) ~~ [413, 431] }
sub is_multipart { shift->content->is_multipart }
sub json {
my ($self, $pointer) = @_;
return if $self->is_multipart;
my $data = $self->json_class->new->decode($self->body);
return $pointer ? Mojo::JSON::Pointer->get($data, $pointer) : $data;
}
sub leftovers { shift->content->leftovers }
sub max_line_size { shift->headers->max_line_size(@_) }
sub param {
my $self = shift;
return ($self->{body_params} ||= $self->body_params)->param(@_);
}
sub parse { shift->_parse(0, @_) }
sub parse_until_body { shift->_parse(1, @_) }
sub start_line_size { length shift->build_start_line }
sub to_string {
my $self = shift;
return $self->build_start_line . $self->build_headers . $self->build_body;
}
sub upload {
my ($self, $name) = @_;
# Map
unless ($self->{uploads}) {
my $uploads = $self->{uploads} = {};
for my $upload (@{$self->uploads}) {
my $uname = $upload->name;
# Multiple uploads with same name
if (exists $uploads->{$uname}) {
$uploads->{$uname} = [$uploads->{$uname}]
unless ref $uploads->{$uname} eq 'ARRAY';
push @{$uploads->{$uname}}, $upload;
}
# Upload
else { $uploads->{$uname} = $upload }
}
}
# Multiple
my $uploads = $self->{uploads}{$name};
my @uploads;
@uploads = ref $uploads eq 'ARRAY' ? @$uploads : ($uploads) if $uploads;
return wantarray ? @uploads : $uploads[0];
}
sub uploads {
my $self = shift;
# Only multipart messages have uploads
my @uploads;
return \@uploads unless $self->is_multipart;
# Extract formdata
my $formdata = $self->_parse_formdata;
for my $data (@$formdata) {
my ($name, $filename, $part) = @$data;
# Just a form value
next unless defined $filename;
# Uploaded file
my $upload = Mojo::Upload->new(
name => $name,
asset => $part->asset,
filename => $filename,
headers => $part->headers
);
push @uploads, $upload;
}
return \@uploads;
}
sub write { shift->content->write(@_) }
sub write_chunk { shift->content->write_chunk(@_) }
sub _build {
my ($self, $part) = @_;
# Build part from chunks
my $method = "get_${part}_chunk";
my $buffer = '';
my $offset = 0;
while (1) {
my $chunk = $self->$method($offset);
# No chunk yet, try again
next unless defined $chunk;
# End of part
last unless length $chunk;
# Part
$offset += length $chunk;
$buffer .= $chunk;
}
return $buffer;
}
sub _build_start_line {''}
sub _parse {
my ($self, $until_body, $chunk) = @_;
# Add chunk
$self->{buffer} //= '';
$self->{raw_size} //= 0;
if (defined $chunk) {
$self->{raw_size} += length $chunk;
$self->{buffer} .= $chunk;
}
# Check message size
return $self->error('Maximum message size exceeded.', 413)
if $self->{raw_size} > $self->max_message_size;
# Start line
unless ($self->{state}) {
# Check line size
my $len = index $self->{buffer}, "\x0a";
$len = length $self->{buffer} if $len < 0;
return $self->error('Maximum line size exceeded.', 431)
if $len > $self->max_line_size;
# Parse
$self->_parse_start_line;
}
# Content
if (($self->{state} || '') ~~ [qw(body content finished)]) {
# Until body
my $content = $self->content;
my $buffer = delete $self->{buffer};
if ($until_body) { $self->content($content->parse_until_body($buffer)) }
# CGI
elsif ($self->{state} eq 'body') {
$self->content($content->parse_body($buffer));
}
# HTTP 0.9
elsif ($self->version eq '0.9') {
$self->content($content->parse_body_once($buffer));
}
# Parse
else { $self->content($content->parse($buffer)) }
}
# Check line size
return $self->error('Maximum line size exceeded.', 431)
if $self->headers->is_limit_exceeded;
# Finished
$self->{state} = 'finished' if $self->content->is_finished;
# Progress
$self->emit('progress');
# Finished
$self->emit('finish') if $self->is_finished;
return $self;
}
sub _parse_formdata {
my $self = shift;
# Check content
my @formdata;
my $content = $self->content;
return \@formdata unless $content->is_multipart;
my $default = $content->charset || $self->default_charset;
# Walk the tree
my @parts;
push @parts, $content;
while (my $part = shift @parts) {
# Multipart
if ($part->is_multipart) {
unshift @parts, @{$part->parts};
next;
}
# Charset
my $charset = $part->charset || $default;
# Content-Disposition header
my $disposition = $part->headers->content_disposition;
next unless $disposition;
my ($name) = $disposition =~ /\ name="?([^";]+)"?/;
my ($filename) = $disposition =~ /\ filename="?([^"]*)"?/;
my $value = $part;
# Unescape
$name = url_unescape $name if $name;
$filename = url_unescape $filename if $filename;
if ($charset) {
$name = decode($charset, $name) // $name if $name;
$filename = decode($charset, $filename) // $filename if $filename;
}
# Form value
unless (defined $filename) {
$value = $part->asset->slurp;
$value = decode($charset, $value) // $value
if $charset && !$part->headers->content_transfer_encoding;
}
push @formdata, [$name, $filename, $value];
}
return \@formdata;
}
sub _parse_start_line { }
1;
=head1 NAME
Mojo::Message - HTTP 1.1 message base class
=head1 SYNOPSIS
use Mojo::Base 'Mojo::Message';
=head1 DESCRIPTION
L<Mojo::Message> is an abstract base class for HTTP 1.1 messages as described
in RFC 2616 and RFC 2388.
=head1 EVENTS
L<Mojo::Message> can emit the following events.
=head2 C<finish>
$message->on(finish => sub {
my $message = shift;
...
});
Emitted after message building or parsing is finished.
my $before = time;
$message->on(finish => sub {
my $message = shift;
$message->headers->header('X-Parser-Time' => time - $before);
});
=head2 C<progress>
$message->on(progress => sub {
my $message = shift;
...
});
Emitted when message building or parsing makes progress.
# Building
$message->on(progress => sub {
my ($message, $state, $offset) = @_;
say qq{Building "$state" at offset $offset};
});
# Parsing
$message->on(progress => sub {
my $message = shift;
return unless my $len = $message->headers->content_length;
my $size = $message->content->progress;
say 'Progress: ', $size == $len ? 100 : int($size / ($len / 100)), '%';
});
=head1 ATTRIBUTES
L<Mojo::Message> implements the following attributes.
=head2 C<content>
my $message = $message->content;
$message = $message->content(Mojo::Content::Single->new);
Content container, defaults to a L<Mojo::Content::Single> object.
=head2 C<default_charset>
my $charset = $message->default_charset;
$message = $message->default_charset('UTF-8');
Default charset used for form data parsing, defaults to C<UTF-8>.
=head2 C<dom_class>
my $class = $message->dom_class;
$message = $message->dom_class('Mojo::DOM');
Class to be used for DOM manipulation with the C<dom> method, defaults to
L<Mojo::DOM>.
=head2 C<json_class>
my $class = $message->json_class;
$message = $message->json_class('Mojo::JSON');
Class to be used for JSON deserialization with the C<json> method, defaults to
L<Mojo::JSON>.
=head2 C<max_message_size>
my $size = $message->max_message_size;
$message = $message->max_message_size(1024);
Maximum message size in bytes, defaults to the value of the
C<MOJO_MAX_MESSAGE_SIZE> environment variable or C<5242880>. Note that
increasing this value can also drastically increase memory usage, should you
for example attempt to parse an excessively large message body with the
C<body_params>, C<dom> or C<json> methods.
=head2 C<version>
my $version = $message->version;
$message = $message->version('1.1');
HTTP version of message.
=head1 METHODS
L<Mojo::Message> inherits all methods from L<Mojo::EventEmitter> and
implements the following new ones.
=head2 C<at_least_version>
my $success = $message->at_least_version('1.1');
Check if message is at least a specific version.
=head2 C<body>
my $string = $message->body;
$message = $message->body('Hello!');
my $cb = $message->body(sub {...});
Access C<content> data or replace all subscribers of the C<read> event.
$message->body(sub {
my ($message, $chunk) = @_;
say "Streaming: $chunk";
});
=head2 C<body_params>
my $p = $message->body_params;
C<POST> parameters extracted from C<x-application-urlencoded>,
C<application/x-www-form-urlencoded> or C<multipart/form-data> message body,
usually a L<Mojo::Parameters> object. Note that this method caches all data,
so it should not be called before the entire message body has been received.
say $message->body_params->param('foo');
=head2 C<body_size>
my $size = $message->body_size;
Alias for L<Mojo::Content/"body_size">.
=head2 C<build_body>
my $string = $message->build_body;
Render whole body.
=head2 C<build_headers>
my $string = $message->build_headers;
Render all headers.
=head2 C<build_start_line>
my $string = $message->build_start_line;
Render start line.
=head2 C<cookie>
my $cookie = $message->cookie('foo');
my @cookies = $message->cookie('foo');
Access message cookies, usually L<Mojo::Cookie::Request> or
L<Mojo::Cookie::Response> objects. Note that this method caches all data, so
it should not be called before all headers have been received.
say $message->cookie('foo')->value;
=head2 C<cookies>
my $cookies = $message->cookies;
Access message cookies, meant to be overloaded in a subclass.
=head2 C<dom>
my $dom = $message->dom;
my $collection = $message->dom('a[href]');
Turns message body into a L<Mojo::DOM> object and takes an optional selector
to perform a C<find> on it right away, which returns a collection.
# Perform "find" right away
$message->dom('h1, h2, h3')->each(sub { say $_->text });
# Use everything else Mojo::DOM has to offer
say $message->dom->at('title')->text;
$message->dom->html->body->children->each(sub { say $_->type });
=head2 C<error>
my $message = $message->error;
my ($message, $code) = $message->error;
$message = $message->error('Parser error.');
$message = $message->error('Parser error.', 500);
Parser errors and codes.
=head2 C<fix_headers>
$message = $message->fix_headers;
Make sure message has all required headers for the current HTTP version.
=head2 C<get_body_chunk>
my $string = $message->get_body_chunk($offset);
Get a chunk of body data starting from a specific position.
=head2 C<get_header_chunk>
my $string = $message->get_header_chunk($offset);
Get a chunk of header data, starting from a specific position.
=head2 C<get_start_line_chunk>
my $string = $message->get_start_line_chunk($offset);
Get a chunk of start line data starting from a specific position.
=head2 C<has_leftovers>
my $success = $message->has_leftovers;
Alias for L<Mojo::Content/"has_leftovers">.
=head2 C<header_size>
my $size = $message->header_size;
Size of headers in bytes.
=head2 C<headers>
my $headers = $message->headers;
Alias for L<Mojo::Content/"headers">.
say $message->headers->content_type;
=head2 C<is_chunked>
my $success = $message->is_chunked;
Alias for L<Mojo::Content/"is_chunked">.
=head2 C<is_dynamic>
my $success = $message->is_dynamic;
Alias for L<Mojo::Content/"is_dynamic">.
=head2 C<is_finished>
my $success = $message->is_finished;
Check if parser is finished.
=head2 C<is_limit_exceeded>
my $success = $message->is_limit_exceeded;
Check if message has exceeded C<max_line_size> or C<max_message_size>.
=head2 C<is_multipart>
my $success = $message->is_multipart;
Alias for L<Mojo::Content/"is_multipart">.
=head2 C<json>
my $hash = $message->json;
my $array = $message->json;
my $value = $message->json('/foo/bar');
Decode JSON message body directly using L<Mojo::JSON> if possible, returns
C<undef> otherwise. An optional JSON Pointer can be used to extract a specific
value with L<Mojo::JSON::Pointer>.
say $message->json->{foo}{bar}[23];
say $message->json('/foo/bar/23');
=head2 C<leftovers>
my $bytes = $message->leftovers;
Alias for L<Mojo::Content/"leftovers">.
=head2 C<max_line_size>
$message->max_line_size(1024);
Alias for L<Mojo::Headers/"max_line_size">.
=head2 C<param>
my @names = $message->param;
my $foo = $message->param('foo');
my @foo = $message->param('foo');
Access C<POST> parameters. Note that this method caches all data, so it should
not be called before the entire message body has been received.
=head2 C<parse>
$message = $message->parse('HTTP/1.1 200 OK...');
Parse message chunk.
=head2 C<parse_until_body>
$message = $message->parse_until_body('HTTP/1.1 200 OK...');
Parse message chunk until the body is reached.
=head2 C<start_line_size>
my $size = $message->start_line_size;
Size of the start line in bytes.
=head2 C<to_string>
my $string = $message->to_string;
Render whole message.
=head2 C<upload>
my $upload = $message->upload('foo');
my @uploads = $message->upload('foo');
Access C<multipart/form-data> file uploads, usually L<Mojo::Upload> objects.
Note that this method caches all data, so it should not be called before the
entire message body has been received.
say $message->upload('foo')->asset->slurp;
=head2 C<uploads>
my $uploads = $message->uploads;
All C<multipart/form-data> file uploads, usually L<Mojo::Upload> objects.
say $message->uploads->[2]->filename;
=head2 C<write>
$message->write('Hello!');
$message->write('Hello!', sub {...});
Alias for L<Mojo::Content/"write">.
=head2 C<write_chunk>
$message->write_chunk('Hello!');
$message->write_chunk('Hello!', sub {...});
Alias for L<Mojo::Content/"write_headers">.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
=cut
|