home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _999d738fc7870ee8e59cd2f478849b6b < prev    next >
Text File  |  2000-03-15  |  19KB  |  586 lines

  1. #
  2. # $Id: LWP.pm,v 1.90 1999/09/20 13:25:36 gisle Exp $
  3.  
  4. package LWP;
  5.  
  6. $VERSION = "5.45";
  7. sub Version { $VERSION; }
  8.  
  9. require 5.004;
  10. require LWP::UserAgent;  # this should load everything you need
  11.  
  12. 1;
  13.  
  14. __END__
  15.  
  16. =head1 NAME
  17.  
  18. LWP - Library for WWW access in Perl
  19.  
  20. =head1 SYNOPSIS
  21.  
  22.   use LWP;
  23.   print "This is libwww-perl-$LWP::VERSION\n";
  24.  
  25.  
  26. =head1 DESCRIPTION
  27.  
  28. Libwww-perl is a collection of Perl modules which provides a simple
  29. and consistent application programming interface (API) to the World-Wide Web.  The
  30. main focus of the library is to provide classes and functions that
  31. allow you to write WWW clients, thus libwww-perl is a WWW
  32. client library. The library also contain modules that are of more
  33. general use.
  34.  
  35. Most modules in this library are object oriented.  The user
  36. agent, requests sent and responses received from the WWW server are
  37. all represented by objects.  This makes a simple and powerful
  38. interface to these services.  The interface should be easy to extend
  39. and customize for your needs.
  40.  
  41. The main features of the library are:
  42.  
  43. =over 3
  44.  
  45. =item *
  46.  
  47. Contains various reusable components (modules) that can be
  48. used separately or together.
  49.  
  50. =item *
  51.  
  52. Provides an object oriented model of HTTP-style communication.  Within
  53. this framework we currently support access to http, https, gopher, ftp, news,
  54. file, and mailto resources.
  55.  
  56. =item *
  57.  
  58. Provides a full object oriented interface or
  59. a very simple procedural interface.
  60.  
  61. =item *
  62.  
  63. Supports the basic and digest authorization schemes.
  64.  
  65. =item *
  66.  
  67. Supports transparent redirect handling.
  68.  
  69. =item *
  70.  
  71. Supports access through proxy servers.
  72.  
  73. =item *
  74.  
  75. Provides parser for F<robots.txt> files and a framework for constructing robots.
  76.  
  77. =item *
  78.  
  79. Cooperates with Tk.  A simple Tk-based GUI browser
  80. called 'tkweb' is distributed with the Tk extension for perl.
  81.  
  82. =item *
  83.  
  84. Implements HTTP content negotiation algorithm that can
  85. be used both in protocol modules and in server scripts (like CGI
  86. scripts).
  87.  
  88. =item *
  89.  
  90. Supports HTTP cookies.
  91.  
  92. =item *
  93.  
  94. A simple command line client application called C<lwp-request>.
  95.  
  96. =back
  97.  
  98.  
  99. =head1 HTTP STYLE COMMUNICATION
  100.  
  101.  
  102. The libwww-perl library is based on HTTP style communication. This
  103. section tries to describe what that means.
  104.  
  105. Let us start with this quote from the HTTP specification document
  106. <URL:http://www.w3.org/pub/WWW/Protocols/>:
  107.  
  108. =over 3
  109.  
  110. =item
  111.  
  112. The HTTP protocol is based on a request/response paradigm. A client
  113. establishes a connection with a server and sends a request to the
  114. server in the form of a request method, URI, and protocol version,
  115. followed by a MIME-like message containing request modifiers, client
  116. information, and possible body content. The server responds with a
  117. status line, including the message's protocol version and a success or
  118. error code, followed by a MIME-like message containing server
  119. information, entity meta-information, and possible body content.
  120.  
  121. =back
  122.  
  123. What this means to libwww-perl is that communication always take place
  124. through these steps: First a I<request> object is created and
  125. configured. This object is then passed to a server and we get a
  126. I<response> object in return that we can examine. A request is always
  127. independent of any previous requests, i.e. the service is stateless.
  128. The same simple model is used for any kind of service we want to
  129. access.
  130.  
  131. For example, if we want to fetch a document from a remote file server,
  132. then we send it a request that contains a name for that document and
  133. the response will contain the document itself.  If we access a search
  134. engine, then the content of the request will contain the query
  135. parameters and the response will contain the query result.  If we want
  136. to send a mail message to somebody then we send a request object which
  137. contains our message to the mail server and the response object will
  138. contain an acknowledgment that tells us that the message has been
  139. accepted and will be forwarded to the recipient(s).
  140.  
  141. It is as simple as that!
  142.  
  143.  
  144. =head2 The Request Object
  145.  
  146. The libwww-perl request object has the class name C<HTTP::Request>.
  147. The fact that the class name uses C<HTTP::> as a
  148. prefix only implies that we use the HTTP model of communication.  It
  149. does not limit the kind of services we can try to pass this I<request>
  150. to.  For instance, we will send C<HTTP::Request>s both to ftp and
  151. gopher servers, as well as to the local file system.
  152.  
  153. The main attributes of the request objects are:
  154.  
  155. =over 3
  156.  
  157. =item *
  158.  
  159. The B<method> is a short string that tells what kind of
  160. request this is.  The most used methods are B<GET>, B<PUT>,
  161. B<POST> and B<HEAD>.
  162.  
  163. =item *
  164.  
  165. The B<url> is a string denoting the protocol, server and
  166. the name of the "document" we want to access.  The B<url> might
  167. also encode various other parameters.
  168.  
  169. =item *
  170.  
  171. The B<headers> contain additional information about the
  172. request and can also used to describe the content.  The headers
  173. are a set of keyword/value pairs.
  174.  
  175. =item *
  176.  
  177. The B<content> is an arbitrary amount of data.
  178.  
  179. =back
  180.  
  181. =head2 The Response Object
  182.  
  183. The libwww-perl response object has the class name C<HTTP::Response>.
  184. The main attributes of objects of this class are:
  185.  
  186. =over 3
  187.  
  188. =item *
  189.  
  190. The B<code> is a numerical value that indicates the overall
  191. outcome of the request.
  192.  
  193. =item *
  194.  
  195. The B<message> is a short, human readable string that
  196. corresponds to the I<code>.
  197.  
  198. =item *
  199.  
  200. The B<headers> contain additional information about the
  201. response and describe the content.
  202.  
  203. =item *
  204.  
  205. The B<content> is an arbitrary amount of data.
  206.  
  207. =back
  208.  
  209. Since we don't want to handle all possible I<code> values directly in
  210. our programs, a libwww-perl response object has methods that can be
  211. used to query what kind of response this is.  The most commonly used
  212. response classification methods are:
  213.  
  214. =over 3
  215.  
  216. =item is_success()
  217.  
  218. The request was was successfully received, understood or accepted.
  219.  
  220. =item is_error()
  221.  
  222. The request failed.  The server or the resource might not be
  223. available, access to the resource might be denied or other things might
  224. have failed for some reason.
  225.  
  226. =back
  227.  
  228. =head2 The User Agent
  229.  
  230. Let us assume that we have created a I<request> object. What do we
  231. actually do with it in order to receive a I<response>?
  232.  
  233. The answer is that you pass it to a I<user agent> object and this
  234. object takes care of all the things that need to be done
  235. (like low-level communication and error handling) and returns
  236. a I<response> object. The user agent represents your
  237. application on the network and provides you with an interface that
  238. can accept I<requests> and return I<responses>.
  239.  
  240. The user agent is an interface layer between
  241. your application code and the network.  Through this interface you are
  242. able to access the various servers on the network.
  243.  
  244. The libwww-perl class name for the user agent is
  245. C<LWP::UserAgent>.  Every libwww-perl application that wants to
  246. communicate should create at least one object of this class. The main
  247. method provided by this object is request(). This method takes an
  248. C<HTTP::Request> object as argument and (eventually) returns a
  249. C<HTTP::Response> object.
  250.  
  251. The user agent has many other attributes that let you
  252. configure how it will interact with the network and with your
  253. application.
  254.  
  255. =over 3
  256.  
  257. =item *
  258.  
  259. The B<timeout> specifies how much time we give remote servers to
  260. respond before the library disconnects and creates an
  261. internal I<timeout> response.
  262.  
  263. =item *
  264.  
  265. The B<agent> specifies the name that your application should use when it
  266. presents itself on the network.
  267.  
  268. =item *
  269.  
  270. The B<from> attribute can be set to the e-mail address of the person
  271. responsible for running the application.  If this is set, then the
  272. address will be sent to the servers with every request.
  273.  
  274. =item *
  275.  
  276. The B<parse_head> specifies whether we should initialize response
  277. headers from the E<lt>head> section of HTML documents.
  278.  
  279. =item *
  280.  
  281. The B<proxy> and B<no_proxy> attributes specify if and when to go through
  282. a proxy server. <URL:http://www.w3.org/pub/WWW/Proxies/>
  283.  
  284. =item *
  285.  
  286. The B<credentials> provide a way to set up user names and
  287. passwords needed to access certain services.
  288.  
  289. =back
  290.  
  291. Many applications want even more control over how they interact
  292. with the network and they get this by sub-classing
  293. C<LWP::UserAgent>.  The library includes a
  294. sub-class, C<LWP::RobotUA>, for robot applications.
  295.  
  296. =head2 An Example
  297.  
  298. This example shows how the user agent, a request and a response are
  299. represented in actual perl code:
  300.  
  301.   # Create a user agent object
  302.   use LWP::UserAgent;
  303.   $ua = new LWP::UserAgent;
  304.   $ua->agent("AgentName/0.1 " . $ua->agent);
  305.  
  306.   # Create a request
  307.   my $req = new HTTP::Request POST => 'http://www.perl.com/cgi-bin/BugGlimpse';
  308.   $req->content_type('application/x-www-form-urlencoded');
  309.   $req->content('match=www&errors=0');
  310.  
  311.   # Pass request to the user agent and get a response back
  312.   my $res = $ua->request($req);
  313.  
  314.   # Check the outcome of the response
  315.   if ($res->is_success) {
  316.       print $res->content;
  317.   } else {
  318.       print "Bad luck this time\n";
  319.   }
  320.  
  321. The $ua is created once when the application starts up.  New request
  322. objects should normally created for each request sent.
  323.  
  324.  
  325. =head1 NETWORK SUPPORT
  326.  
  327. This section discusses the various protocol schemes and
  328. the HTTP style methods that headers may be used for each.
  329.  
  330. For all requests, a "User-Agent" header is added and initialized from
  331. the $ua->agent attribute before the request is handed to the network
  332. layer.  In the same way, a "From" header is initialized from the
  333. $ua->from attribute.
  334.  
  335. For all responses, the library adds a header called "Client-Date".
  336. This header holds the time when the response was received by
  337. your application.  The format and semantics of the header are the
  338. same as the server created "Date" header.  You may also encounter other
  339. "Client-XXX" headers.  They are all generated by the library
  340. internally and are not received from the servers.
  341.  
  342. =head2 HTTP Requests
  343.  
  344. HTTP requests are just handed off to an HTTP server and it
  345. decides what happens.  Few servers implement methods beside the usual
  346. "GET", "HEAD", "POST" and "PUT", but CGI-scripts may implement
  347. any method they like.
  348.  
  349. If the server is not available then the library will generate an
  350. internal error response.
  351.  
  352. The library automatically adds a "Host" and a "Content-Length" header
  353. to the HTTP request before it is sent over the network.
  354.  
  355. For GET request you might want to add the "If-Modified-Since" header
  356. to make the request conditional.
  357.  
  358. For POST request you should add the "Content-Type" header.  When you
  359. try to emulate HTML E<lt>FORM> handling you should usually let the value
  360. of the "Content-Type" header be "application/x-www-form-urlencoded".
  361. See L<lwpcook> for examples of this.
  362.  
  363. The libwww-perl HTTP implementation currently support the HTTP/1.0
  364. protocol.  HTTP/0.9 servers are also handled correctly.
  365.  
  366. The library allows you to access proxy server through HTTP.  This
  367. means that you can set up the library to forward all types of request
  368. through the HTTP protocol module.  See L<LWP::UserAgent> for
  369. documentation of this.
  370.  
  371.  
  372. =head2 HTTPS Requests
  373.  
  374. HTTPS requests are HTTP requests over an encrypted network connection
  375. using the SSL protocol developed by Netscape.  Everything about HTTP
  376. requests above also apply to HTTPS requests.  In addition the library
  377. will add the headers "Client-SSL-Cipher", "Client-SSL-Cert-Subject" and
  378. "Client-SSL-Cert-Issuer" to the response.  These headers denote the
  379. encryption method used and the name of the server owner.
  380.  
  381. The request can contain the header "If-SSL-Cert-Subject" in order to
  382. make the request conditional on the content of the server certificate.
  383. If the certificate subject does not match, no request is sent to the
  384. server and an internally generated error response is returned.  The
  385. value of the "If-SSL-Cert-Subject" header is interpreted as a Perl
  386. regular expression.
  387.  
  388.  
  389. =head2 FTP Requests
  390.  
  391. The library currently supports GET, HEAD and PUT requests.  GET
  392. retrieves a file or a directory listing from an FTP server.  PUT
  393. stores a file on a ftp server.
  394.  
  395. You can specify a ftp account for servers that want this in addition
  396. to user name and password.  This is specified by including an "Account"
  397. header in the request.
  398.  
  399. User name/password can be specified using basic authorization or be
  400. encoded in the URL.  Failed logins return an UNAUTHORIZED response with
  401. "WWW-Authenticate: Basic" and can be treated like basic authorization
  402. for HTTP.
  403.  
  404. The library supports ftp ASCII transfer mode by specifying the "type=a"
  405. parameter in the URL.
  406.  
  407. Directory listings are by default returned unprocessed (as returned
  408. from the ftp server) with the content media type reported to be
  409. "text/ftp-dir-listing". The C<File::Listing> module provides methods
  410. for parsing of these directory listing.
  411.  
  412. The ftp module is also able to convert directory listings to HTML and
  413. this can be requested via the standard HTTP content negotiation
  414. mechanisms (add an "Accept: text/html" header in the request if you
  415. want this).
  416.  
  417. For normal file retrievals, the "Content-Type" is guessed based on the
  418. file name suffix. See L<LWP::MediaTypes>.
  419.  
  420. The "If-Modified-Since" request header works for servers that implement
  421. the MDTM command.  It will probably not work for directory listings though.
  422.  
  423. Example:
  424.  
  425.   $req = HTTP::Request->new(GET => 'ftp://me:passwd@ftp.some.where.com/');
  426.   $req->header(Accept => "text/html, */*;q=0.1");
  427.  
  428. =head2 News Requests
  429.  
  430. Access to the USENET News system is implemented through the NNTP
  431. protocol.  The name of the news server is obtained from the
  432. NNTP_SERVER environment variable and defaults to "news".  It is not
  433. possible to specify the hostname of the NNTP server in news: URLs.
  434.  
  435. The library supports GET and HEAD to retrieve news articles through the
  436. NNTP protocol.  You can also post articles to newsgroups by using
  437. (surprise!) the POST method.
  438.  
  439. GET on newsgroups is not implemented yet.
  440.  
  441. Examples:
  442.  
  443.   $req = HTTP::Request->new(GET => 'news:abc1234@a.sn.no');
  444.  
  445.   $req = HTTP::Request->new(POST => 'news:comp.lang.perl.test');
  446.   $req->header(Subject => 'This is a test',
  447.                From    => 'me@some.where.org');
  448.   $req->content(<<EOT);
  449.   This is the content of the message that we are sending to
  450.   the world.
  451.   EOT
  452.  
  453.  
  454. =head2 Gopher Request
  455.  
  456. The library supports the GET and HEAD methods for gopher requests.  All
  457. request header values are ignored.  HEAD cheats and returns a
  458. response without even talking to server.
  459.  
  460. Gopher menus are always converted to HTML.
  461.  
  462. The response "Content-Type" is generated from the document type
  463. encoded (as the first letter) in the request URL path itself.
  464.  
  465. Example:
  466.  
  467.   $req = HTTP::Request->new(GET => 'gopher://gopher.sn.no/');
  468.  
  469.  
  470.  
  471. =head2 File Request
  472.  
  473. The library supports GET and HEAD methods for file requests.  The
  474. "If-Modified-Since" header is supported.  All other headers are
  475. ignored.  The I<host> component of the file URL must be empty or set
  476. to "localhost".  Any other I<host> value will be treated as an error.
  477.  
  478. Directories are always converted to an HTML document.  For normal
  479. files, the "Content-Type" and "Content-Encoding" in the response are
  480. guessed based on the file suffix.
  481.  
  482. Example:
  483.  
  484.   $req = HTTP::Request->new(GET => 'file:/etc/passwd');
  485.  
  486.  
  487. =head2 Mailto Request
  488.  
  489. You can send (aka "POST") mail messages using the library.  All
  490. headers specified for the request are passed on to the mail system.
  491. The "To" header is initialized from the mail address in the URL.
  492.  
  493. Example:
  494.  
  495.   $req = HTTP::Request->new(POST => 'mailto:libwww-perl-request@ics.uci.edu');
  496.   $req->header(Subject => "subscribe");
  497.   $req->content("Please subscribe me to the libwww-perl mailing list!\n");
  498.  
  499.  
  500. =head1 OVERVIEW OF CLASSES AND PACKAGES
  501.  
  502. This table should give you a quick overview of the classes provided by the
  503. library. Indentation shows class inheritance.
  504.  
  505.  LWP::MemberMixin   -- Access to member variables of Perl5 classes
  506.    LWP::UserAgent   -- WWW user agent class
  507.      LWP::RobotUA   -- When developing a robot applications
  508.    LWP::Protocol          -- Interface to various protocol schemes
  509.      LWP::Protocol::http  -- http:// access
  510.      LWP::Protocol::file  -- file:// access
  511.      LWP::Protocol::ftp   -- ftp:// access
  512.      ...
  513.  
  514.  LWP::Authen::Basic -- Handle 401 and 407 responses
  515.  LWP::Authen::Digest
  516.  
  517.  HTTP::Headers      -- MIME/RFC822 style header (used by HTTP::Message)
  518.  HTTP::Message      -- HTTP style message
  519.    HTTP::Request    -- HTTP request
  520.    HTTP::Response   -- HTTP response
  521.  HTTP::Daemon       -- A HTTP server class
  522.  
  523.  WWW::RobotRules    -- Parse robots.txt files
  524.    WWW::RobotRules::AnyDBM_File -- Persistent RobotRules
  525.  
  526. The following modules provide various functions and definitions.
  527.  
  528.  LWP                -- This file.  Library version number and documentation.
  529.  LWP::MediaTypes    -- MIME types configuration (text/html etc.)
  530.  LWP::Debug         -- Debug logging module
  531.  LWP::Simple        -- Simplified procedural interface for common functions
  532.  HTTP::Status       -- HTTP status code (200 OK etc)
  533.  HTTP::Date         -- Date parsing module for HTTP date formats
  534.  HTTP::Negotiate    -- HTTP content negotiation calculation
  535.  File::Listing      -- Parse directory listings
  536.  
  537.  
  538. =head1 MORE DOCUMENTATION
  539.  
  540. All modules contain detailed information on the interfaces they
  541. provide.  The I<lwpcook> manpage is the libwww-perl cookbook that contain
  542. examples of typical usage of the library.  You might want to take a
  543. look at how the scripts C<lwp-request>, C<lwp-rget> and C<lwp-mirror>
  544. are implemented.
  545.  
  546. =head1 BUGS
  547.  
  548. The library can not handle multiple simultaneous requests yet.  Also,
  549. check out what's left in the TODO file.
  550.  
  551. =head1 ACKNOWLEDGEMENTS
  552.  
  553. This package owes a lot in motivation, design, and code, to the
  554. libwww-perl library for Perl 4, maintained by Roy Fielding
  555. E<lt>fielding@ics.uci.edu>.
  556.  
  557. That package used work from Alberto Accomazzi, James Casey, Brooks
  558. Cutter, Martijn Koster, Oscar Nierstrasz, Mel Melchner, Gertjan van
  559. Oosten, Jared Rhine, Jack Shirazi, Gene Spafford, Marc VanHeyningen,
  560. Steven E. Brenner, Marion Hakanson, Waldemar Kebsch, Tony Sanders, and
  561. Larry Wall; see the libwww-perl-0.40 library for details.
  562.  
  563. The primary architect for this Perl 5 library is Martijn Koster and
  564. Gisle Aas, with lots of help from Graham Barr, Tim Bunce, Andreas
  565. Koenig, Jared Rhine, and Jack Shirazi.
  566.  
  567.  
  568. =head1 COPYRIGHT
  569.  
  570.   Copyright 1995-1999, Gisle Aas
  571.   Copyright 1995, Martijn Koster
  572.  
  573. This library is free software; you can redistribute it and/or
  574. modify it under the same terms as Perl itself.
  575.  
  576. =head1 AVAILABILITY
  577.  
  578. The latest version of this library is likely to be available from:
  579.  
  580.  http://www.sn.no/libwww-perl/
  581.  
  582. The best place to discuss this code is on the
  583. <libwww-perl@ics.uci.edu> mailing list.
  584.  
  585. =cut
  586.