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
|
# Copyright (C) 2008-2010, Sebastian Riedel.
package Mojo::Headers;
use strict;
use warnings;
use base 'Mojo::Stateful';
use overload '""' => sub { shift->to_string }, fallback => 1;
use Mojo::ByteStream;
__PACKAGE__->attr(buffer => sub { Mojo::ByteStream->new });
# Filter regex
my $FILTER_RE = qr/[[:cntrl:]\(\|\)\<\>\@\,\;\:\\\"\/\[\]\?\=\{\}\s]/;
my @GENERAL_HEADERS = qw/
Cache-Control
Connection
Date
Pragma
Trailer
Transfer-Encoding
Upgrade
Via
Warning
/;
my @REQUEST_HEADERS = qw/
Accept
Accept-Charset
Accept-Encoding
Accept-Language
Authorization
Expect
From
Host
If-Match
If-Modified-Since
If-None-Match
If-Range
If-Unmodified-Since
Max-Forwards
Proxy-Authorization
Range
Referer
TE
User-Agent
/;
my @RESPONSE_HEADERS = qw/
Accept-Ranges
Age
ETag
Location
Proxy-Authenticate
Retry-After
Server
Vary
WWW-Authenticate
/;
my @ENTITY_HEADERS = qw/
Allow
Content-Encoding
Content-Language
Content-Length
Content-Location
Content-MD5
Content-Range
Content-Type
Expires
Last-Modified
/;
my @WEBSOCKET_HEADERS = qw/
Origin
Sec-WebSocket-Key1
Sec-WebSocket-Key2
Sec-WebSocket-Origin
Sec-WebSocket-Location
Sec-WebSocket-Protocol
/;
my (%ORDERED_HEADERS, %NORMALCASE_HEADERS);
{
my $i = 1;
my @headers = (
@GENERAL_HEADERS, @REQUEST_HEADERS, @RESPONSE_HEADERS,
@ENTITY_HEADERS, @WEBSOCKET_HEADERS
);
for my $name (@headers) {
my $lowercase = lc $name;
$ORDERED_HEADERS{$lowercase} = $i;
$NORMALCASE_HEADERS{$lowercase} = $name;
$i++;
}
}
sub accept_language { shift->header('Accept-Language' => @_) }
sub authorization { shift->header('Authorization' => @_) }
sub add {
my $self = shift;
my $name = shift;
# Filter illegal characters from header name
# (1*<any CHAR except CTLs or separators>)
$name =~ s/$FILTER_RE//go;
# Make sure we have a normal case entry for name
my $lcname = lc $name;
unless ($NORMALCASE_HEADERS{$lcname}) {
$NORMALCASE_HEADERS{$lcname} = $name;
}
$name = $lcname;
# Filter values
my @values;
for my $v (@_) {
push @values, [];
for my $value (@{ref $v eq 'ARRAY' ? $v : [$v]}) {
# Filter control characters
$value = '' unless defined $value;
$value =~ s/[[:cntrl:]]//g;
push @{$values[-1]}, $value;
}
}
# Add line
push @{$self->{_headers}->{$name}}, @values;
return $self;
}
sub build {
my $self = shift;
# Prepare headers
my @headers;
for my $name (@{$self->names}) {
# Multiline value
for my $values ($self->header($name)) {
my $value = join "\x0d\x0a ", @$values;
push @headers, "$name: $value";
}
}
# Format headers
my $headers = join "\x0d\x0a", @headers;
return length $headers ? $headers : undef;
}
sub connection { shift->header(Connection => @_) }
sub content_disposition { shift->header('Content-Disposition' => @_) }
sub content_length { shift->header('Content-Length' => @_) }
sub content_transfer_encoding {
shift->header('Content-Transfer-Encoding' => @_);
}
sub content_type { shift->header('Content-Type' => @_) }
sub cookie { shift->header(Cookie => @_) }
sub date { shift->header(Date => @_) }
sub expect { shift->header(Expect => @_) }
sub from_hash {
my $self = shift;
my $hash = shift;
# Empty hash deletes all headers
if (keys %{$hash} == 0) {
$self->{_headers} = {};
return $self;
}
# Merge
foreach my $header (keys %{$hash}) {
my $value = $hash->{$header};
$self->add($header => ref $value eq 'ARRAY' ? @$value : $value);
}
return $self;
}
# Will you be my mommy? You smell like dead bunnies...
sub header {
my $self = shift;
my $name = shift;
# Set
if (@_) {
$self->remove($name);
return $self->add($name, @_);
}
# Get
my $headers;
return unless $headers = $self->{_headers}->{lc $name};
# String
unless (wantarray) {
# Format
my $string = '';
for my $header (@$headers) {
$string .= ', ' if $string;
$string .= join ', ', @$header;
}
return $string;
}
# Array
return @$headers;
}
sub host { shift->header(Host => @_) }
sub location { shift->header(Location => @_) }
sub names {
my $self = shift;
# Names
my @names = keys %{$self->{_headers}};
# Sort
@names = sort {
($ORDERED_HEADERS{$a} || 999) <=> ($ORDERED_HEADERS{$b} || 999)
|| $a cmp $b
} @names;
# Normal case
my @headers;
for my $name (@names) {
push @headers, $NORMALCASE_HEADERS{$name} || $name;
}
return \@headers;
}
sub origin { shift->header(Origin => @_) }
sub parse {
my ($self, $chunk) = @_;
# Buffer
$self->buffer->add_chunk($chunk);
# Parse headers
my $buffer = $self->buffer;
my $headers = $self->{_buffer} || [];
$self->state('headers') if $self->is_state('start');
while (1) {
# Line
my $line = $buffer->get_line;
last unless defined $line;
# New header
if ($line =~ /^(\S+)\s*:\s*(.*)/) { push @$headers, $1, $2 }
# Multiline
elsif (@$headers && $line =~ s/^\s+//) {
$headers->[-1] .= " " . $line;
}
# Empty line
else {
# Store headers
for (my $i = 0; $i < @$headers; $i += 2) {
$self->add($headers->[$i], $headers->[$i + 1]);
}
# Done
$self->done;
$self->{_buffer} = [];
return $buffer;
}
}
$self->{_buffer} = $headers;
return;
}
sub proxy_authenticate { shift->header('Proxy-Authenticate' => @_) }
sub proxy_authorization { shift->header('Proxy-Authorization' => @_) }
sub referrer { shift->header(Referer => @_) }
sub remove {
my ($self, $name) = @_;
delete $self->{_headers}->{lc $name};
return $self;
}
sub server { shift->header(Server => @_) }
sub set_cookie { shift->header('Set-Cookie' => @_) }
sub set_cookie2 { shift->header('Set-Cookie2' => @_) }
sub status { shift->header(Status => @_) }
sub to_hash {
my $self = shift;
my %params = @_;
# Build
my $hash = {};
foreach my $header (@{$self->names}) {
# Header
my @headers = $self->header($header);
# Nested arrayrefs
if ($params{arrayref}) { $hash->{$header} = [@headers] }
# Flat arrayref
else {
# Turn single value arrayrefs into strings
foreach my $h (@headers) { $h = $h->[0] if @$h == 1 }
$hash->{$header} = @headers > 1 ? [@headers] : $headers[0];
}
}
return $hash;
}
sub to_string { shift->build(@_) }
sub trailer { shift->header(Trailer => @_) }
sub transfer_encoding { shift->header('Transfer-Encoding' => @_) }
sub upgrade { shift->header(Upgrade => @_) }
sub user_agent { shift->header('User-Agent' => @_) }
sub sec_websocket_key1 { shift->header('Sec-WebSocket-Key1' => @_) }
sub sec_websocket_key2 { shift->header('Sec-WebSocket-Key2' => @_) }
sub sec_websocket_location { shift->header('Sec-WebSocket-Location' => @_) }
sub sec_websocket_origin { shift->header('Sec-WebSocket-Origin' => @_) }
sub sec_websocket_protocol { shift->header('Sec-WebSocket-Protocol' => @_) }
sub www_authenticate { shift->header('WWW-Authenticate' => @_) }
1;
__END__
=head1 NAME
Mojo::Headers - Headers
=head1 SYNOPSIS
use Mojo::Headers;
my $headers = Mojo::Headers->new;
$headers->content_type('text/plain');
$headers->parse("Content-Type: text/html\n\n");
print "$headers";
=head1 DESCRIPTION
L<Mojo::Headers> is a container and parser for HTTP headers.
=head1 ATTRIBUTES
L<Mojo::Headers> inherits all attributes from L<Mojo::Stateful> and
implements the following new ones.
=head2 C<buffer>
my $buffer = $headers->buffer;
$headers = $headers->buffer(Mojo::ByteStream->new);
The Buffer to use for header parsing, by default a L<Mojo::ByteStream>
object.
=head1 METHODS
L<Mojo::Headers> inherits all methods from L<Mojo::Stateful> and implements
the following new ones.
=head2 C<accept_language>
my $accept_language = $headers->accept_language;
$headers = $headers->accept_language('de, en');
Shortcut for the C<Accept-Language> header.
=head2 C<add>
$headers = $headers->add('Content-Type', 'text/plain');
Add one or more header lines.
=head2 C<authorization>
my $authorization = $headers->authorization;
$headers = $headers->authorization('Basic Zm9vOmJhcg==');
Shortcut for the C<Authorization> header.
=head2 C<to_string>
=head2 C<build>
my $string = $headers->build;
my $string = $headers->to_string;
my $string = "$headers";
Format headers suitable for HTTP 1.1 messages.
=head2 C<connection>
my $connection = $headers->connection;
$headers = $headers->connection('close');
Shortcut for the C<Connection> header.
=head2 C<content_disposition>
my $content_disposition = $headers->content_disposition;
$headers = $headers->content_disposition('foo');
Shortcut for the C<Content-Disposition> header.
=head2 C<content_length>
my $content_length = $headers->content_length;
$headers = $headers->content_length(4000);
Shortcut for the C<Content-Length> header.
=head2 C<content_transfer_encoding>
my $encoding = $headers->content_transfer_encoding;
$headers = $headers->content_transfer_encoding('foo');
Shortcut for the C<Content-Transfer-Encoding> header.
=head2 C<content_type>
my $content_type = $headers->content_type;
$headers = $headers->content_type('text/plain');
Shortcut for the C<Content-Type> header.
=head2 C<cookie>
my $cookie = $headers->cookie;
$headers = $headers->cookie('$Version=1; f=b; $Path=/');
Shortcut for the C<Cookie> header.
=head2 C<date>
my $date = $headers->date;
$headers = $headers->date('Sun, 17 Aug 2008 16:27:35 GMT');
Shortcut for the C<Date> header.
=head2 C<expect>
my $expect = $headers->expect;
$headers = $headers->expect('100-continue');
Shortcut for the C<Expect> header.
=head2 C<from_hash>
$headers = $headers->from_hash({'Content-Type' => 'text/html'});
Parse headers from a hash.
=head2 C<header>
my $string = $headers->header('Content-Type');
my @lines = $headers->header('Content-Type');
$headers = $headers->header('Content-Type' => 'text/plain');
Get or replace the current header values.
Note that this method is context sensitive and will turn all header lines
into a single one in scalar context.
=head2 C<host>
my $host = $headers->host;
$headers = $headers->host('127.0.0.1');
Shortcut for the C<Host> header.
=head2 C<location>
my $location = $headers->location;
$headers = $headers->location('http://127.0.0.1/foo');
Shortcut for the C<Location> header.
=head2 C<names>
my $names = $headers->names;
Generate a list of all currently defined headers.
=head2 C<origin>
my $origin = $headers->origin;
$headers = $headers->origin('http://example.com');
Shortcut for the C<Origin> header.
=head2 C<parse>
my $success = $headers->parse("Content-Type: text/foo\n\n");
Parse formatted headers.
=head2 C<proxy_authenticate>
my $authenticate = $headers->proxy_authenticate;
$headers = $headers->proxy_authenticate('Basic "realm"');
Shortcut for the C<Proxy-Authenticate> header.
=head2 C<proxy_authorization>
my $proxy_authorization = $headers->proxy_authorization;
$headers = $headers->proxy_authorization('Basic Zm9vOmJhcg==');
Shortcut for the C<Proxy-Authorization> header.
=head2 C<referrer>
my $referrer = $headers->referrer;
$headers = $headers->referrer('http://mojolicious.org');
Shortcut for the C<Referer> header, there was a typo in RFC 2068 which
resulted in C<Referer> becoming an official header.
=head2 C<remove>
$headers = $headers->remove('Content-Type');
Remove a header.
=head2 C<sec_websocket_key1>
my $key1 = $headers->sec_websocket_key1;
$headers = $headers->sec_websocket_key1('4 @1 46546xW%0l 1 5');
Shortcut for the C<Sec-WebSocket-Key1> header.
=head2 C<sec_websocket_key2>
my $key2 = $headers->sec_websocket_key2;
$headers = $headers->sec_websocket_key2('12998 5 Y3 1 .P00');
Shortcut for the C<Sec-WebSocket-Key2> header.
=head2 C<sec_websocket_location>
my $location = $headers->sec_websocket_location;
$headers = $headers->sec_websocket_location('ws://example.com/demo');
Shortcut for the C<Sec-WebSocket-Location> header.
=head2 C<sec_websocket_origin>
my $origin = $headers->sec_websocket_origin;
$headers = $headers->sec_websocket_origin('http://example.com');
Shortcut for the C<Sec-WebSocket-Origin> header.
=head2 C<sec_websocket_protocol>
my $protocol = $headers->sec_websocket_protocol;
$headers = $headers->sec_websocket_protocol('sample');
Shortcut for the C<Sec-WebSocket-Protocol> header.
=head2 C<server>
my $server = $headers->server;
$headers = $headers->server('Mojo');
Shortcut for the C<Server> header.
=head2 C<set_cookie>
my $set_cookie = $headers->set_cookie;
$headers = $headers->set_cookie('f=b; Version=1; Path=/');
Shortcut for the C<Set-Cookie> header.
=head2 C<set_cookie2>
my $set_cookie2 = $headers->set_cookie2;
$headers = $headers->set_cookie2('f=b; Version=1; Path=/');
Shortcut for the C<Set-Cookie2> header.
=head2 C<status>
my $status = $headers->status;
$headers = $headers->status('200 OK');
Shortcut for the C<Status> header.
=head2 C<to_hash>
my $hash = $headers->to_hash;
my $hash = $headers->to_hash(arrayref => 1);
Format headers as a hash.
Nested arrayrefs to represent multi line values are optional.
=head2 C<trailer>
my $trailer = $headers->trailer;
$headers = $headers->trailer('X-Foo');
Shortcut for the C<Trailer> header.
=head2 C<transfer_encoding>
my $transfer_encoding = $headers->transfer_encoding;
$headers = $headers->transfer_encoding('chunked');
Shortcut for the C<Transfer-Encoding> header.
=head2 C<upgrade>
my $upgrade = $headers->upgrade;
$headers = $headers->upgrade('WebSocket');
Shortcut for the C<Upgrade> header.
=head2 C<user_agent>
my $user_agent = $headers->user_agent;
$headers = $headers->user_agent('Mojo/1.0');
Shortcut for the C<User-Agent> header.
=head2 C<www_authenticate>
my $authenticate = $headers->www_authenticate;
$headers = $headers->www_authenticate('Basic "realm"');
Shortcut for the C<WWW-Authenticate> header.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
|