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
|
# $Id: UserAgent.pm,v 1.62 1998/08/04 09:59:36 aas Exp $
package LWP::UserAgent;
use strict;
=head1 NAME
LWP::UserAgent - A WWW UserAgent class
=head1 SYNOPSIS
require LWP::UserAgent;
$ua = new LWP::UserAgent;
$request = new HTTP::Request('GET', 'file://localhost/etc/motd');
$response = $ua->request($request); # or
$response = $ua->request($request, '/tmp/sss'); # or
$response = $ua->request($request, \&callback, 4096);
sub callback { my($data, $response, $protocol) = @_; .... }
=head1 DESCRIPTION
The C<LWP::UserAgent> is a class implementing a simple World-Wide Web
user agent in Perl. It brings together the HTTP::Request,
HTTP::Response and the LWP::Protocol classes that form the rest of the
core of libwww-perl library. For simple uses this class can be used
directly to dispatch WWW requests, alternatively it can be subclassed
for application-specific behaviour.
In normal usage the application creates a UserAgent object, and then
configures it with values for timeouts proxies, name, etc. The next
step is to create an instance of C<HTTP::Request> for the request that
needs to be performed. This request is then passed to the UserAgent
request() method, which dispatches it using the relevant protocol,
and returns a C<HTTP::Response> object.
The basic approach of the library is to use HTTP style communication
for all protocol schemes, i.e. you will receive an C<HTTP::Response>
object also for gopher or ftp requests. In order to achieve even more
similarities with HTTP style communications, gopher menus and file
directories will be converted to HTML documents.
The request() method can process the content of the response in one of
three ways: in core, into a file, or into repeated calls of a
subroutine. You choose which one by the kind of value passed as the
second argument to request().
The in core variant simply returns the content in a scalar attribute
called content() of the response object, and is suitable for small
HTML replies that might need further parsing. This variant is used if
the second argument is missing (or is undef).
The filename variant requires a scalar containing a filename as the
second argument to request(), and is suitable for large WWW objects
which need to be written directly to the file, without requiring large
amounts of memory. In this case the response object returned from
request() will have empty content(). If the request fails, then the
content() might not be empty, and the file will be untouched.
The subroutine variant requires a reference to callback routine as the
second argument to request() and it can also take an optional chuck
size as third argument. This variant can be used to construct
"pipe-lined" processing, where processing of received chuncks can
begin before the complete data has arrived. The callback function is
called with 3 arguments: the data received this time, a reference to
the response object and a reference to the protocol object. The
response object returned from request() will have empty content(). If
the request fails, then the the callback routine will not have been
called, and the response->content() might not be empty.
The request can be aborted by calling die() within the callback
routine. The die message will be available as the "X-Died" special
response header field.
The library also accepts that you put a subroutine reference as
content in the request object. This subroutine should return the
content (possibly in pieces) when called. It should return an empty
string when there is no more content.
=head1 METHODS
The following methods are available:
=over 4
=cut
use vars qw(@ISA $VERSION);
require LWP::MemberMixin;
@ISA = qw(LWP::MemberMixin);
$VERSION = sprintf("%d.%02d", q$Revision: 1.62 $ =~ /(\d+)\.(\d+)/);
require URI::URL;
require HTTP::Request;
require HTTP::Response;
use HTTP::Date ();
use LWP ();
use LWP::Debug ();
use LWP::Protocol ();
use Carp ();
use AutoLoader ();
*AUTOLOAD = \&AutoLoader::AUTOLOAD; # import the AUTOLOAD method
=item $ua = new LWP::UserAgent;
Constructor for the UserAgent. Returns a reference to a
LWP::UserAgent object.
=cut
sub new
{
my($class, $init) = @_;
LWP::Debug::trace('()');
my $self;
if (ref $init) {
$self = $init->clone;
} else {
$self = bless {
'agent' => "libwww-perl/$LWP::VERSION",
'from' => undef,
'timeout' => 3*60,
'proxy' => undef,
'cookie_jar' => undef,
'use_eval' => 1,
'parse_head' => 1,
'max_size' => undef,
'no_proxy' => [],
}, $class;
}
}
=item $ua->simple_request($request, [$arg [, $size]])
This method dispatches a single WWW request on behalf of a user, and
returns the response received. The C<$request> should be a reference
to a C<HTTP::Request> object with values defined for at least the
method() and url() attributes.
If C<$arg> is a scalar it is taken as a filename where the content of
the response is stored.
If C<$arg> is a reference to a subroutine, then this routine is called
as chunks of the content is received. An optional C<$size> argument
is taken as a hint for an appropriate chunk size.
If C<$arg> is omitted, then the content is stored in the response
object itself.
=cut
sub simple_request
{
my($self, $request, $arg, $size) = @_;
local($SIG{__DIE__}); # protect agains user defined die handlers
my($method, $url) = ($request->method, $request->url);
# Check that we have a METHOD and a URL first
return HTTP::Response->new(&HTTP::Status::RC_BAD_REQUEST, "Method missing")
unless $method;
return HTTP::Response->new(&HTTP::Status::RC_BAD_REQUEST, "URL missing")
unless $url;
LWP::Debug::trace("$method $url");
# Locate protocol to use
my $scheme = '';
my $proxy = $self->_need_proxy($url);
if (defined $proxy) {
$scheme = $proxy->scheme;
} else {
$scheme = $url->scheme;
}
my $protocol;
eval {
$protocol = LWP::Protocol::create($scheme);
};
if ($@) {
$@ =~ s/\s+at\s+\S+\s+line\s+\d+\.?\s*//; # remove file/line number
return HTTP::Response->new(&HTTP::Status::RC_NOT_IMPLEMENTED, $@)
}
# Extract fields that will be used below
my ($agent, $from, $timeout, $cookie_jar,
$use_eval, $parse_head, $max_size) =
@{$self}{qw(agent from timeout cookie_jar
use_eval parse_head max_size)};
# Set User-Agent and From headers if they are defined
$request->header('User-Agent' => $agent) if $agent;
$request->header('From' => $from) if $from;
$cookie_jar->add_cookie_header($request) if $cookie_jar;
# Transfer some attributes to the protocol object
$protocol->parse_head($parse_head);
$protocol->max_size($max_size);
my $response;
if ($use_eval) {
# we eval, and turn dies into responses below
eval {
$response = $protocol->request($request, $proxy,
$arg, $size, $timeout);
};
if ($@) {
$@ =~ s/\s+at\s+\S+\s+line\s+\d+\.?\s*//;
$response =
HTTP::Response->new(&HTTP::Status::RC_INTERNAL_SERVER_ERROR,
$@);
}
} else {
$response = $protocol->request($request, $proxy,
$arg, $size, $timeout);
# XXX: Should we die unless $response->is_success ???
}
$response->request($request); # record request for reference
$cookie_jar->extract_cookies($response) if $cookie_jar;
$response->header("Client-Date" => HTTP::Date::time2str(time));
return $response;
}
=item $ua->request($request, $arg [, $size])
Process a request, including redirects and security. This method may
actually send several different simple reqeusts.
The arguments are the same as for C<simple_request()>.
=cut
sub request
{
my($self, $request, $arg, $size, $previous) = @_;
LWP::Debug::trace('()');
my $response = $self->simple_request($request, $arg, $size);
my $code = $response->code;
$response->previous($previous) if defined $previous;
LWP::Debug::debug('Simple result: ' . HTTP::Status::status_message($code));
if ($code == &HTTP::Status::RC_MOVED_PERMANENTLY or
$code == &HTTP::Status::RC_MOVED_TEMPORARILY) {
# Make a copy of the request and initialize it with the new URI
my $referral = $request->clone;
# And then we update the URL based on the Location:-header.
# Some servers erroneously return a relative URL for redirects,
# so make it absolute if it not already is.
my $referral_uri = (URI::URL->new($response->header('Location'),
$response->base))->abs(undef,1);
$referral->url($referral_uri);
return $response unless $self->redirect_ok($referral);
# Check for loop in the redirects
my $count = 0;
my $r = $response;
while ($r) {
if (++$count > 13 ||
$r->request->url->as_string eq $referral_uri->as_string) {
$response->header("Client-Warning" =>
"Redirect loop detected");
return $response;
}
$r = $r->previous;
}
return $self->request($referral, $arg, $size, $response);
} elsif ($code == &HTTP::Status::RC_UNAUTHORIZED ||
$code == &HTTP::Status::RC_PROXY_AUTHENTICATION_REQUIRED
)
{
my $proxy = ($code == &HTTP::Status::RC_PROXY_AUTHENTICATION_REQUIRED);
my $ch_header = $proxy ? "Proxy-Authenticate" : "WWW-Authenticate";
my $challenge = $response->header($ch_header);
unless (defined $challenge) {
$response->header("Client-Warning" =>
"Missing Authenticate header");
return $response;
}
require HTTP::Headers::Util;
$challenge =~ tr/,/;/; # "," is used to separate auth-params!!
($challenge) = HTTP::Headers::Util::split_header_words($challenge);
my $scheme = lc(shift(@$challenge));
shift(@$challenge); # no value
$challenge = { @$challenge }; # make rest into a hash
for (keys %$challenge) { # make sure all keys are lower case
$challenge->{lc $_} = delete $challenge->{$_};
}
unless ($scheme =~ /^([a-z]+(?:-[a-z]+)*)$/) {
$response->header("Client-Warning" =>
"Bad authentication scheme '$scheme'");
return $response;
}
$scheme = $1; # untainted now
my $class = "LWP::Authen::\u$scheme";
$class =~ s/-/_/g;
no strict 'refs';
unless (defined %{"$class\::"}) {
# try to load it
eval "require $class";
if ($@) {
if ($@ =~ /^Can\'t locate/) {
$response->header("Client-Warning" =>
"Unsupport authentication scheme '$scheme'");
} else {
$response->header("Client-Warning" => $@);
}
return $response;
}
}
return $class->authenticate($self, $proxy, $challenge, $response,
$request, $arg, $size);
}
return $response;
}
=item $ua->redirect_ok
This method is called by request() before it tries to do any
redirects. It should return a true value if the redirect is allowed
to be performed. Subclasses might want to override this.
The default implementation will return FALSE for POST request and TRUE
for all others.
=cut
sub redirect_ok
{
# draft-ietf-http-v10-spec-02.ps from www.ics.uci.edu, specify:
#
# If the 30[12] status code is received in response to a request using
# the POST method, the user agent must not automatically redirect the
# request unless it can be confirmed by the user, since this might change
# the conditions under which the request was issued.
my($self, $request) = @_;
return 0 if $request->method eq "POST";
1;
}
=item $ua->credentials($netloc, $realm, $uname, $pass)
Set the user name and password to be used for a realm. It is often more
useful to specialize the get_basic_credentials() method instead.
=cut
sub credentials
{
my($self, $netloc, $realm, $uid, $pass) = @_;
@{ $self->{'basic_authentication'}{$netloc}{$realm} } = ($uid, $pass);
}
=item $ua->get_basic_credentials($realm, $uri, [$proxy])
This is called by request() to retrieve credentials for a Realm
protected by Basic Authentication or Digest Authentication.
Should return username and password in a list. Return undef to abort
the authentication resolution atempts.
This implementation simply checks a set of pre-stored member
variables. Subclasses can override this method to e.g. ask the user
for a username/password. An example of this can be found in
C<lwp-request> program distributed with this library.
=cut
sub get_basic_credentials
{
my($self, $realm, $uri, $proxy) = @_;
return if $proxy;
my $netloc = $uri->netloc;
if (exists $self->{'basic_authentication'}{$netloc}{$realm}) {
return @{ $self->{'basic_authentication'}{$netloc}{$realm} };
}
return (undef, undef);
}
=item $ua->agent([$product_id])
Get/set the product token that is used to identify the user agent on
the network. The agent value is sent as the "User-Agent" header in
the requests. The default agent name is "libwww-perl/#.##", where
"#.##" is substitued with the version numer of this library.
The user agent string should be one or more simple product identifiers
with an optional version number separated by the "/" character.
Examples are:
$ua->agent('Checkbot/0.4 ' . $ua->agent);
$ua->agent('Mozilla/5.0');
=item $ua->from([$email_address])
Get/set the Internet e-mail address for the human user who controls
the requesting user agent. The address should be machine-usable, as
defined in RFC 822. The from value is send as the "From" header in
the requests. There is no default. Example:
$ua->from('aas@sn.no');
=item $ua->timeout([$secs])
Get/set the timeout value in seconds. The default timeout() value is
180 seconds, i.e. 3 minutes.
=item $ua->cookie_jar([$cookies])
Get/set the I<HTTP::Cookies> object to use. The default is to have no
cookie_jar, i.e. never automatically add "Cookie" headers to the
requests.
=item $ua->parse_head([$boolean])
Get/set a value indicating wether we should initialize response
headers from the E<lt>head> section of HTML documents. The default is
TRUE. Do not turn this off, unless you know what you are doing.
=item $ua->max_size([$bytes])
Get/set the size limit for response content. The default is undef,
which means that there is not limit. If the returned response content
is only partial, because the size limit was exceeded, then a
"X-Content-Range" header will be added to the response.
=cut
sub timeout { shift->_elem('timeout', @_); }
sub agent { shift->_elem('agent', @_); }
sub from { shift->_elem('from', @_); }
sub cookie_jar { shift->_elem('cookie_jar',@_); }
sub parse_head { shift->_elem('parse_head',@_); }
sub max_size { shift->_elem('max_size', @_); }
# depreciated
sub use_eval { shift->_elem('use_eval', @_); }
sub use_alarm
{
Carp::carp("LWP::UserAgent->use_alarm(BOOL) is a no-op")
if @_ > 1 && $^W;
"";
}
# Declarations of AutoLoaded methods
sub clone;
sub is_protocol_supported;
sub mirror;
sub proxy;
sub env_proxy;
sub no_proxy;
sub _need_proxy;
1;
__END__
=item $ua->clone;
Returns a copy of the LWP::UserAgent object
=cut
sub clone
{
my $self = shift;
my $copy = bless { %$self }, ref $self; # copy most fields
# elements that are references must be handled in a special way
$copy->{'no_proxy'} = [ @{$self->{'no_proxy'}} ]; # copy array
$copy;
}
=item $ua->is_protocol_supported($scheme)
You can use this method to query if the library currently support the
specified C<scheme>. The C<scheme> might be a string (like 'http' or
'ftp') or it might be an URI::URL object reference.
=cut
sub is_protocol_supported
{
my($self, $scheme) = @_;
if (ref $scheme) {
# assume we got a reference to an URI::URL object
$scheme = $scheme->abs->scheme;
} else {
Carp::croak("Illeal scheme '$scheme' passed to is_protocol_supported")
if $scheme =~ /\W/;
$scheme = lc $scheme;
}
return LWP::Protocol::implementor($scheme);
}
=item $ua->mirror($url, $file)
Get and store a document identified by a URL, using If-Modified-Since,
and checking of the Content-Length. Returns a reference to the
response object.
=cut
sub mirror
{
my($self, $url, $file) = @_;
LWP::Debug::trace('()');
my $request = new HTTP::Request('GET', $url);
if (-e $file) {
my($mtime) = (stat($file))[9];
if($mtime) {
$request->header('If-Modified-Since' =>
HTTP::Date::time2str($mtime));
}
}
my $tmpfile = "$file-$$";
my $response = $self->request($request, $tmpfile);
if ($response->is_success) {
my $file_length = (stat($tmpfile))[7];
my($content_length) = $response->header('Content-length');
if (defined $content_length and $file_length < $content_length) {
unlink($tmpfile);
die "Transfer truncated: " .
"only $file_length out of $content_length bytes received\n";
} elsif (defined $content_length and $file_length > $content_length) {
unlink($tmpfile);
die "Content-length mismatch: " .
"expected $content_length bytes, got $file_length\n";
} else {
# OK
if (-e $file) {
# Some dosish systems fail to rename if the target exists
chmod 0777, $file;
unlink $file;
}
rename($tmpfile, $file) or
die "Cannot rename '$tmpfile' to '$file': $!\n";
if (my $lm = $response->last_modified) {
# make sure the file has the same last modification time
utime $lm, $lm, $file;
}
}
} else {
unlink($tmpfile);
}
return $response;
}
=item $ua->proxy(...)
Set/retrieve proxy URL for a scheme:
$ua->proxy(['http', 'ftp'], 'http://proxy.sn.no:8001/');
$ua->proxy('gopher', 'http://proxy.sn.no:8001/');
The first form specifies that the URL is to be used for proxying of
access methods listed in the list in the first method argument,
i.e. 'http' and 'ftp'.
The second form shows a shorthand form for specifying
proxy URL for a single access scheme.
=cut
sub proxy
{
my($self, $key, $proxy) = @_;
LWP::Debug::trace("$key, $proxy");
if (!ref($key)) { # single scalar passed
my $old = $self->{'proxy'}{$key};
$self->{'proxy'}{$key} = $proxy;
return $old;
} elsif (ref($key) eq 'ARRAY') {
for(@$key) { # array passed
$self->{'proxy'}{$_} = $proxy;
}
}
return undef;
}
=item $ua->env_proxy()
Load proxy settings from *_proxy environment variables. You might
specify proxies like this (sh-syntax):
gopher_proxy=http://proxy.my.place/
wais_proxy=http://proxy.my.place/
no_proxy="my.place"
export gopher_proxy wais_proxy no_proxy
Csh or tcsh users should use the C<setenv> command to define these
envirionment variables.
=cut
sub env_proxy {
my ($self) = @_;
my($k,$v);
while(($k, $v) = each %ENV) {
$k = lc($k);
next unless $k =~ /^(.*)_proxy$/;
$k = $1;
if ($k eq 'no') {
$self->no_proxy(split(/\s*,\s*/, $v));
}
else {
$self->proxy($k, $v);
}
}
}
=item $ua->no_proxy($domain,...)
Do not proxy requests to the given domains. Calling no_proxy without
any domains clears the list of domains. Eg:
$ua->no_proxy('localhost', 'no', ...);
=cut
sub no_proxy {
my($self, @no) = @_;
if (@no) {
push(@{ $self->{'no_proxy'} }, @no);
}
else {
$self->{'no_proxy'} = [];
}
}
# Private method which returns the URL of the Proxy configured for this
# URL, or undefined if none is configured.
sub _need_proxy
{
my($self, $url) = @_;
$url = new URI::URL($url) unless ref $url;
LWP::Debug::trace("($url)");
# check the list of noproxies
if (@{ $self->{'no_proxy'} }) {
my $host = $url->host;
return undef unless defined $host;
my $domain;
for $domain (@{ $self->{'no_proxy'} }) {
if ($host =~ /$domain$/) {
LWP::Debug::trace("no_proxy configured");
return undef;
}
}
}
# Currently configured per scheme.
# Eventually want finer granularity
my $scheme = $url->scheme;
if (exists $self->{'proxy'}{$scheme}) {
LWP::Debug::debug('Proxied');
return new URI::URL($self->{'proxy'}{$scheme});
}
LWP::Debug::debug('Not proxied');
undef;
}
1;
=back
=head1 SEE ALSO
See L<LWP> for a complete overview of libwww-perl5. See F<lwp-request> and
F<lwp-mirror> for examples of usage.
=head1 COPYRIGHT
Copyright 1995-1997 Gisle Aas.
This library is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
=cut
|