⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 useragent.pm

📁 美国CMU大学开发的操作系统健壮性评测软件
💻 PM
📖 第 1 页 / 共 2 页
字号:
# $Id: UserAgent.pm,v 1.1 1999/07/21 19:12:33 kraven Exp $package LWP::UserAgent;use strict;=head1 NAMELWP::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 DESCRIPTIONThe C<LWP::UserAgent> is a class implementing a simple World-Wide Webuser agent in Perl. It brings together the HTTP::Request,HTTP::Response and the LWP::Protocol classes that form the rest of thecore of libwww-perl library. For simple uses this class can be useddirectly to dispatch WWW requests, alternatively it can be subclassedfor application-specific behaviour.In normal usage the application creates a UserAgent object, and thenconfigures it with values for timeouts proxies, name, etc. The nextstep is to create an instance of C<HTTP::Request> for the request thatneeds to be performed. This request is then passed to the UserAgentrequest() 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 communicationfor all protocol schemes, i.e. you will receive an C<HTTP::Response>object also for gopher or ftp requests.  In order to achieve even moresimilarities with HTTP style communications, gopher menus and filedirectories will be converted to HTML documents.The request() method can process the content of the response in one ofthree ways: in core, into a file, or into repeated calls of asubroutine.  You choose which one by the kind of value passed as thesecond argument to request().The in core variant simply returns the content in a scalar attributecalled content() of the response object, and is suitable for smallHTML replies that might need further parsing.  This variant is used ifthe second argument is missing (or is undef).The filename variant requires a scalar containing a filename as thesecond argument to request(), and is suitable for large WWW objectswhich need to be written directly to the file, without requiring largeamounts of memory. In this case the response object returned fromrequest() will have empty content().  If the request fails, then thecontent() might not be empty, and the file will be untouched.The subroutine variant requires a reference to callback routine as thesecond argument to request() and it can also take an optional chucksize as third argument.  This variant can be used to construct"pipe-lined" processing, where processing of received chuncks canbegin before the complete data has arrived.  The callback function iscalled with 3 arguments: the data received this time, a reference tothe response object and a reference to the protocol object.  Theresponse object returned from request() will have empty content().  Ifthe request fails, then the the callback routine will not have beencalled, and the response->content() might not be empty.The request can be aborted by calling die() within the callbackroutine.  The die message will be available as the "X-Died" specialresponse header field.The library also accepts that you put a subroutine reference ascontent in the request object.  This subroutine should return thecontent (possibly in pieces) when called.  It should return an emptystring when there is no more content.=head1 METHODSThe following methods are available:=over 4=cutuse vars qw(@ISA $VERSION);require LWP::MemberMixin;@ISA = qw(LWP::MemberMixin);$VERSION = sprintf("%d.%02d", q$Revision: 1.1 $ =~ /(\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 aLWP::UserAgent object.=cutsub 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, andreturns the response received.  The C<$request> should be a referenceto a C<HTTP::Request> object with values defined for at least themethod() and url() attributes.If C<$arg> is a scalar it is taken as a filename where the content ofthe response is stored.If C<$arg> is a reference to a subroutine, then this routine is calledas chunks of the content is received.  An optional C<$size> argumentis taken as a hint for an appropriate chunk size.If C<$arg> is omitted, then the content is stored in the responseobject itself.=cutsub 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 mayactually send several different simple reqeusts.The arguments are the same as for C<simple_request()>.=cutsub 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_okThis method is called by request() before it tries to do anyredirects.  It should return a true value if the redirect is allowedto be performed. Subclasses might want to override this.The default implementation will return FALSE for POST request and TRUEfor all others.=cutsub 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;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -