/usr/share/perl5/HTTP/CookieJar.pm is in libhttp-cookiejar-perl 0.006-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 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 | use v5.10;
use strict;
use warnings;
package HTTP::CookieJar;
# ABSTRACT: A minimalist HTTP user agent cookie jar
our $VERSION = '0.006'; # VERSION
use Carp ();
use HTTP::Date ();
my $HAS_MPS = eval { require Mozilla::PublicSuffix; 1 };
# =construct new
#
# my $jar = HTTP::CookieJar->new;
#
# Return a new, empty cookie jar
#
# =cut
sub new {
my ($class) = @_;
bless { store => {} }, $class;
}
# =method add
#
# $jar->add(
# "http://www.example.com/", "lang=en-US; Path=/; Domain=example.com"
# );
#
# Given a request URL and a C<Set-Cookie> header string, attempts to adds the
# cookie to the jar. If the cookie is expired, instead it deletes any matching
# cookie from the jar. A C<Max-Age> attribute will be converted to an absolute
# C<Expires> attribute.
#
# It will throw an exception if the request URL is missing or invalid. Returns true if
# successful cookie processing or undef/empty-list on failure.
#
# =cut
sub add {
my ( $self, $request, $cookie ) = @_;
return unless length $cookie;
my ( $scheme, $host, $port, $request_path ) = eval { _split_url($request) };
Carp::croak($@) if $@;
return unless my $parse = _parse_cookie($cookie);
my $name = $parse->{name};
# check and normalize domain
if ( exists $parse->{domain} ) {
_normalize_domain( $host, $parse ) or return;
}
else {
$parse->{domain} = $host;
$parse->{hostonly} = 1;
}
my $domain = $parse->{domain};
# normalize path
if ( !exists $parse->{path} || substr( $parse->{path}, 0, 1 ) ne "/" ) {
$parse->{path} = _default_path($request_path);
}
my $path = $parse->{path};
# set timestamps and normalize expires
my $now = $parse->{creation_time} = $parse->{last_access_time} = time;
if ( exists $parse->{'max-age'} ) {
$parse->{expires} = $now + delete $parse->{'max-age'};
}
# update creation time from old cookie, if exists
if ( my $old = $self->{store}{$domain}{$path}{$name} ) {
$parse->{creation_time} = $old->{creation_time};
}
# if cookie has expired, purge any old matching cookie, too
if ( defined $parse->{expires} && $parse->{expires} < $now ) {
delete $self->{store}{$domain}{$path}{$name};
}
else {
$self->{store}{$domain}{$path}{$name} = $parse;
}
return 1;
}
# =method clear
#
# $jar->clear
#
# Empties the cookie jar.
#
# =cut
sub clear {
my ($self) = @_;
$self->{store} = {};
return 1;
}
# =method cookies_for
#
# my @cookies = $jar->cookies_for("http://www.example.com/foo/bar");
#
# Given a request URL, returns a list of hash references representing cookies
# that should be sent. The hash references are copies -- changing values
# will not change the cookies in the jar.
#
# Cookies set C<secure> will only be returned if the request scheme is C<https>.
# Expired cookies will not be returned.
#
# Keys of a cookie hash reference might include:
#
# =for :list
# * name -- the name of the cookie
# * value -- the value of the cookie
# * domain -- the domain name to which the cookie applies
# * path -- the path to which the cookie applies
# * expires -- if present, when the cookie expires in epoch seconds
# * secure -- if present, the cookie was set C<Secure>
# * httponly -- if present, the cookie was set C<HttpOnly>
# * hostonly -- if present, the cookie may only be used with the domain as a host
# * creation_time -- epoch seconds since the cookie was first stored
# * last_access_time -- epoch seconds since the cookie was last stored
#
# Keep in mind that C<httponly> means it should only be used in requests and not
# made available via Javascript, etc. This is pretty meaningless for Perl user
# agents.
#
# Generally, user agents should use the C<cookie_header> method instead.
#
# It will throw an exception if the request URL is missing or invalid.
#
# =cut
sub cookies_for {
my ( $self, $request ) = @_;
my ( $scheme, $host, $port, $request_path ) = eval { _split_url($request) };
Carp::croak($@) if $@;
my @found;
my $now = time;
for my $cookie ( $self->_all_cookies ) {
next if $cookie->{hostonly} && $host ne $cookie->{domain};
next if $cookie->{secure} && $scheme ne 'https';
next if defined( $cookie->{expires} ) && $cookie->{expires} < $now;
next unless _domain_match( $host, $cookie->{domain} );
next unless _path_match( $request_path, $cookie->{path} );
push @found, $cookie;
}
@found = sort {
length( $b->{path} ) <=> length( $a->{path} )
|| $a->{creation_time} <=> $b->{creation_time}
} @found;
return @found;
}
# =method cookie_header
#
# my $header = $jar->cookie_header("http://www.example.com/foo/bar");
#
# Given a request URL, returns a correctly-formatted string with all relevant
# cookies for the request. This string is ready to be used in a C<Cookie> header
# in an HTTP request. E.g.:
#
# SID=31d4d96e407aad42; lang=en-US
#
# It follows the same exclusion rules as C<cookies_for>.
#
# If the request is invalid or no cookies apply, it will return an empty string.
#
# =cut
sub cookie_header {
my ( $self, $req ) = @_;
return join( "; ", map { "$_->{name}=$_->{value}" } $self->cookies_for($req) );
}
# =method dump_cookies
#
# my @list = $jar->dump_cookies;
# my @list = $jar->dump_cookies( { persistent => 1 } );
#
# Returns a list of raw cookies in string form. The strings resemble what
# would be received from C<Set-Cookie> headers, but with additional internal
# fields. The list is only intended for use with C<load_cookies> to allow
# cookie jar persistence.
#
# If a hash reference with a true C<persistent> key is given as an argument,
# cookies without an C<Expires> time (i.e. "session cookies") will be omitted.
#
# Here is a trivial example of saving a cookie jar file with L<Path::Tiny>:
#
# path("jar.txt")->spew( join "\n", $jar->dump_cookies );
#
# =cut
sub dump_cookies {
my ( $self, $args ) = @_;
my @list;
for my $c ( $self->_all_cookies ) {
my @parts = "$c->{name}=$c->{value}";
if ( defined $c->{expires} ) {
push @parts, 'Expires=' . HTTP::Date::time2str( $c->{expires} );
}
else {
next if $args->{persistent};
}
for my $attr (qw/Domain Path Creation_Time Last_Access_Time/) {
push @parts, "$attr=$c->{lc $attr}" if defined $c->{ lc $attr };
}
for my $attr (qw/Secure HttpOnly HostOnly/) {
push @parts, $attr if $c->{ lc $attr };
}
push @list, join( "; ", @parts );
}
return @list;
}
# =method load_cookies
#
# $jar->load_cookies( @cookies );
#
# Given a list of cookie strings from C<dump_cookies>, it adds them to
# the cookie jar. Cookies added in this way will supersede any existing
# cookies with similar domain, path and name.
#
# It returns the jar object for convenience when loading a new object:
#
# my $jar = HTTP::CookieJar->new->load_cookies( @cookies );
#
# Here is a trivial example of loading a cookie jar file with L<Path::Tiny>:
#
# my $jar = HTTP::CookieJar->new->load_cookies(
# path("jar.txt")->lines
# );
#
# =cut
sub load_cookies {
my ( $self, @cookies ) = @_;
for my $cookie (@cookies) {
my $p = _parse_cookie( $cookie, 1 );
next unless exists $p->{domain} && exists $p->{path};
$p->{$_} //= time for qw/creation_time last_access_time/;
$self->{store}{ $p->{domain} }{ $p->{path} }{ $p->{name} } = $p;
}
return $self;
}
#--------------------------------------------------------------------------#
# private methods
#--------------------------------------------------------------------------#
# return a copy of all cookies
sub _all_cookies {
return map {
{ %$_ }
} map { values %$_ } map { values %$_ } values %{ $_[0]->{store} };
}
#--------------------------------------------------------------------------#
# Helper subroutines
#--------------------------------------------------------------------------#
my $pub_re = qr/(?:domain|path|expires|max-age|httponly|secure)/;
my $pvt_re = qr/(?:$pub_re|creation_time|last_access_time|hostonly)/;
sub _parse_cookie {
my ( $cookie, $private ) = @_;
my ( $kvp, @attrs ) = split /;/, $cookie // '';
my ( $name, $value ) =
map { s/^\s*//; s/\s*$//; $_ } split( /=/, $kvp // '', 2 ); ## no critic
return unless length $name;
my $parse = { name => $name, value => $value // "" };
for my $s (@attrs) {
next unless defined $s && $s =~ /\S/;
my ( $k, $v ) = map { s/^\s*//; s/\s*$//; $_ } split( /=/, $s, 2 ); ## no critic
$k = lc $k;
next unless $private ? ( $k =~ m/^$pvt_re$/ ) : ( $k =~ m/^$pub_re$/ );
$v = 1 if $k =~ m/^(?:httponly|secure|hostonly)$/; # boolean flag if present
$v = HTTP::Date::str2time($v) // 0 if $k eq 'expires'; # convert to epoch
next unless length $v;
$v =~ s{^\.}{} if $k eq 'domain'; # strip leading dot
$v =~ s/%([0-9A-Fa-f]{2})/chr(hex($1))/eg if $k eq 'path'; # unescape
$parse->{$k} = $v;
}
return $parse;
}
sub _domain_match {
my ( $string, $dom_string ) = @_;
return 1 if $dom_string eq $string;
return unless $string =~ /[a-z]/i; # non-numeric
if ( $string =~ s{\Q$dom_string\E$}{} ) {
return substr( $string, -1, 1 ) eq '.'; # "foo."
}
return;
}
sub _normalize_domain {
my ( $host, $parse ) = @_;
if ($HAS_MPS) {
my $host_pub_suff = eval { Mozilla::PublicSuffix::public_suffix($host) } // '';
if ( _domain_match( $host_pub_suff, $parse->{domain} ) ) {
if ( $parse->{domain} eq $host ) {
return $parse->{hostonly} = 1;
}
else {
return;
}
}
}
if ( $parse->{domain} !~ m{\.} && $parse->{domain} eq $host ) {
return $parse->{hostonly} = 1;
}
return _domain_match( $host, $parse->{domain} );
}
sub _default_path {
my ($path) = @_;
return "/" if !length $path || substr( $path, 0, 1 ) ne "/";
my ($default) = $path =~ m{^(.*)/}; # greedy to last /
return length($default) ? $default : "/";
}
sub _path_match {
my ( $req_path, $cookie_path ) = @_;
return 1 if $req_path eq $cookie_path;
if ( $req_path =~ m{^\Q$cookie_path\E(.*)} ) {
my $rest = $1;
return 1 if substr( $cookie_path, -1, 1 ) eq '/';
return 1 if substr( $rest, 0, 1 ) eq '/';
}
return;
}
sub _split_url {
my $url = shift;
die(qq/No URL provided\n/) unless length $url;
# URI regex adapted from the URI module
# XXX path_query here really chops at ? or # to get just the path and not the query
my ( $scheme, $authority, $path_query ) = $url =~ m<\A([^:/?#]+)://([^/?#]*)([^#?]*)>
or die(qq/Cannot parse URL: '$url'\n/);
$scheme = lc $scheme;
$path_query = "/$path_query" unless $path_query =~ m<\A/>;
$path_query =~ s/%([0-9A-Fa-f]{2})/chr(hex($1))/eg;
my $host = ( length($authority) ) ? lc $authority : 'localhost';
$host =~ s/\A[^@]*@//; # userinfo
my $port = do {
$host =~ s/:([0-9]*)\z// && length $1
? $1
: ( $scheme eq 'http' ? 80 : $scheme eq 'https' ? 443 : undef );
};
return ( $scheme, $host, $port, $path_query );
}
1;
# vim: ts=4 sts=4 sw=4 et:
__END__
=pod
=encoding UTF-8
=head1 NAME
HTTP::CookieJar - A minimalist HTTP user agent cookie jar
=head1 VERSION
version 0.006
=head1 SYNOPSIS
use HTTP::CookieJar;
my $jar = HTTP::CookieJar->new;
# add cookie received from a request
$jar->add( "http://www.example.com/", "CUSTOMER=WILE_E_COYOTE; Path=/; Domain=example.com" );
# extract cookie header for a given request
my $cookie = $jar->cookie_header( "http://www.example.com/" );
=head1 DESCRIPTION
This module implements a minimalist HTTP user agent cookie jar in
conformance with L<RFC 6265|http://tools.ietf.org/html/rfc6265>.
Unlike the commonly used L<HTTP::Cookies> module, this module does
not require use of L<HTTP::Request> and L<HTTP::Response> objects.
An LWP-compatible adapter is available as L<HTTP::CookieJar::LWP>.
=head1 CONSTRUCTORS
=head2 new
my $jar = HTTP::CookieJar->new;
Return a new, empty cookie jar
=head1 METHODS
=head2 add
$jar->add(
"http://www.example.com/", "lang=en-US; Path=/; Domain=example.com"
);
Given a request URL and a C<Set-Cookie> header string, attempts to adds the
cookie to the jar. If the cookie is expired, instead it deletes any matching
cookie from the jar. A C<Max-Age> attribute will be converted to an absolute
C<Expires> attribute.
It will throw an exception if the request URL is missing or invalid. Returns true if
successful cookie processing or undef/empty-list on failure.
=head2 clear
$jar->clear
Empties the cookie jar.
=head2 cookies_for
my @cookies = $jar->cookies_for("http://www.example.com/foo/bar");
Given a request URL, returns a list of hash references representing cookies
that should be sent. The hash references are copies -- changing values
will not change the cookies in the jar.
Cookies set C<secure> will only be returned if the request scheme is C<https>.
Expired cookies will not be returned.
Keys of a cookie hash reference might include:
=over 4
=item *
name -- the name of the cookie
=item *
value -- the value of the cookie
=item *
domain -- the domain name to which the cookie applies
=item *
path -- the path to which the cookie applies
=item *
expires -- if present, when the cookie expires in epoch seconds
=item *
secure -- if present, the cookie was set C<Secure>
=item *
httponly -- if present, the cookie was set C<HttpOnly>
=item *
hostonly -- if present, the cookie may only be used with the domain as a host
=item *
creation_time -- epoch seconds since the cookie was first stored
=item *
last_access_time -- epoch seconds since the cookie was last stored
=back
Keep in mind that C<httponly> means it should only be used in requests and not
made available via Javascript, etc. This is pretty meaningless for Perl user
agents.
Generally, user agents should use the C<cookie_header> method instead.
It will throw an exception if the request URL is missing or invalid.
=head2 cookie_header
my $header = $jar->cookie_header("http://www.example.com/foo/bar");
Given a request URL, returns a correctly-formatted string with all relevant
cookies for the request. This string is ready to be used in a C<Cookie> header
in an HTTP request. E.g.:
SID=31d4d96e407aad42; lang=en-US
It follows the same exclusion rules as C<cookies_for>.
If the request is invalid or no cookies apply, it will return an empty string.
=head2 dump_cookies
my @list = $jar->dump_cookies;
my @list = $jar->dump_cookies( { persistent => 1 } );
Returns a list of raw cookies in string form. The strings resemble what
would be received from C<Set-Cookie> headers, but with additional internal
fields. The list is only intended for use with C<load_cookies> to allow
cookie jar persistence.
If a hash reference with a true C<persistent> key is given as an argument,
cookies without an C<Expires> time (i.e. "session cookies") will be omitted.
Here is a trivial example of saving a cookie jar file with L<Path::Tiny>:
path("jar.txt")->spew( join "\n", $jar->dump_cookies );
=head2 load_cookies
$jar->load_cookies( @cookies );
Given a list of cookie strings from C<dump_cookies>, it adds them to
the cookie jar. Cookies added in this way will supersede any existing
cookies with similar domain, path and name.
It returns the jar object for convenience when loading a new object:
my $jar = HTTP::CookieJar->new->load_cookies( @cookies );
Here is a trivial example of loading a cookie jar file with L<Path::Tiny>:
my $jar = HTTP::CookieJar->new->load_cookies(
path("jar.txt")->lines
);
=for Pod::Coverage method_names_here
=head1 LIMITATIONS AND CAVEATS
=head2 RFC 6265 vs prior standards
This modules adheres as closely as possible to the user-agent rules
of RFC 6265. Therefore, it does not handle nor generate C<Set-Cookie2>
and C<Cookie2> headers, implement C<.local> suffixes, or do path/domain
matching in accord with prior RFC's.
=head2 Internationalized domain names
Internationalized domain names given in requests must be properly
encoded in ASCII form.
=head2 Public suffixes
If L<Mozilla::PublicSuffix> is installed, cookie domains will be checked
against the public suffix list. Public suffix cookies are only allowed
as host-only cookies.
=head2 Third-party cookies
According to RFC 6265, a cookie may be accepted only if has no C<Domain>
attribute (in which case it is "host-only") or if the C<Domain> attribute is a
suffix of the request URL. This effectively prohibits Site A from setting a
cookie for unrelated Site B, which is one potential third-party cookie vector.
=head1 SEE ALSO
=over 4
=item *
L<HTTP::Cookies>
=item *
L<Mojo::UserAgent::CookieJar>
=back
=for :stopwords cpan testmatrix url annocpan anno bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan
=head1 SUPPORT
=head2 Bugs / Feature Requests
Please report any bugs or feature requests through the issue tracker
at L<https://github.com/dagolden/HTTP-CookieJar/issues>.
You will be notified automatically of any progress on your issue.
=head2 Source Code
This is open source software. The code repository is available for
public review and contribution under the terms of the license.
L<https://github.com/dagolden/HTTP-CookieJar>
git clone https://github.com/dagolden/HTTP-CookieJar.git
=head1 AUTHOR
David Golden <dagolden@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2013 by David Golden.
This is free software, licensed under:
The Apache License, Version 2.0, January 2004
=cut
|