📄 cookies.pm
字号:
} $version = 0 unless defined $version; my @array = ($version, $val,$port, $path_spec, $secure, $expires, $discard); push(@array, {%$rest}) if defined($rest) && %$rest; # trim off undefined values at end pop(@array) while !defined $array[-1]; $self->{COOKIES}{$domain}{$path}{$key} = \@array; $self;}sub save{ my $self = shift; my $file = shift || $self->{'file'} || return; local(*FILE); open(FILE, ">$file") or die "Can't open $file: $!"; print FILE "#LWP-Cookies-1.0\n"; print FILE $self->as_string(!$self->{ignore_discard}); close(FILE); 1;}sub load{ my $self = shift; my $file = shift || $self->{'file'} || return; local(*FILE, $_); local $/ = "\n"; # make sure we got standard record separator open(FILE, $file) or return; my $magic = <FILE>; unless ($magic =~ /^\#LWP-Cookies-(\d+\.\d+)/) { warn "$file does not seem to contain cookies"; return; } while (<FILE>) { next unless s/^Set-Cookie3:\s*//; chomp; my $cookie; for $cookie (split_header_words($_)) { my($key,$val) = splice(@$cookie, 0, 2); my %hash; while (@$cookie) { my $k = shift @$cookie; my $v = shift @$cookie; $hash{$k} = $v; } my $version = delete $hash{version}; my $path = delete $hash{path}; my $domain = delete $hash{domain}; my $port = delete $hash{port}; my $expires = str2time(delete $hash{expires}); my $path_spec = exists $hash{path_spec}; delete $hash{path_spec}; my $secure = exists $hash{secure}; delete $hash{secure}; my $discard = exists $hash{discard}; delete $hash{discard}; my @array = ($version,$val,$port, $path_spec,$secure,$expires,$discard); push(@array, \%hash) if %hash; $self->{COOKIES}{$domain}{$path}{$key} = \@array; } } close(FILE); 1;}sub revert{ my $self = shift; $self->clear->load; $self;}sub clear{ my $self = shift; if (@_ == 0) { $self->{COOKIES} = {}; } elsif (@_ == 1) { delete $self->{COOKIES}{$_[0]}; } elsif (@_ == 2) { delete $self->{COOKIES}{$_[0]}{$_[1]}; } elsif (@_ == 3) { delete $self->{COOKIES}{$_[0]}{$_[1]}{$_[2]}; } else { require Carp; Carp::carp('Usage: $c->clear([domain [,path [,key]]])'); } $self;}sub clear_temporary_cookies{ my($self) = @_; $self->scan(sub { if($_[9] or # "Discard" flag set not $_[8]) { # No expire field? $_[8] = -1; # Set the expire/max_age field $self->set_cookie(@_); # Clear the cookie } });}sub DESTROY{ my $self = shift; $self->save if $self->{'autosave'};}sub scan{ my($self, $cb) = @_; my($domain,$path,$key); for $domain (sort keys %{$self->{COOKIES}}) { for $path (sort keys %{$self->{COOKIES}{$domain}}) { for $key (sort keys %{$self->{COOKIES}{$domain}{$path}}) { my($version,$val,$port,$path_spec, $secure,$expires,$discard,$rest) = @{$self->{COOKIES}{$domain}{$path}{$key}}; $rest = {} unless defined($rest); &$cb($version,$key,$val,$path,$domain,$port, $path_spec,$secure,$expires,$discard,$rest); } } }}sub as_string{ my($self, $skip_discard) = @_; my @res; $self->scan(sub { my($version,$key,$val,$path,$domain,$port, $path_spec,$secure,$expires,$discard,$rest) = @_; return if $discard && $skip_discard; my @h = ($key, $val); push(@h, "path", $path); push(@h, "domain" => $domain); push(@h, "port" => $port) if defined $port; push(@h, "path_spec" => undef) if $path_spec; push(@h, "secure" => undef) if $secure; push(@h, "expires" => HTTP::Date::time2isoz($expires)) if $expires; push(@h, "discard" => undef) if $discard; my $k; for $k (sort keys %$rest) { push(@h, $k, $rest->{$k}); } push(@h, "version" => $version); push(@res, "Set-Cookie3: " . join_header_words(\@h)); }); join("\n", @res, "");}sub _host{ my($request, $url) = @_; if (my $h = $request->header("Host")) { $h =~ s/:\d+$//; # might have a port as well return lc($h); } return lc($url->host);}sub _url_path{ my $url = shift; my $path; if($url->can('epath')) { $path = $url->epath; # URI::URL method } else { $path = $url->path; # URI::_generic method } $path = "/" unless length $path; $path;}sub _normalize_path # so that plain string compare can be used{ my $x; $_[0] =~ s/%([0-9a-fA-F][0-9a-fA-F])/ $x = uc($1); $x eq "2F" || $x eq "25" ? "%$x" : pack("C", hex($x)); /eg; $_[0] =~ s/([\0-\x20\x7f-\xff])/sprintf("%%%02X",ord($1))/eg;}1;__END__=head1 NAMEHTTP::Cookies - HTTP cookie jars=head1 SYNOPSIS use HTTP::Cookies; $cookie_jar = HTTP::Cookies->new( file => "$ENV{'HOME'}/lwp_cookies.dat', autosave => 1, ); use LWP; my $browser = LWP::UserAgent->new; $browser->cookie_jar($cookie_jar);Or for an empty and temporary cookie jar: use LWP; my $browser = LWP::UserAgent->new; $browser->cookie_jar( {} );=head1 DESCRIPTIONThis class is for objects that represent a "cookie jar" -- that is, adatabase of all the HTTP cookies that a given LWP::UserAgent objectknows about.Cookies are a general mechanism which server side connections can useto both store and retrieve information on the client side of theconnection. For more information about cookies refer to<URL:http://www.netscape.com/newsref/std/cookie_spec.html> and<URL:http://www.cookiecentral.com/>. This module also implements thenew style cookies described in I<RFC 2965>.The two variants of cookies are supposed to be able to coexist happily.Instances of the class I<HTTP::Cookies> are able to store a collectionof Set-Cookie2: and Set-Cookie: headers and are able to use thisinformation to initialize Cookie-headers in I<HTTP::Request> objects.The state of a I<HTTP::Cookies> object can be saved in and restored fromfiles.=head1 METHODSThe following methods are provided:=over 4=item $cookie_jar = HTTP::Cookies->newThe constructor takes hash style parameters. The followingparameters are recognized: file: name of the file to restore cookies from and save cookies to autosave: save during destruction (bool) ignore_discard: save even cookies that are requested to be discarded (bool) hide_cookie2: do not add Cookie2 header to requestsFuture parameters might include (not yet implemented): max_cookies 300 max_cookies_per_domain 20 max_cookie_size 4096 no_cookies list of domain names that we never return cookies to=item $cookie_jar->add_cookie_header( $request )The add_cookie_header() method will set the appropriate Cookie:-headerfor the I<HTTP::Request> object given as argument. The $request musthave a valid url attribute before this method is called.=item $cookie_jar->extract_cookies( $response )The extract_cookies() method will look for Set-Cookie: andSet-Cookie2: headers in the I<HTTP::Response> object passed asargument. Any of these headers that are found are used to updatethe state of the $cookie_jar.=item $cookie_jar->set_cookie( $version, $key, $val, $path, $domain, $port, $path_spec, $secure, $maxage, $discard, \%rest )The set_cookie() method updates the state of the $cookie_jar. The$key, $val, $domain, $port and $path arguments are strings. The$path_spec, $secure, $discard arguments are boolean values. The $maxagevalue is a number indicating number of seconds that this cookie willlive. A value <= 0 will delete this cookie. %rest definesvarious other attributes like "Comment" and "CommentURL".=item $cookie_jar->save=item $cookie_jar->save( $file )This method file saves the state of the $cookie_jar to a file.The state can then be restored later using the load() method. If afilename is not specified we will use the name specified duringconstruction. If the attribute I<ignore_discard> is set, then wewill even save cookies that are marked to be discarded.The default is to save a sequence of "Set-Cookie3" lines."Set-Cookie3" is a proprietary LWP format, not known to be compatiblewith any browser. The I<HTTP::Cookies::Netscape> sub-class canbe used to save in a format compatible with Netscape.=item $cookie_jar->load=item $cookie_jar->load( $file )This method reads the cookies from the file and adds them to the$cookie_jar. The file must be in the format written by the save()method.=item $cookie_jar->revertThis method empties the $cookie_jar and re-loads the $cookie_jarfrom the last save file.=item $cookie_jar->clear=item $cookie_jar->clear( $domain )=item $cookie_jar->clear( $domain, $path )=item $cookie_jar->clear( $domain, $path, $key )Invoking this method without arguments will empty the whole$cookie_jar. If given a single argument only cookies belonging tothat domain will be removed. If given two arguments, cookiesbelonging to the specified path within that domain are removed. Ifgiven three arguments, then the cookie with the specified key, pathand domain is removed.=item $cookie_jar->clear_temporary_cookiesDiscard all temporary cookies. Scans for all cookies in the jarwith either no expire field or a true C<discard> flag. To becalled when the user agent shuts down according to RFC 2965.=item $cookie_jar->scan( \&callback )The argument is a subroutine that will be invoked for each cookiestored in the $cookie_jar. The subroutine will be invoked withthe following arguments: 0 version 1 key 2 val 3 path 4 domain 5 port 6 path_spec 7 secure 8 expires 9 discard 10 hash=item $cookie_jar->as_string=item $cookie_jar->as_string( $skip_discardables )The as_string() method will return the state of the $cookie_jarrepresented as a sequence of "Set-Cookie3" header lines separated by"\n". If $skip_discardables is TRUE, it will not return lines forcookies with the I<Discard> attribute.=back=head1 SEE ALSOL<HTTP::Cookies::Netscape>, L<HTTP::Cookies::Microsoft>=head1 COPYRIGHTCopyright 1997-2002 Gisle AasThis library is free software; you can redistribute it and/ormodify it under the same terms as Perl itself.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -