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

  1. #######################################################################
  2. #
  3. # Win32::Internet - Perl Module for Internet Extensions
  4. # ^^^^^^^^^^^^^^^
  5. # This module creates an object oriented interface to the Win32
  6. # Internet Functions (WININET.DLL).
  7. #
  8. # Version: 0.08  (14 Feb 1997)
  9. # Version: 0.081 (25 Sep 1999)
  10. #
  11. #######################################################################
  12.  
  13. # changes:
  14. # - fixed 2 bugs in Option(s) related subs
  15. # - works with build 30x also
  16.  
  17. package Win32::Internet;
  18.  
  19. require Exporter;       # to export the constants to the main:: space
  20. require DynaLoader;     # to dynuhlode the module.
  21.  
  22. # use Win32::WinError;    # for windows constants.
  23.  
  24. @ISA= qw( Exporter DynaLoader );
  25. @EXPORT = qw(
  26.     HTTP_ADDREQ_FLAG_ADD
  27.     HTTP_ADDREQ_FLAG_REPLACE
  28.     HTTP_QUERY_ALLOW
  29.     HTTP_QUERY_CONTENT_DESCRIPTION
  30.     HTTP_QUERY_CONTENT_ID
  31.     HTTP_QUERY_CONTENT_LENGTH
  32.     HTTP_QUERY_CONTENT_TRANSFER_ENCODING
  33.     HTTP_QUERY_CONTENT_TYPE
  34.     HTTP_QUERY_COST
  35.     HTTP_QUERY_CUSTOM
  36.     HTTP_QUERY_DATE
  37.     HTTP_QUERY_DERIVED_FROM
  38.     HTTP_QUERY_EXPIRES
  39.     HTTP_QUERY_FLAG_REQUEST_HEADERS
  40.     HTTP_QUERY_FLAG_SYSTEMTIME
  41.     HTTP_QUERY_LANGUAGE
  42.     HTTP_QUERY_LAST_MODIFIED
  43.     HTTP_QUERY_MESSAGE_ID
  44.     HTTP_QUERY_MIME_VERSION
  45.     HTTP_QUERY_PRAGMA
  46.     HTTP_QUERY_PUBLIC
  47.     HTTP_QUERY_RAW_HEADERS
  48.     HTTP_QUERY_RAW_HEADERS_CRLF
  49.     HTTP_QUERY_REQUEST_METHOD
  50.     HTTP_QUERY_SERVER
  51.     HTTP_QUERY_STATUS_CODE
  52.     HTTP_QUERY_STATUS_TEXT
  53.     HTTP_QUERY_URI
  54.     HTTP_QUERY_USER_AGENT
  55.     HTTP_QUERY_VERSION
  56.     HTTP_QUERY_WWW_LINK
  57.     ICU_BROWSER_MODE
  58.     ICU_DECODE
  59.     ICU_ENCODE_SPACES_ONLY
  60.     ICU_ESCAPE
  61.     ICU_NO_ENCODE
  62.     ICU_NO_META
  63.     ICU_USERNAME
  64.     INTERNET_CONNECT_FLAG_PASSIVE
  65.     INTERNET_FLAG_ASYNC
  66.     INTERNET_HYPERLINK
  67.     INTERNET_FLAG_KEEP_CONNECTION
  68.     INTERNET_FLAG_MAKE_PERSISTENT
  69.     INTERNET_FLAG_NO_AUTH
  70.     INTERNET_FLAG_NO_AUTO_REDIRECT
  71.     INTERNET_FLAG_NO_CACHE_WRITE
  72.     INTERNET_FLAG_NO_COOKIES
  73.     INTERNET_FLAG_READ_PREFETCH
  74.     INTERNET_FLAG_RELOAD
  75.     INTERNET_FLAG_RESYNCHRONIZE
  76.     INTERNET_FLAG_TRANSFER_ASCII
  77.     INTERNET_FLAG_TRANSFER_BINARY
  78.     INTERNET_INVALID_PORT_NUMBER
  79.     INTERNET_INVALID_STATUS_CALLBACK
  80.     INTERNET_OPEN_TYPE_DIRECT
  81.     INTERNET_OPEN_TYPE_PROXY
  82.     INTERNET_OPEN_TYPE_PROXY_PRECONFIG
  83.     INTERNET_OPTION_CONNECT_BACKOFF
  84.     INTERNET_OPTION_CONNECT_RETRIES
  85.     INTERNET_OPTION_CONNECT_TIMEOUT
  86.     INTERNET_OPTION_CONTROL_SEND_TIMEOUT
  87.     INTERNET_OPTION_CONTROL_RECEIVE_TIMEOUT
  88.     INTERNET_OPTION_DATA_SEND_TIMEOUT
  89.     INTERNET_OPTION_DATA_RECEIVE_TIMEOUT
  90.     INTERNET_OPTION_HANDLE_SIZE
  91.     INTERNET_OPTION_LISTEN_TIMEOUT
  92.     INTERNET_OPTION_PASSWORD
  93.     INTERNET_OPTION_READ_BUFFER_SIZE
  94.     INTERNET_OPTION_USER_AGENT
  95.     INTERNET_OPTION_USERNAME
  96.     INTERNET_OPTION_VERSION
  97.     INTERNET_OPTION_WRITE_BUFFER_SIZE
  98.     INTERNET_SERVICE_FTP
  99.     INTERNET_SERVICE_GOPHER
  100.     INTERNET_SERVICE_HTTP
  101.     INTERNET_STATUS_CLOSING_CONNECTION
  102.     INTERNET_STATUS_CONNECTED_TO_SERVER    
  103.     INTERNET_STATUS_CONNECTING_TO_SERVER
  104.     INTERNET_STATUS_CONNECTION_CLOSED
  105.     INTERNET_STATUS_HANDLE_CLOSING
  106.     INTERNET_STATUS_HANDLE_CREATED
  107.     INTERNET_STATUS_NAME_RESOLVED
  108.     INTERNET_STATUS_RECEIVING_RESPONSE
  109.     INTERNET_STATUS_REDIRECT    
  110.     INTERNET_STATUS_REQUEST_COMPLETE    
  111.     INTERNET_STATUS_REQUEST_SENT    
  112.     INTERNET_STATUS_RESOLVING_NAME    
  113.     INTERNET_STATUS_RESPONSE_RECEIVED
  114.     INTERNET_STATUS_SENDING_REQUEST    
  115. );
  116.  
  117.  
  118. #######################################################################
  119. # This AUTOLOAD is used to 'autoload' constants from the constant()
  120. # XS function.  If a constant is not found then control is passed
  121. # to the AUTOLOAD in AutoLoader.
  122. #
  123.  
  124. sub AUTOLOAD {
  125.     my($constname);
  126.     ($constname = $AUTOLOAD) =~ s/.*:://;
  127.     #reset $! to zero to reset any current errors.
  128.     $!=0;
  129.     my $val = constant($constname, @_ ? $_[0] : 0);
  130.     if ($! != 0) {
  131.  
  132.         # [dada] This results in an ugly Autoloader error
  133.         #if ($! =~ /Invalid/) {
  134.         #  $AutoLoader::AUTOLOAD = $AUTOLOAD;
  135.         #  goto &AutoLoader::AUTOLOAD;
  136.         #} else {
  137.       
  138.         # [dada] ... I prefer this one :)
  139.   
  140.             ($pack,$file,$line) = caller; undef $pack;
  141.             die "Win32::Internet::$constname is not defined, used at $file line $line.";
  142.   
  143.         #}
  144.     }
  145.     eval "sub $AUTOLOAD { $val }";
  146.     goto &$AUTOLOAD;
  147. }
  148.  
  149.  
  150. #######################################################################
  151. # STATIC OBJECT PROPERTIES
  152. #
  153. $VERSION = "0.081";
  154.  
  155. %callback_code = ();
  156. %callback_info = ();
  157.  
  158.  
  159. #######################################################################
  160. # PUBLIC METHODS
  161. #
  162.  
  163. #======== ### CLASS CONSTRUCTOR
  164. sub new {
  165. #========
  166.     my($class, $useragent, $opentype, $proxy, $proxybypass, $flags) = @_;
  167.     my $self = {};  
  168.  
  169.     if(ref($useragent) and ref($useragent) eq "HASH") {
  170.         $opentype       = $useragent->{'opentype'};
  171.         $proxy          = $useragent->{'proxy'};
  172.         $proxybypass    = $useragent->{'proxybypass'};
  173.         $flags          = $useragent->{'flags'};
  174.         my $myuseragent = $useragent->{'useragent'};
  175.         undef $useragent;
  176.         $useragent      = $myuseragent;
  177.     }
  178.  
  179.     $useragent = "Perl-Win32::Internet/".$VERSION       unless defined($useragent);
  180.     $opentype = constant("INTERNET_OPEN_TYPE_DIRECT",0) unless defined($opentype);
  181.     $proxy = ""                                         unless defined($proxy);
  182.     $proxybypass = ""                                   unless defined($proxybypass);
  183.     $flags = 0                                          unless defined($flags);
  184.  
  185.  
  186.     my $handle = InternetOpen($useragent, $opentype, $proxy, $proxybypass, $flags);
  187.     if ($handle) {
  188.         $self->{'connections'} = 0;
  189.         $self->{'pasv'}        = 0;
  190.         $self->{'handle'}      = $handle; 
  191.         $self->{'useragent'}   = $useragent;
  192.         $self->{'proxy'}       = $proxy;
  193.         $self->{'proxybypass'} = $proxybypass;
  194.         $self->{'flags'}       = $flags;
  195.         $self->{'Type'}        = "Internet";
  196.     
  197.         # [dada] I think it's better to call SetStatusCallback explicitly...
  198.         #if($flags & constant("INTERNET_FLAG_ASYNC",0)) {
  199.         #  my $callbackresult=InternetSetStatusCallback($handle);
  200.         #  if($callbackresult==&constant("INTERNET_INVALID_STATUS_CALLBACK",0)) {
  201.         #    $self->{'Error'} = -2;
  202.         #  }
  203.         #}
  204.  
  205.         bless $self;
  206.     } else {
  207.         $self->{'handle'} = undef;
  208.         bless $self;
  209.     }
  210.     $self;
  211. }  
  212.  
  213.  
  214. #============
  215. sub OpenURL {
  216. #============
  217.     my($self,$new,$URL) = @_;
  218.     return undef unless ref($self);
  219.  
  220.     my $newhandle=InternetOpenUrl($self->{'handle'},$URL,"",0,0,0);
  221.     if(!$newhandle) {
  222.         $self->{'Error'} = "Cannot open URL.";
  223.         return undef;
  224.     } else {
  225.         $self->{'connections'}++;
  226.         $_[1] = _new($newhandle);
  227.         $_[1]->{'Type'} = "URL";
  228.         $_[1]->{'URL'}  = $URL;
  229.         return $newhandle;
  230.     }
  231. }
  232.  
  233.  
  234. #================
  235. sub TimeConvert {
  236. #================
  237.     my($self, $sec, $min, $hour, $day, $mon, $year, $wday, $rfc) = @_;
  238.     return undef unless ref($self);
  239.  
  240.     if(!defined($rfc)) {
  241.         return InternetTimeToSystemTime($sec);
  242.     } else {
  243.         return InternetTimeFromSystemTime($sec, $min, $hour, 
  244.                                           $day, $mon, $year, 
  245.                                           $wday, $rfc);
  246.     }
  247. }
  248.  
  249.  
  250. #=======================
  251. sub QueryDataAvailable {
  252. #=======================
  253.     my($self) = @_;
  254.     return undef unless ref($self);
  255.   
  256.     return InternetQueryDataAvailable($self->{'handle'});
  257. }
  258.  
  259.  
  260. #=============
  261. sub ReadFile {
  262. #=============
  263.     my($self, $buffersize) = @_;
  264.     return undef unless ref($self);
  265.  
  266.     my $howmuch = InternetQueryDataAvailable($self->{'handle'});
  267.     $buffersize = $howmuch unless defined($buffersize);
  268.     return InternetReadFile($self->{'handle'}, ($howmuch<$buffersize) ? $howmuch 
  269.                                                                       : $buffersize);
  270. }
  271.  
  272.  
  273. #===================
  274. sub ReadEntireFile {
  275. #===================
  276.     my($handle) = @_;
  277.     my $content    = "";
  278.     my $buffersize = 16000;
  279.     my $howmuch    = 0;
  280.     my $buffer     = "";
  281.  
  282.     $handle = $handle->{'handle'} if defined($handle) and ref($handle);
  283.  
  284.     $howmuch = InternetQueryDataAvailable($handle);
  285.     # print "\nReadEntireFile: $howmuch bytes to read...\n";
  286.   
  287.     while($howmuch>0) {
  288.         $buffer = InternetReadFile($handle, ($howmuch<$buffersize) ? $howmuch 
  289.                                                                    : $buffersize);
  290.         # print "\nReadEntireFile: ", length($buffer), " bytes read...\n";
  291.     
  292.         if(!defined($buffer)) {
  293.             return undef;
  294.         } else {
  295.             $content .= $buffer;
  296.         }
  297.         $howmuch = InternetQueryDataAvailable($handle);
  298.         # print "\nReadEntireFile: still $howmuch bytes to read...\n";
  299.     
  300.     }
  301.     return $content;
  302. }
  303.  
  304.  
  305. #=============
  306. sub FetchURL {
  307. #=============
  308.     # (OpenURL+Read+Close)...
  309.     my($self, $URL) = @_;
  310.     return undef unless ref($self);
  311.  
  312.     my $newhandle = InternetOpenUrl($self->{'handle'}, $URL, "", 0, 0, 0);
  313.     if(!$newhandle) {
  314.         $self->{'Error'} = "Cannot open URL.";
  315.         return undef;
  316.     } else {
  317.         my $content = ReadEntireFile($newhandle);
  318.         InternetCloseHandle($newhandle);
  319.         return $content;
  320.     }
  321. }
  322.  
  323.  
  324. #================
  325. sub Connections {
  326. #================
  327.     my($self) = @_;
  328.     return undef unless ref($self);
  329.  
  330.     return $self->{'connections'} if $self->{'Type'} eq "Internet";
  331.     return undef;
  332. }
  333.  
  334.  
  335. #================
  336. sub GetResponse {
  337. #================
  338.     my($num, $text) = InternetGetLastResponseInfo();
  339.     return $text;
  340. }
  341.  
  342. #===========
  343. sub Option {
  344. #===========
  345.     my($self, $option, $value) = @_;
  346.     return undef unless ref($self);
  347.  
  348.     my $retval = 0;
  349.  
  350.     $option = constant("INTERNET_OPTION_USER_AGENT", 0) unless defined($option);
  351.   
  352.     if(!defined($value)) {
  353.         $retval = InternetQueryOption($self->{'handle'}, $option);
  354.     } else {
  355.         $retval = InternetSetOption($self->{'handle'}, $option, $value);
  356.     }
  357.     return $retval;
  358. }
  359.  
  360.  
  361. #==============
  362. sub UserAgent {
  363. #==============
  364.     my($self, $value) = @_;
  365.     return undef unless ref($self);
  366.  
  367.     return Option($self, constant("INTERNET_OPTION_USER_AGENT", 0), $value);
  368. }
  369.  
  370.  
  371. #=============
  372. sub Username {
  373. #=============
  374.     my($self, $value) = @_;
  375.     return undef unless ref($self);
  376.   
  377.     if($self->{'Type'} ne "HTTP" and $self->{'Type'} ne "FTP") {
  378.         $self->{'Error'} = "Username() only on FTP or HTTP sessions.";
  379.         return undef;
  380.     }
  381.  
  382.     return Option($self, constant("INTERNET_OPTION_USERNAME", 0), $value);
  383. }
  384.  
  385.  
  386. #=============
  387. sub Password {
  388. #=============
  389.     my($self, $value)=@_;
  390.     return undef unless ref($self);
  391.  
  392.     if($self->{'Type'} ne "HTTP" and $self->{'Type'} ne "FTP") {
  393.         $self->{'Error'} = "Password() only on FTP or HTTP sessions.";
  394.         return undef;
  395.     }
  396.  
  397.     return Option($self, constant("INTERNET_OPTION_PASSWORD", 0), $value);
  398. }
  399.  
  400.  
  401. #===================
  402. sub ConnectTimeout {
  403. #===================
  404.     my($self, $value) = @_;
  405.     return undef unless ref($self);
  406.  
  407.     return Option($self, constant("INTERNET_OPTION_CONNECT_TIMEOUT", 0), $value);
  408. }
  409.  
  410.  
  411. #===================
  412. sub ConnectRetries {
  413. #===================
  414.     my($self, $value) = @_;
  415.     return undef unless ref($self);
  416.  
  417.     return Option($self, constant("INTERNET_OPTION_CONNECT_RETRIES", 0), $value);
  418. }
  419.  
  420.  
  421. #===================
  422. sub ConnectBackoff {
  423. #===================
  424.     my($self,$value)=@_;
  425.     return undef unless ref($self);
  426.  
  427.     return Option($self, constant("INTERNET_OPTION_CONNECT_BACKOFF", 0), $value);
  428. }
  429.  
  430.  
  431. #====================
  432. sub DataSendTimeout {
  433. #====================
  434.     my($self,$value) = @_;
  435.     return undef unless ref($self);
  436.  
  437.     return Option($self, constant("INTERNET_OPTION_DATA_SEND_TIMEOUT", 0), $value);
  438. }
  439.  
  440.  
  441. #=======================
  442. sub DataReceiveTimeout {
  443. #=======================
  444.     my($self, $value) = @_;
  445.     return undef unless ref($self);
  446.  
  447.     return Option($self, constant("INTERNET_OPTION_DATA_RECEIVE_TIMEOUT", 0), $value);
  448. }
  449.  
  450.  
  451. #==========================
  452. sub ControlReceiveTimeout {
  453. #==========================
  454.     my($self, $value) = @_;
  455.     return undef unless ref($self);
  456.  
  457.     return Option($self, constant("INTERNET_OPTION_CONTROL_RECEIVE_TIMEOUT", 0), $value);
  458. }
  459.  
  460.  
  461. #=======================
  462. sub ControlSendTimeout {
  463. #=======================
  464.     my($self, $value) = @_;
  465.     return undef unless ref($self);
  466.  
  467.     return Option($self, constant("INTERNET_OPTION_CONTROL_SEND_TIMEOUT", 0), $value);
  468. }
  469.  
  470.  
  471. #================
  472. sub QueryOption {
  473. #================
  474.     my($self, $option) = @_;
  475.     return undef unless ref($self);
  476.  
  477.     return InternetQueryOption($self->{'handle'}, $option);
  478. }
  479.  
  480.  
  481. #==============
  482. sub SetOption {
  483. #==============
  484.     my($self, $option, $value) = @_;
  485.     return undef unless ref($self);
  486.  
  487.     return InternetSetOption($self->{'handle'}, $option, $value);
  488. }
  489.  
  490.  
  491. #=============
  492. sub CrackURL {
  493. #=============
  494.     my($self, $URL, $flags) = @_;
  495.     return undef unless ref($self);
  496.  
  497.     $flags = constant("ICU_ESCAPE", 0) unless defined($flags);
  498.   
  499.     my @newurl = InternetCrackUrl($URL, $flags);
  500.   
  501.     if(!defined($newurl[0])) {
  502.         $self->{'Error'} = "Cannot crack URL.";
  503.         return undef;
  504.     } else {
  505.         return @newurl;
  506.     }
  507. }
  508.  
  509.  
  510. #==============
  511. sub CreateURL {
  512. #==============
  513.     my($self, $scheme, $hostname, $port, 
  514.        $username, $password, 
  515.        $path, $extrainfo, $flags) = @_;
  516.     return undef unless ref($self);
  517.  
  518.     if(ref($scheme) and ref($scheme) eq "HASH") {
  519.         $flags       = $hostname;
  520.         $hostname    = $scheme->{'hostname'};
  521.         $port        = $scheme->{'port'};
  522.         $username    = $scheme->{'username'};
  523.         $password    = $scheme->{'password'};
  524.         $path        = $scheme->{'path'};
  525.         $extrainfo   = $scheme->{'extrainfo'};
  526.         my $myscheme = $scheme->{'scheme'};
  527.         undef $scheme;
  528.         $scheme      = $myscheme;
  529.     }
  530.  
  531.     $hostname  = ""                    unless defined($hostname);
  532.     $port      = 0                     unless defined($port);
  533.     $username  = ""                    unless defined($username);
  534.     $password  = ""                    unless defined($password);
  535.     $path      = ""                    unless defined($path);
  536.     $extrainfo = ""                    unless defined($extrainfo);
  537.     $flags = constant("ICU_ESCAPE", 0) unless defined($flags);
  538.   
  539.     my $newurl = InternetCreateUrl($scheme, $hostname, $port,
  540.                                    $username, $password,
  541.                                    $path, $extrainfo, $flags);
  542.     if(!defined($newurl)) {
  543.         $self->{'Error'} = "Cannot create URL.";
  544.         return undef;
  545.     } else {
  546.         return $newurl;
  547.     }
  548. }
  549.  
  550.  
  551. #====================
  552. sub CanonicalizeURL {
  553. #====================
  554.     my($self, $URL, $flags) = @_;
  555.     return undef unless ref($self);
  556.   
  557.     my $newurl = InternetCanonicalizeUrl($URL, $flags);
  558.     if(!defined($newurl)) {
  559.         $self->{'Error'} = "Cannot canonicalize URL.";
  560.         return undef;
  561.     } else {
  562.         return $newurl;
  563.     }
  564. }
  565.  
  566.  
  567. #===============
  568. sub CombineURL {
  569. #===============
  570.     my($self, $baseURL, $relativeURL, $flags) = @_;
  571.     return undef unless ref($self);
  572.   
  573.     my $newurl = InternetCombineUrl($baseURL, $relativeURL, $flags);
  574.     if(!defined($newurl)) {
  575.         $self->{'Error'} = "Cannot combine URL(s).";
  576.         return undef;
  577.     } else {
  578.         return $newurl;
  579.     }
  580. }
  581.  
  582.  
  583. #======================
  584. sub SetStatusCallback {
  585. #======================
  586.     my($self) = @_;
  587.     return undef unless ref($self);
  588.   
  589.     my $callback = InternetSetStatusCallback($self->{'handle'});
  590.     print "callback=$callback, constant=",constant("INTERNET_INVALID_STATUS_CALLBACK", 0), "\n";
  591.     if($callback == constant("INTERNET_INVALID_STATUS_CALLBACK", 0)) {
  592.         return undef;
  593.     } else {
  594.         return $callback;
  595.     }
  596. }
  597.  
  598.  
  599. #======================
  600. sub GetStatusCallback {
  601. #======================
  602.     my($self, $context) = @_;
  603.     $context = $self if not defined $context;
  604.     return($callback_code{$context}, $callback_info{$context});
  605. }
  606.  
  607.  
  608. #==========
  609. sub Error {
  610. #==========
  611.     my($self) = @_;
  612.     return undef unless ref($self);
  613.   
  614.     my $errtext = "";
  615.     my $tmp     = "";
  616.     my $errnum  = Win32::GetLastError();
  617.  
  618.     if($errnum < 12000) {
  619.         $errtext =  Win32::FormatMessage($errnum);
  620.         $errtext =~ s/[\r\n]//g;
  621.     } elsif($errnum == 12003) {
  622.         ($tmp, $errtext) = InternetGetLastResponseInfo();
  623.         chomp $errtext;
  624.         1 while($errtext =~ s/(.*)\n//); # the last line should be significative... 
  625.                                          # otherwise call GetResponse() to get it whole
  626.     } elsif($errnum >= 12000) {
  627.         $errtext = FormatMessage($errnum);
  628.         $errtext =~ s/[\r\n]//g;        
  629.     } else {
  630.         $errtext="Error";
  631.     }
  632.     if($errnum == 0 and defined($self->{'Error'})) { 
  633.         if($self->{'Error'} == -2) {
  634.             $errnum  = -2;
  635.             $errtext = "Asynchronous operations not available.";
  636.         } else {
  637.             $errnum  = -1;
  638.             $errtext = $self->{'Error'};
  639.         }
  640.     }
  641.     return (wantarray)? ($errnum, $errtext) : "\[".$errnum."\] ".$errtext;
  642. }
  643.  
  644.  
  645. #============
  646. sub Version {
  647. #============
  648.     my $dll =  InternetDllVersion();
  649.        $dll =~ s/\0//g;
  650.     return (wantarray)? ($Win32::Internet::VERSION,    $dll) 
  651.                       :  $Win32::Internet::VERSION."/".$dll;
  652. }
  653.  
  654.  
  655. #==========
  656. sub Close {
  657. #==========
  658.     my($self, $handle) = @_;
  659.     if(!defined($handle)) {
  660.         return undef unless ref($self);
  661.         $handle = $self->{'handle'};
  662.     }
  663.     InternetCloseHandle($handle);
  664. }
  665.  
  666.  
  667.  
  668. #######################################################################
  669. # FTP CLASS METHODS
  670. #
  671.  
  672. #======== ### FTP CONSTRUCTOR
  673. sub FTP {
  674. #========
  675.     my($self, $new, $server, $username, $password, $port, $pasv, $context) = @_;    
  676.     return undef unless ref($self);
  677.  
  678.     if(ref($server) and ref($server) eq "HASH") {
  679.         $port        = $server->{'port'};
  680.         $username    = $server->{'username'};
  681.         $password    = $password->{'host'};
  682.         my $myserver = $server->{'server'};
  683.         $pasv        = $server->{'pasv'};
  684.         $context     = $server->{'context'};
  685.         undef $server;
  686.         $server      = $myserver;
  687.     }
  688.   
  689.     $server   = ""          unless defined($server);
  690.     $username = "anonymous" unless defined($username);
  691.     $password = ""          unless defined($password);
  692.     $port     = 21          unless defined($port);
  693.     $context  = 0           unless defined($context);
  694.  
  695.     if(defined($pasv)) {
  696.         $pasv=constant("INTERNET_CONNECT_FLAG_PASSIVE",0) if $pasv ne 0;
  697.     } else {  
  698.         $pasv=$self->{'pasv'};
  699.     }
  700.   
  701.     my $newhandle = InternetConnect($self->{'handle'}, $server, $port,
  702.                                     $username, $password,
  703.                                     constant("INTERNET_SERVICE_FTP", 0),
  704.                                     $pasv, $context);
  705.     if($newhandle) {
  706.         $self->{'connections'}++;
  707.         $_[1] = _new($newhandle);
  708.         $_[1]->{'Type'}     = "FTP";
  709.         $_[1]->{'Mode'}     = "bin";
  710.         $_[1]->{'pasv'}     = $pasv;
  711.         $_[1]->{'username'} = $username;
  712.         $_[1]->{'password'} = $password;
  713.         $_[1]->{'server'}   = $server;
  714.         return $newhandle;
  715.     } else {
  716.         return undef;
  717.     }
  718. }
  719.  
  720. #========
  721. sub Pwd {
  722. #========
  723.     my($self) = @_;
  724.     return undef unless ref($self);
  725.  
  726.     if($self->{'Type'} ne "FTP" or !defined($self->{'handle'})) {
  727.         $self->{'Error'} = "Pwd() only on FTP sessions.";
  728.         return undef;
  729.     }
  730.   
  731.     return FtpGetCurrentDirectory($self->{'handle'});
  732. }
  733.  
  734.  
  735. #=======
  736. sub Cd {
  737. #=======
  738.     my($self, $path) = @_;
  739.     return undef unless ref($self);
  740.  
  741.     if($self->{'Type'} ne "FTP" || !defined($self->{'handle'})) {
  742.         $self->{'Error'} = "Cd() only on FTP sessions.";
  743.         return undef;
  744.     }
  745.   
  746.     my $retval = FtpSetCurrentDirectory($self->{'handle'}, $path);
  747.     if(!defined($retval)) {
  748.         return undef;
  749.     } else {
  750.         return $path;
  751.     }
  752. }
  753. #====================
  754. sub Cwd   { Cd(@_); }
  755. sub Chdir { Cd(@_); }
  756. #====================
  757.  
  758.  
  759. #==========
  760. sub Mkdir {
  761. #==========
  762.     my($self, $path) = @_;
  763.     return undef unless ref($self);
  764.  
  765.     if($self->{'Type'} ne "FTP" or !defined($self->{'handle'})) {
  766.         $self->{'Error'} = "Mkdir() only on FTP sessions.";
  767.         return undef;
  768.     }
  769.   
  770.     my $retval = FtpCreateDirectory($self->{'handle'}, $path);
  771.     $self->{'Error'} = "Can't create directory." unless defined($retval);
  772.     return $retval;
  773. }
  774. #====================
  775. sub Md { Mkdir(@_); }
  776. #====================
  777.  
  778.  
  779. #=========
  780. sub Mode {
  781. #=========
  782.     my($self, $value) = @_;
  783.     return undef unless ref($self);
  784.  
  785.     if($self->{'Type'} ne "FTP" or !defined($self->{'handle'})) {
  786.         $self->{'Error'} = "Mode() only on FTP sessions.";
  787.         return undef;
  788.     }
  789.   
  790.     if(!defined($value)) {
  791.         return $self->{'Mode'};
  792.     } else {
  793.         my $modesub = ($value =~ /^a/i) ? "Ascii" : "Binary";
  794.         $self->$modesub($_[0]);
  795.     }
  796.     return $self->{'Mode'};
  797. }
  798.  
  799.  
  800. #==========
  801. sub Rmdir {
  802. #==========
  803.     my($self, $path) = @_;
  804.     return undef unless ref($self);
  805.  
  806.     if($self->{'Type'} ne "FTP" or !defined($self->{'handle'})) {
  807.         $self->{'Error'} = "Rmdir() only on FTP sessions.";
  808.         return undef;
  809.     }
  810.     my $retval = FtpRemoveDirectory($self->{'handle'}, $path);
  811.     $self->{'Error'} = "Can't remove directory." unless defined($retval);
  812.     return $retval;
  813. }
  814. #====================
  815. sub Rd { Rmdir(@_); }
  816. #====================
  817.  
  818.  
  819. #=========
  820. sub Pasv {
  821. #=========
  822.     my($self, $value) = @_;
  823.     return undef unless ref($self);
  824.  
  825.     if(defined($value) and $self->{'Type'} eq "Internet") {
  826.         if($value == 0) {
  827.             $self->{'pasv'} = 0;
  828.         } else {
  829.             $self->{'pasv'} = 1;
  830.         }
  831.     }
  832.     return $self->{'pasv'};
  833. }
  834.  
  835. #=========
  836. sub List {
  837. #=========
  838.     my($self, $pattern, $retmode) = @_;
  839.     return undef unless ref($self);
  840.  
  841.     my $retval = "";
  842.     my $size   = ""; 
  843.     my $attr   = ""; 
  844.     my $ctime  = ""; 
  845.     my $atime  = ""; 
  846.     my $mtime  = "";
  847.     my $csec = 0; my $cmin = 0; my $chou = 0; my $cday = 0; my $cmon = 0; my $cyea = 0;
  848.     my $asec = 0; my $amin = 0; my $ahou = 0; my $aday = 0; my $amon = 0; my $ayea = 0;
  849.     my $msec = 0; my $mmin = 0; my $mhou = 0; my $mday = 0; my $mmon = 0; my $myea = 0;
  850.     my $newhandle = 0;
  851.     my $nextfile  = 1;
  852.     my @results   = ();
  853.     my ($filename, $altname, $file);
  854.   
  855.     if($self->{'Type'} ne "FTP") {
  856.         $self->{'Error'} = "List() only on FTP sessions.";
  857.         return undef;
  858.     }
  859.   
  860.     $pattern = "" unless defined($pattern);
  861.     $retmode = 1  unless defined($retmode);
  862.  
  863.     if($retmode == 2) {
  864.   
  865.         ( $newhandle,$filename, $altname, $size, $attr,         
  866.           $csec, $cmin, $chou, $cday, $cmon, $cyea,
  867.           $asec, $amin, $ahou, $aday, $amon, $ayea,
  868.           $msec, $mmin, $mhou, $mday, $mmon, $myea
  869.         ) = FtpFindFirstFile($self->{'handle'}, $pattern, 0, 0);
  870.     
  871.         if(!$newhandle) {
  872.             $self->{'Error'} = "Can't read FTP directory.";
  873.             return undef;
  874.         } else {
  875.     
  876.             while($nextfile) {
  877.                 $ctime = join(",", ($csec, $cmin, $chou, $cday, $cmon, $cyea));
  878.                 $atime = join(",", ($asec, $amin, $ahou, $aday, $amon, $ayea));
  879.                 $mtime = join(",", ($msec, $mmin, $mhou, $mday, $mmon, $myea));
  880.                 push(@results, $filename, $altname, $size, $attr, $ctime, $atime, $mtime);
  881.         
  882.                 ( $nextfile, $filename, $altname, $size, $attr,
  883.                   $csec, $cmin, $chou, $cday, $cmon, $cyea,
  884.                   $asec, $amin, $ahou, $aday, $amon, $ayea,
  885.                   $msec, $mmin, $mhou, $mday, $mmon, $myea
  886.                 ) = InternetFindNextFile($newhandle);      
  887.         
  888.             }
  889.             InternetCloseHandle($newhandle);
  890.             return @results;
  891.       
  892.         }
  893.     
  894.     } elsif($retmode == 3) {
  895.   
  896.         ( $newhandle,$filename, $altname, $size, $attr,
  897.           $csec, $cmin, $chou, $cday, $cmon, $cyea,
  898.           $asec, $amin, $ahou, $aday, $amon, $ayea,
  899.           $msec, $mmin, $mhou, $mday, $mmon, $myea
  900.         ) = FtpFindFirstFile($self->{'handle'}, $pattern, 0, 0);
  901.     
  902.         if(!$newhandle) {
  903.             $self->{'Error'} = "Can't read FTP directory.";
  904.             return undef;
  905.        
  906.         } else {
  907.      
  908.             while($nextfile) {
  909.                 $ctime = join(",", ($csec, $cmin, $chou, $cday, $cmon, $cyea));
  910.                 $atime = join(",", ($asec, $amin, $ahou, $aday, $amon, $ayea));
  911.                 $mtime = join(",", ($msec, $mmin, $mhou, $mday, $mmon, $myea));
  912.                 $file = { "name"     => $filename,
  913.                           "altname"  => $altname,
  914.                           "size"     => $size,
  915.                           "attr"     => $attr,
  916.                           "ctime"    => $ctime,
  917.                           "atime"    => $atime,
  918.                           "mtime"    => $mtime,
  919.                 };
  920.                 push(@results, $file);
  921.          
  922.                 ( $nextfile, $filename, $altname, $size, $attr,
  923.                   $csec, $cmin, $chou, $cday, $cmon, $cyea,
  924.                   $asec, $amin, $ahou, $aday, $amon, $ayea,
  925.                   $msec, $mmin, $mhou, $mday, $mmon, $myea
  926.                 ) = InternetFindNextFile($newhandle);
  927.          
  928.             }
  929.             InternetCloseHandle($newhandle);
  930.             return @results;
  931.         }
  932.     
  933.     } else {
  934.     
  935.         ($newhandle, $filename) = FtpFindFirstFile($self->{'handle'}, $pattern, 0, 0);
  936.     
  937.         if(!$newhandle) {
  938.             $self->{'Error'} = "Can't read FTP directory.";
  939.             return undef;
  940.       
  941.         } else {
  942.     
  943.             while($nextfile) {
  944.                 push(@results, $filename);
  945.         
  946.                 ($nextfile, $filename) = InternetFindNextFile($newhandle);  
  947.                 # print "List.no more files\n" if !$nextfile;
  948.         
  949.             }
  950.             InternetCloseHandle($newhandle);
  951.             return @results;
  952.         }
  953.     }
  954. }
  955. #====================
  956. sub Ls  { List(@_); }
  957. sub Dir { List(@_); }
  958. #====================
  959.  
  960.  
  961. #=================
  962. sub FileAttrInfo {
  963. #=================
  964.     my($self,$attr) = @_;
  965.     my @attrinfo = ();
  966.     push(@attrinfo, "READONLY")   if $attr & 1;
  967.     push(@attrinfo, "HIDDEN")     if $attr & 2;
  968.     push(@attrinfo, "SYSTEM")     if $attr & 4;
  969.     push(@attrinfo, "DIRECTORY")  if $attr & 16;
  970.     push(@attrinfo, "ARCHIVE")    if $attr & 32;
  971.     push(@attrinfo, "NORMAL")     if $attr & 128;
  972.     push(@attrinfo, "TEMPORARY")  if $attr & 256;
  973.     push(@attrinfo, "COMPRESSED") if $attr & 2048;
  974.     return (wantarray)? @attrinfo : join(" ", @attrinfo);
  975. }
  976.  
  977.  
  978. #===========
  979. sub Binary {
  980. #===========
  981.     my($self) = @_;
  982.     return undef unless ref($self);
  983.  
  984.     if($self->{'Type'} ne "FTP") {
  985.         $self->{'Error'} = "Binary() only on FTP sessions.";
  986.         return undef;
  987.     }
  988.     $self->{'Mode'} = "bin";
  989.     return undef;
  990. }
  991. #======================
  992. sub Bin { Binary(@_); }
  993. #======================
  994.  
  995.  
  996. #==========
  997. sub Ascii {
  998. #==========
  999.     my($self) = @_;
  1000.     return undef unless ref($self);
  1001.  
  1002.     if($self->{'Type'} ne "FTP") {
  1003.         $self->{'Error'} = "Ascii() only on FTP sessions.";
  1004.         return undef;
  1005.     }
  1006.     $self->{'Mode'} = "asc";
  1007.     return undef;
  1008. }
  1009. #=====================
  1010. sub Asc { Ascii(@_); }
  1011. #=====================
  1012.  
  1013.  
  1014. #========
  1015. sub Get {
  1016. #========
  1017.     my($self, $remote, $local, $overwrite, $flags, $context) = @_;
  1018.     return undef unless ref($self);
  1019.  
  1020.     if($self->{'Type'} ne "FTP") {
  1021.         $self->{'Error'} = "Get() only on FTP sessions.";
  1022.         return undef;
  1023.     }
  1024.     my $mode = ($self->{'Mode'} eq "asc" ? 1 : 2);
  1025.  
  1026.     $remote    = ""      unless defined($remote);
  1027.     $local     = $remote unless defined($local);
  1028.     $overwrite = 0       unless defined($overwrite);
  1029.     $flags     = 0       unless defined($flags);
  1030.     $context   = 0       unless defined($context);
  1031.   
  1032.     my $retval = FtpGetFile($self->{'handle'},
  1033.                             $remote,
  1034.                             $local,
  1035.                             $overwrite,
  1036.                             $flags,
  1037.                             $mode,
  1038.                             $context);
  1039.     $self->{'Error'} = "Can't get file." unless defined($retval);
  1040.     return $retval;
  1041. }
  1042.  
  1043.  
  1044. #===========
  1045. sub Rename {
  1046. #===========
  1047.     my($self, $oldname, $newname) = @_;
  1048.     return undef unless ref($self);
  1049.  
  1050.     if($self->{'Type'} ne "FTP") {
  1051.         $self->{'Error'} = "Rename() only on FTP sessions.";
  1052.         return undef;
  1053.     }
  1054.  
  1055.     my $retval = FtpRenameFile($self->{'handle'}, $oldname, $newname);
  1056.     $self->{'Error'} = "Can't rename file." unless defined($retval);
  1057.     return $retval;
  1058. }
  1059. #======================
  1060. sub Ren { Rename(@_); }
  1061. #======================
  1062.  
  1063.  
  1064. #===========
  1065. sub Delete {
  1066. #===========
  1067.     my($self, $filename) = @_;
  1068.     return undef unless ref($self);
  1069.  
  1070.     if($self->{'Type'} ne "FTP") {
  1071.         $self->{'Error'} = "Delete() only on FTP sessions.";
  1072.         return undef;
  1073.     }
  1074.     my $retval = FtpDeleteFile($self->{'handle'}, $filename);
  1075.     $self->{'Error'} = "Can't delete file." unless defined($retval);
  1076.     return $retval;
  1077. }
  1078. #======================
  1079. sub Del { Delete(@_); }
  1080. #======================
  1081.  
  1082.  
  1083. #========
  1084. sub Put {
  1085. #========
  1086.     my($self, $local, $remote, $context) = @_;
  1087.     return undef unless ref($self);
  1088.  
  1089.     if($self->{'Type'} ne "FTP") {
  1090.         $self->{'Error'} = "Put() only on FTP sessions.";
  1091.         return undef;
  1092.     }
  1093.     my $mode = ($self->{'Mode'} eq "asc" ? 1 : 2);
  1094.  
  1095.     $context = 0 unless defined($context);
  1096.   
  1097.     my $retval = FtpPutFile($self->{'handle'}, $local, $remote, $mode, $context);
  1098.     $self->{'Error'} = "Can't put file." unless defined($retval);
  1099.     return $retval;
  1100. }
  1101.  
  1102.  
  1103. #######################################################################
  1104. # HTTP CLASS METHODS
  1105. #
  1106.  
  1107. #========= ### HTTP CONSTRUCTOR
  1108. sub HTTP {
  1109. #=========
  1110.     my($self, $new, $server, $username, $password, $port, $flags, $context) = @_;    
  1111.     return undef unless ref($self);
  1112.  
  1113.     if(ref($server) and ref($server) eq "HASH") {
  1114.         my $myserver = $server->{'server'};
  1115.         $username    = $server->{'username'};
  1116.         $password    = $password->{'host'};
  1117.         $port        = $server->{'port'};    
  1118.         $flags       = $server->{'flags'};
  1119.         $context     = $server->{'context'};
  1120.         undef $server;
  1121.         $server      = $myserver;
  1122.     }
  1123.  
  1124.     $server   = ""          unless defined($server);
  1125.     $username = "anonymous" unless defined($username);
  1126.     $password = ""          unless defined($username);
  1127.     $port     = 80          unless defined($port);
  1128.     $flags    = 0           unless defined($flags);
  1129.     $context  = 0           unless defined($context);
  1130.   
  1131.     my $newhandle = InternetConnect($self->{'handle'}, $server, $port,
  1132.                                     $username, $password,
  1133.                                     constant("INTERNET_SERVICE_HTTP", 0),
  1134.                                     $flags, $context);
  1135.     if($newhandle) {
  1136.         $self->{'connections'}++;
  1137.         $_[1] = _new($newhandle);
  1138.         $_[1]->{'Type'}     = "HTTP";
  1139.         $_[1]->{'username'} = $username;
  1140.         $_[1]->{'password'} = $password;
  1141.         $_[1]->{'server'}   = $server;
  1142.         $_[1]->{'accept'}   = "text/*\0image/gif\0image/jpeg";
  1143.         return $newhandle;
  1144.     } else {
  1145.         return undef;
  1146.     }
  1147. }
  1148.  
  1149.  
  1150. #================
  1151. sub OpenRequest {
  1152. #================
  1153.     # alternatively to Request:
  1154.     # it creates a new HTTP_Request object
  1155.     # you can act upon it with AddHeader, SendRequest, ReadFile, QueryInfo, Close, ...
  1156.  
  1157.     my($self, $new, $path, $method, $version, $referer, $accept, $flags, $context) = @_;
  1158.     return undef unless ref($self);
  1159.  
  1160.     if($self->{'Type'} ne "HTTP") {
  1161.         $self->{'Error'} = "OpenRequest() only on HTTP sessions.";
  1162.         return undef;
  1163.     }
  1164.  
  1165.     if(ref($path) and ref($path) eq "HASH") {
  1166.         $method    = $path->{'method'};
  1167.         $version   = $path->{'version'};
  1168.         $referer   = $path->{'referer'};
  1169.         $accept    = $path->{'accept'};
  1170.         $flags     = $path->{'flags'};
  1171.         $context   = $path->{'context'};
  1172.         my $mypath = $path->{'path'};
  1173.         undef $path;
  1174.         $path      = $mypath;
  1175.     }
  1176.  
  1177.     $method  = "GET"             unless defined($method);
  1178.     $path    = "/"               unless defined($path);
  1179.     $version = "HTTP/1.0"        unless defined($version); 
  1180.     $referer = ""                unless defined($referer);
  1181.     $accept  = $self->{'accept'} unless defined($accept);
  1182.     $flags   = 0                 unless defined($flags);
  1183.     $context = 0                 unless defined($context);
  1184.   
  1185.     $path = "/".$path if substr($path,0,1) ne "/";  
  1186.   
  1187.     my $newhandle = HttpOpenRequest($self->{'handle'},
  1188.                                     $method,
  1189.                                     $path,
  1190.                                     $version,
  1191.                                     $referer,
  1192.                                     $accept,
  1193.                                     $flags,
  1194.                                     $context);
  1195.     if($newhandle) {
  1196.         $_[1] = _new($newhandle);
  1197.         $_[1]->{'Type'}    = "HTTP_Request";
  1198.         $_[1]->{'method'}  = $method;
  1199.         $_[1]->{'request'} = $path;
  1200.         $_[1]->{'accept'}  = $accept;
  1201.         return $newhandle;
  1202.     } else {
  1203.         return undef;
  1204.     }
  1205. }
  1206.  
  1207. #================
  1208. sub SendRequest {
  1209. #================
  1210.     my($self, $postdata) = @_;
  1211.     return undef unless ref($self);
  1212.  
  1213.     if($self->{'Type'} ne "HTTP_Request") {
  1214.         $self->{'Error'} = "SendRequest() only on HTTP requests.";
  1215.         return undef;
  1216.     }
  1217.   
  1218.     $postdata = "" unless defined($postdata);
  1219.  
  1220.     return HttpSendRequest($self->{'handle'}, "", $postdata);
  1221. }
  1222.  
  1223.  
  1224. #==============
  1225. sub AddHeader {
  1226. #==============
  1227.     my($self, $header, $flags) = @_;
  1228.     return undef unless ref($self);
  1229.   
  1230.     if($self->{'Type'} ne "HTTP_Request") {
  1231.         $self->{'Error'} = "AddHeader() only on HTTP requests.";
  1232.         return undef;
  1233.     }
  1234.   
  1235.     $flags = constant("HTTP_ADDREQ_FLAG_ADD", 0) if (!defined($flags) or $flags == 0);
  1236.  
  1237.     return HttpAddRequestHeaders($self->{'handle'}, $header, $flags);
  1238. }
  1239.  
  1240.  
  1241. #==============
  1242. sub QueryInfo {
  1243. #==============
  1244.     my($self, $header, $flags) = @_;
  1245.     return undef unless ref($self);
  1246.  
  1247.     if($self->{'Type'} ne "HTTP_Request") {
  1248.         $self->{'Error'}="QueryInfo() only on HTTP requests.";
  1249.         return undef;
  1250.     }
  1251.   
  1252.     $flags = constant("HTTP_QUERY_CUSTOM", 0) if (!defined($flags) and defined($header));
  1253.     my @queryresult = HttpQueryInfo($self->{'handle'}, $flags, $header);
  1254.     return (wantarray)? @queryresult : join(" ", @queryresult);
  1255. }
  1256.  
  1257.  
  1258. #============
  1259. sub Request {
  1260. #============
  1261.     # HttpOpenRequest+HttpAddHeaders+HttpSendRequest+InternetReadFile+HttpQueryInfo
  1262.     my($self, $path, $method, $version, $referer, $accept, $flags, $postdata) = @_;
  1263.     return undef unless ref($self);
  1264.  
  1265.     if($self->{'Type'} ne "HTTP") {
  1266.         $self->{'Error'} = "Request() only on HTTP sessions.";
  1267.         return undef;
  1268.     }
  1269.  
  1270.     if(ref($path) and ref($path) eq "HASH") {
  1271.         $method    = $path->{'method'};
  1272.         $version   = $path->{'version'};
  1273.         $referer   = $path->{'referer'};
  1274.         $accept    = $path->{'accept'};
  1275.         $flags     = $path->{'flags'};
  1276.         $postdata  = $path->{'postdata'};
  1277.         my $mypath = $path->{'path'};
  1278.         undef $path;
  1279.         $path      = $mypath;
  1280.     }
  1281.  
  1282.     my $content     = "";
  1283.     my $result      = "";
  1284.     my @queryresult = ();
  1285.     my $statuscode  = "";
  1286.     my $headers     = "";
  1287.   
  1288.     $path     = "/"               unless defined($path);
  1289.     $method   = "GET"             unless defined($method);
  1290.     $version  = "HTTP/1.0"        unless defined($version); 
  1291.     $referer  = ""                unless defined($referer);
  1292.     $accept   = $self->{'accept'} unless defined($accept);
  1293.     $flags    = 0                 unless defined($flags);
  1294.     $postdata = ""                unless defined($postdata);
  1295.  
  1296.     $path = "/".$path if substr($path,0,1) ne "/";  
  1297.   
  1298.     my $newhandle = HttpOpenRequest($self->{'handle'},
  1299.                                     $method,
  1300.                                     $path,
  1301.                                     $version,
  1302.                                     $referer,
  1303.                                     $accept,
  1304.                                     0,
  1305.                                     $flags);
  1306.  
  1307.     if($newhandle) {
  1308.  
  1309.         $result = HttpSendRequest($newhandle, "", $postdata);
  1310.  
  1311.         if(defined($result)) {
  1312.             $statuscode = HttpQueryInfo($newhandle,
  1313.                                         constant("HTTP_QUERY_STATUS_CODE", 0), "");
  1314.             $headers = HttpQueryInfo($newhandle,
  1315.                                      constant("HTTP_QUERY_RAW_HEADERS_CRLF", 0), "");
  1316.             $content = ReadEntireFile($newhandle);
  1317.                
  1318.             InternetCloseHandle($newhandle);
  1319.       
  1320.             return($statuscode, $headers, $content);
  1321.         } else {
  1322.             return undef;
  1323.         }
  1324.     } else {
  1325.         return undef;
  1326.     }
  1327. }
  1328.  
  1329.  
  1330. #######################################################################
  1331. # END OF THE PUBLIC METHODS
  1332. #
  1333.  
  1334.  
  1335. #========= ### SUB-CLASSES CONSTRUCTOR
  1336. sub _new {
  1337. #=========
  1338.     my $self = {};
  1339.     if ($_[0]) {
  1340.         $self->{'handle'} = $_[0];
  1341.         bless $self;
  1342.     } else {
  1343.         undef($self);
  1344.     }
  1345.     $self;
  1346. }
  1347.  
  1348.  
  1349. #============ ### CLASS DESTRUCTOR
  1350. sub DESTROY {
  1351. #============
  1352.     my($self) = @_;
  1353.     # print "Closing handle $self->{'handle'}...\n";
  1354.     InternetCloseHandle($self->{'handle'});
  1355.     # [dada] rest in peace
  1356. }
  1357.  
  1358.  
  1359. #=============
  1360. sub callback {
  1361. #=============
  1362.     my($name, $status, $info) = @_;
  1363.     $callback_code{$name} = $status;
  1364.     $callback_info{$name} = $info;
  1365. }
  1366.  
  1367. #######################################################################
  1368. # dynamically load in the Internet.pll module.
  1369. #
  1370.  
  1371. bootstrap Win32::Internet;
  1372.  
  1373. # Preloaded methods go here.
  1374.  
  1375. #Currently Autoloading is not implemented in Perl for win32
  1376. # Autoload methods go after __END__, and are processed by the autosplit program.
  1377.  
  1378. 1;
  1379. __END__
  1380.  
  1381. =head1 NAME
  1382.  
  1383. Win32::Internet - Access to WININET.DLL functions
  1384.  
  1385. =head1 INTRODUCTION
  1386.  
  1387. This extension to Perl implements the Win32 Internet APIs (found in
  1388. F<WININET.DLL>). They give a complete support for HTTP, FTP and GOPHER
  1389. connections.
  1390.  
  1391. See the L<"Version History"> and the L<"Functions Table"> for a list
  1392. of the currently supported features. You should also get a copy of the
  1393. L<"Microsoft Win32 Internet Functions"> documentation.
  1394.  
  1395. =head1 REFERENCE
  1396.  
  1397. To use this module, first add the following line at the beginning of
  1398. your script:
  1399.  
  1400.     use Win32::Internet;
  1401.  
  1402. Then you have to open an Internet connection with this command:
  1403.  
  1404.     $Connection = new Win32::Internet();
  1405.  
  1406. This is required to use any of the function of this module.  It will
  1407. create an Internet object in Perl on which you can act upon with the
  1408. L<"General Internet Functions"> explained later.
  1409.  
  1410. The objects available are:
  1411.  
  1412. =over
  1413.  
  1414. =item *
  1415.  
  1416. Internet connections (the main object, see C<new>)
  1417.  
  1418. =item *
  1419.  
  1420. URLs (see C<OpenURL>)
  1421.  
  1422. =item *
  1423.  
  1424. FTP sessions (see C<FTP>)
  1425.  
  1426. =item *
  1427.  
  1428. HTTP sessions (see C<HTTP>)
  1429.  
  1430. =item *
  1431.  
  1432. HTTP requests (see C<OpenRequest>)
  1433.  
  1434. =back
  1435.  
  1436. As in the good Perl tradition, there are in this extension different
  1437. ways to do the same thing; there are, in fact, different levels of
  1438. implementation of the Win32 Internet Functions.  Some routines use
  1439. several Win32 API functions to perform a complex task in a single
  1440. call; they are simpler to use, but of course less powerful.
  1441.  
  1442. There are then other functions that implement nothing more and nothing
  1443. less than the corresponding API function, so you can use all of their
  1444. power, but with some additional programming steps.
  1445.  
  1446. To make an example, there is a function called C<FetchURL> that you
  1447. can use to fetch the content of any HTTP, FTP or GOPHER URL with this
  1448. simple commands:
  1449.  
  1450.     $INET = new Win32::Internet();
  1451.     $file = $INET->FetchURL("http://www.yahoo.com");
  1452.  
  1453. You can have the same result (and this is actually what is done by
  1454. C<FetchURL>) this way:
  1455.  
  1456.     $INET = new Win32::Internet();
  1457.     $URL = $INET->OpenURL("http://www.yahoo.com");
  1458.     $file = $URL->ReadFile();
  1459.     $URL->Close();
  1460.  
  1461. Or, you can open a complete HTTP session:
  1462.  
  1463.     $INET = new Win32::Internet();
  1464.     $HTTP = $INET->HTTP("www.yahoo.com", "anonymous", "dada@divinf.it");
  1465.     ($statuscode, $headers, $file) = $HTTP->Request("/");
  1466.     $HTTP->Close();
  1467.  
  1468. Finally, you can choose to manage even the HTTP request:
  1469.  
  1470.     $INET = new Win32::Internet();
  1471.     $HTTP = $INET->HTTP("www.yahoo.com", "anonymous", "dada@divinf.it");
  1472.     $HTTP->OpenRequest($REQ, "/");
  1473.     $REQ->AddHeader("If-Modified-Since: Saturday, 16-Nov-96 15:58:50 GMT");
  1474.     $REQ->SendRequest();
  1475.     $statuscode = $REQ->QueryInfo("",HTTP_QUERY_STATUS_CODE);
  1476.     $lastmodified = $REQ->QueryInfo("Last-Modified");
  1477.     $file = $REQ->ReadEntireFile();
  1478.     $REQ->Close();
  1479.     $HTTP->Close();
  1480.  
  1481. To open and control a complete FTP session, type:
  1482.  
  1483.     $Connection->FTP($Session, "ftp://ftp.activeware.com", "anonymous", "dada\@divinf.it");
  1484.  
  1485. This will create an FTP object in Perl to which you can apply the L<"FTP
  1486. functions"> provided by the package:
  1487.  
  1488.     $Session->Cd("/ntperl/perl5.001m/CurrentBuild");
  1489.     $Session->Ascii();
  1490.     $Session->Get("110-i86.zip");
  1491.     $Session->Close();
  1492.  
  1493. For a more complete example, see the TEST.PL file that comes with the
  1494. package.
  1495.  
  1496. =head2 General Internet Functions
  1497.  
  1498. B<General Note>
  1499.  
  1500. All methods assume that you have the line:
  1501.  
  1502.     use Win32::Internet;
  1503.  
  1504. somewhere before the method calls, and that you have an Internet
  1505. object called $INET which was created using this call:
  1506.  
  1507.     $INET = new Win32::Internet();
  1508.  
  1509. See C<new> for more information.
  1510.  
  1511. B<Methods>
  1512.  
  1513. =over
  1514.  
  1515. =item CanonicalizeURL URL, [flags]
  1516.  
  1517. Converts a URL to a canonical format, which includes converting unsafe
  1518. characters to escape sequences.  Returns the canonicalized URL or
  1519. C<undef> on errors.  For the possible values of I<flags>, refer to the
  1520. L<"Microsoft Win32 Internet Functions"> document.  See also
  1521. C<CombineURL> and C<OpenURL>.
  1522.  
  1523. Example:
  1524.  
  1525.     $cURL = $INET->CanonicalizeURL($URL);
  1526.     $URL = $INET->CanonicalizeURL($cURL, ICU_DECODE);
  1527.  
  1528. =item Close
  1529.  
  1530. =item Close object
  1531.  
  1532. Closes an Internet connection.  This can be applied to any
  1533. Win32::Internet object (Internet connections, URLs, FTP sessions,
  1534. etc.).  Note that it is not "strictly" required to close the
  1535. connections you create, since the Win32::Internet objects are
  1536. automatically closed when the program ends (or when you elsehow
  1537. destroy such an object).
  1538.  
  1539. Example:
  1540.  
  1541.     $INET->Close();
  1542.     $FTP->Close();
  1543.     $INET->Close($FTP); # same as above...
  1544.  
  1545. =item CombineURL baseURL, relativeURL, [flags]
  1546.  
  1547. Combines a base and relative URL into a single URL.  Returns the
  1548. (canonicalized) combined URL or C<undef> on errors.  For the possible
  1549. values of I<flags>, refer to the L<"Microsoft Win32 Internet
  1550. Functions"> document.  See also C<CombineURL> and C<OpenURL>.
  1551.  
  1552. Example:
  1553.  
  1554.     $URL = $INET->CombineURL("http://www.divinf.it/dada/perl/internet", "..");
  1555.  
  1556. =item ConnectBackoff [value]
  1557.  
  1558. Reads or sets the delay value, in milliseconds, to wait between
  1559. connection retries.  If no I<value> parameter is specified, the
  1560. current value is returned; otherwise, the delay between retries is set
  1561. to I<value>.  See also C<ConnectTimeout>, C<ConnectRetries>,
  1562. C<QueryOption> and C<SetOption>.
  1563.  
  1564. Example:
  1565.  
  1566.     $HTTP->ConnectBackoff(2000);
  1567.     $backoff = $HTTP->ConnectBackoff();
  1568.  
  1569. =item ConnectRetries [value]
  1570.  
  1571. Reads or sets the number of times a connection is retried before
  1572. considering it failed.  If no I<value> parameter is specified, the
  1573. current value is returned; otherwise, the number of retries is set to
  1574. I<value>.  The default value for C<ConnectRetries> is 5.  See also
  1575. C<ConnectBackoff>, C<ConnectTimeout>, C<QueryOption> and C<SetOption>.
  1576.  
  1577. Example:
  1578.  
  1579.     $HTTP->ConnectRetries(20);
  1580.     $retries = $HTTP->ConnectRetries();
  1581.  
  1582. =item ConnectTimeout [value]
  1583.  
  1584. Reads or sets the timeout value (in milliseconds) before a connection
  1585. is considered failed.  If no I<value> parameter is specified, the
  1586. current value is returned; otherwise, the timeout is set to I<value>.
  1587. The default value for C<ConnectTimeout> is infinite.  See also
  1588. C<ConnectBackoff>, C<ConnectRetries>, C<QueryOption> and C<SetOption>.
  1589.  
  1590. Example:
  1591.  
  1592.     $HTTP->ConnectTimeout(10000);
  1593.     $timeout = $HTTP->ConnectTimeout();
  1594.  
  1595. =item ControlReceiveTimeout [value]
  1596.  
  1597. Reads or sets the timeout value (in milliseconds) to use for non-data
  1598. (control) receive requests before they are canceled.  Currently, this
  1599. value has meaning only for C<FTP> sessions.  If no I<value> parameter
  1600. is specified, the current value is returned; otherwise, the timeout is
  1601. set to I<value>.  The default value for C<ControlReceiveTimeout> is
  1602. infinite.  See also C<ControlSendTimeout>, C<QueryOption> and
  1603. C<SetOption>.
  1604.  
  1605. Example:
  1606.  
  1607.     $HTTP->ControlReceiveTimeout(10000);
  1608.     $timeout = $HTTP->ControlReceiveTimeout();
  1609.  
  1610. =item ControlSendTimeout [value]
  1611.  
  1612. Reads or sets the timeout value (in milliseconds) to use for non-data
  1613. (control) send requests before they are canceled.  Currently, this
  1614. value has meaning only for C<FTP> sessions.  If no I<value> parameter
  1615. is specified, the current value is returned; otherwise, the timeout is
  1616. set to I<value>.  The default value for C<ControlSendTimeout> is
  1617. infinite.  See also C<ControlReceiveTimeout>, C<QueryOption> and
  1618. C<SetOption>.
  1619.  
  1620. Example:
  1621.  
  1622.     $HTTP->ControlSendTimeout(10000);
  1623.     $timeout = $HTTP->ControlSendTimeout();
  1624.  
  1625. =item CrackURL URL, [flags]
  1626.  
  1627. Splits an URL into its component parts and returns them in an array.
  1628. Returns C<undef> on errors, otherwise the array will contain the
  1629. following values: I<scheme, host, port, username, password, path,
  1630. extrainfo>.
  1631.  
  1632. For example, the URL "http://www.divinf.it/index.html#top" can be
  1633. splitted in:
  1634.  
  1635.     http, www.divinf.it, 80, anonymous, dada@divinf.it, /index.html, #top
  1636.  
  1637. If you don't specify a I<flags> parameter, ICU_ESCAPE will be used by
  1638. default; for the possible values of I<flags> refer to the L<"Microsoft
  1639. Win32 Internet Functions"> documentation.  See also C<CreateURL>.
  1640.  
  1641. Example:
  1642.  
  1643.     @parts=$INET->CrackURL("http://www.activeware.com");
  1644.     ($scheme, $host, $port, $user, $pass, $path, $extra) =
  1645.          $INET->CrackURL("http://www.divinf.it:80/perl-win32/index.sht#feedback");
  1646.  
  1647. =item CreateURL scheme, hostname, port, username, password, path, extrainfo, [flags]
  1648.  
  1649. =item CreateURL hashref, [flags]
  1650.  
  1651. Creates a URL from its component parts.  Returns C<undef> on errors,
  1652. otherwise the created URL.
  1653.  
  1654. If you pass I<hashref> (a reference to an hash array), the following
  1655. values are taken from the array:
  1656.  
  1657.     %hash=(
  1658.       "scheme"    => "scheme",
  1659.       "hostname"  => "hostname",
  1660.       "port"      => port,
  1661.       "username"  => "username",
  1662.       "password"  => "password",
  1663.       "path"      => "path",
  1664.       "extrainfo" => "extrainfo",
  1665.     );
  1666.  
  1667. If you don't specify a I<flags> parameter, ICU_ESCAPE will be used by
  1668. default; for the other possible values of I<flags> refer to the
  1669. L<"Microsoft Win32 Internet Functions"> documentation.  See also
  1670. C<CrackURL>.
  1671.  
  1672. Example:
  1673.  
  1674.     $URL=$I->CreateURL("http", "www.divinf.it", 80, "", "", "/perl-win32/index.sht", "#feedback");
  1675.     $URL=$I->CreateURL(\%params);
  1676.  
  1677. =item DataReceiveTimeout [value]
  1678.  
  1679. Reads or sets the timeout value (in milliseconds) to use for data
  1680. receive requests before they are canceled.  If no I<value> parameter
  1681. is specified, the current value is returned; otherwise, the timeout is
  1682. set to I<value>.  The default value for DataReceiveTimeout is
  1683. infinite.  See also C<DataSendTimeout>, C<QueryOption> and
  1684. C<SetOption>.
  1685.  
  1686. Example:
  1687.  
  1688.     $HTTP->DataReceiveTimeout(10000);
  1689.     $timeout = $HTTP->DataReceiveTimeout();
  1690.  
  1691. =item DataSendTimeout [value]
  1692.  
  1693. Reads or sets the timeout value (in milliseconds) to use for data send
  1694. requests before they are canceled.  If no I<value> parameter is
  1695. specified, the current value is returned; otherwise, the timeout is
  1696. set to I<value>.  The default value for DataSendTimeout is infinite.
  1697. See also C<DataReceiveTimeout>, C<QueryOption> and C<SetOption>.
  1698.  
  1699. Example:
  1700.  
  1701.     $HTTP->DataSendTimeout(10000);
  1702.     $timeout = $HTTP->DataSendTimeout();
  1703.  
  1704. =item Error
  1705.  
  1706. Returns the last recorded error in the form of an array or string
  1707. (depending upon the context) containing the error number and an error
  1708. description.  Can be applied on any Win32::Internet object (FTP
  1709. sessions, etc.).  There are 3 types of error you can encounter; they
  1710. are recognizable by the error number returned:
  1711.  
  1712. =over
  1713.  
  1714. =item * -1
  1715.  
  1716. A "trivial" error has occurred in the package.  For example, you tried
  1717. to use a method on the wrong type of object.
  1718.  
  1719. =item * 1 .. 11999
  1720.  
  1721. A generic error has occurred and the Win32::GetLastError error message
  1722. is returned.
  1723.  
  1724. =item * 12000 and higher
  1725.  
  1726. An Internet error has occurred; the extended Win32 Internet API error
  1727. message is returned.
  1728.  
  1729. =back
  1730.  
  1731. See also C<GetResponse>.
  1732.  
  1733. Example:
  1734.  
  1735.     die $INET->Error(), qq(\n);
  1736.     ($ErrNum, $ErrText) = $INET->Error();
  1737.  
  1738. =item FetchURL URL
  1739.  
  1740. Fetch the content of an HTTP, FTP or GOPHER URL.  Returns the content
  1741. of the file read (or C<undef> if there was an error and nothing was
  1742. read).  See also C<OpenURL> and C<ReadFile>.
  1743.  
  1744. Example:
  1745.  
  1746.     $file = $INET->FetchURL("http://www.yahoo.com/");
  1747.     $file = $INET->FetchURL("ftp://www.activeware.com/contrib/internet.zip");
  1748.  
  1749. =item FTP ftpobject, server, username, password, [port, pasv, context]
  1750.  
  1751. =item FTP ftpobject, hashref
  1752.  
  1753. Opens an FTP connection to server logging in with the given
  1754. I<username> and I<password>.
  1755.  
  1756. The parameters and their values are:
  1757.  
  1758. =over
  1759.  
  1760. =item * server
  1761.  
  1762. The server to connect to.  Default: I<none>.
  1763.  
  1764. =item * username
  1765.  
  1766. The username used to login to the server.  Default: anonymous.
  1767.  
  1768. =item * password
  1769.  
  1770. The password used to login to the server.  Default: I<none>.
  1771.  
  1772. =item * port
  1773.  
  1774. The port of the FTP service on the server.  Default: 21.
  1775.  
  1776. =item * pasv
  1777.  
  1778. If it is a value other than 0, use passive transfer mode.  Default is
  1779. taken from the parent Internet connection object; you can set this
  1780. value with the C<Pasv> method.
  1781.  
  1782. =item * context
  1783.  
  1784. A number to identify this operation if it is asynchronous.  See
  1785. C<SetStatusCallback> and C<GetStatusCallback> for more info on
  1786. asynchronous operations.  Default: I<none>.
  1787.  
  1788. =back
  1789.  
  1790. If you pass I<hashref> (a reference to an hash array), the following
  1791. values are taken from the array:
  1792.  
  1793.     %hash=(
  1794.       "server"   => "server",
  1795.       "username" => "username",
  1796.       "password" => "password",
  1797.       "port"     => port,
  1798.       "pasv"     => pasv,
  1799.       "context"  => context,
  1800.     );
  1801.  
  1802. This method returns C<undef> if the connection failed, a number
  1803. otherwise.  You can then call any of the L<"FTP functions"> as methods
  1804. of the newly created I<ftpobject>.
  1805.  
  1806. Example:
  1807.  
  1808.     $result = $INET->FTP($FTP, "ftp.activeware.com", "anonymous", "dada\@divinf.it");
  1809.     # and then for example...
  1810.     $FTP->Cd("/ntperl/perl5.001m/CurrentBuild");
  1811.  
  1812.     $params{"server"} = "ftp.activeware.com";
  1813.     $params{"password"} = "dada\@divinf.it";
  1814.     $params{"pasv"} = 0;
  1815.     $result = $INET->FTP($FTP,\%params);
  1816.  
  1817. =item GetResponse
  1818.  
  1819. Returns the text sent by a remote server in response to the last
  1820. function executed.  It applies on any Win32::Internet object,
  1821. particularly of course on L<FTP sessions|"FTP functions">.  See also
  1822. the C<Error> function.
  1823.  
  1824. Example:
  1825.  
  1826.     print $INET->GetResponse();
  1827.     $INET->FTP($FTP, "ftp.activeware.com", "anonymous", "dada\@divinf.it");
  1828.     print $FTP->GetResponse();
  1829.  
  1830. =item GetStatusCallback context
  1831.  
  1832. Returns information about the progress of the asynchronous operation
  1833. identified by I<context>; those informations consist of two values: a
  1834. status code (one of the INTERNET_STATUS_* L<"Constants">) and an
  1835. additional value depending on the status code; for example, if the
  1836. status code returned is INTERNET_STATUS_HANDLE_CREATED, the second
  1837. value will hold the handle just created.  For more informations on
  1838. those values, please refer to the L<"Microsoft Win32 Internet
  1839. Functions"> documentation.  See also C<SetStatusCallback>.
  1840.  
  1841. Example:
  1842.  
  1843.     ($status, $info) = $INET->GetStatusCallback(1);
  1844.  
  1845. =item HTTP httpobject, server, username, password, [port, flags, context]
  1846.  
  1847. =item HTTP httpobject, hashref
  1848.  
  1849. Opens an HTTP connection to I<server> logging in with the given
  1850. I<username> and I<password>.
  1851.  
  1852. The parameters and their values are:
  1853.  
  1854. =over
  1855.  
  1856. =item * server
  1857.  
  1858. The server to connect to.  Default: I<none>.
  1859.  
  1860. =item * username
  1861.  
  1862. The username used to login to the server.  Default: anonymous.
  1863.  
  1864. =item * password
  1865.  
  1866. The password used to login to the server.  Default: I<none>.
  1867.  
  1868. =item * port
  1869.  
  1870. The port of the HTTP service on the server.  Default: 80.
  1871.  
  1872. =item * flags
  1873.  
  1874. Additional flags affecting the behavior of the function.  Default:
  1875. I<none>.
  1876.  
  1877. =item * context
  1878.  
  1879. A number to identify this operation if it is asynchronous.  See
  1880. C<SetStatusCallback> and C<GetStatusCallback> for more info on
  1881. asynchronous operations.  Default: I<none>.
  1882.  
  1883. =back
  1884.  
  1885. Refer to the L<"Microsoft Win32 Internet Functions"> documentation for
  1886. more details on those parameters.
  1887.  
  1888. If you pass I<hashref> (a reference to an hash array), the following
  1889. values are taken from the array:
  1890.  
  1891.     %hash=(
  1892.       "server"   => "server",
  1893.       "username" => "username",
  1894.       "password" => "password",
  1895.       "port"     => port,
  1896.       "flags"    => flags,
  1897.       "context"  => context,
  1898.     );
  1899.  
  1900. This method returns C<undef> if the connection failed, a number
  1901. otherwise.  You can then call any of the L<"HTTP functions"> as
  1902. methods of the newly created I<httpobject>.
  1903.  
  1904. Example:
  1905.  
  1906.     $result = $INET->HTTP($HTTP,"www.activeware.com","anonymous","dada\@divinf.it");
  1907.     # and then for example...
  1908.     ($statuscode, $headers, $file) = $HTTP->Request("/gifs/camel.gif");
  1909.  
  1910.     $params{"server"} = "www.activeware.com";
  1911.     $params{"password"} = "dada\@divinf.it";
  1912.     $params{"flags"} = INTERNET_FLAG_RELOAD;
  1913.     $result = $INET->HTTP($HTTP,\%params);
  1914.  
  1915. =item new Win32::Internet [useragent, opentype, proxy, proxybypass, flags]
  1916.  
  1917. =item new Win32::Internet [hashref]
  1918.  
  1919. Creates a new Internet object and initializes the use of the Internet
  1920. functions; this is required before any of the functions of this
  1921. package can be used.  Returns C<undef> if the connection fails, a number
  1922. otherwise.  The parameters and their values are:
  1923.  
  1924. =over
  1925.  
  1926. =item * useragent
  1927.  
  1928. The user agent passed to HTTP requests.  See C<OpenRequest>.  Default:
  1929. Perl-Win32::Internet/I<version>.
  1930.  
  1931. =item * opentype
  1932.  
  1933. How to access to the Internet (eg. directly or using a proxy).
  1934. Default: INTERNET_OPEN_TYPE_DIRECT.
  1935.  
  1936. =item * proxy
  1937.  
  1938. Name of the proxy server (or servers) to use.  Default: I<none>.
  1939.  
  1940. =item * proxybypass
  1941.  
  1942. Optional list of host names or IP addresses, or both, that are known
  1943. locally.  Default: I<none>.
  1944.  
  1945. =item * flags
  1946.  
  1947. Additional flags affecting the behavior of the function.  Default:
  1948. I<none>.
  1949.  
  1950. =back
  1951.  
  1952. Refer to the L<"Microsoft Win32 Internet Functions"> documentation for
  1953. more details on those parameters.  If you pass I<hashref> (a reference to
  1954. an hash array), the following values are taken from the array:
  1955.  
  1956.     %hash=(
  1957.       "useragent"   => "useragent",
  1958.       "opentype"    => "opentype",
  1959.       "proxy"       => "proxy",
  1960.       "proxybypass" => "proxybypass",
  1961.       "flags"       => flags,
  1962.     );
  1963.  
  1964. Example:
  1965.  
  1966.     $INET = new Win32::Internet();
  1967.     die qq(Cannot connect to Internet...\n) if ! $INET;
  1968.  
  1969.     $INET = new Win32::Internet("Mozilla/3.0", INTERNET_OPEN_TYPE_PROXY, "www.microsoft.com", "");
  1970.  
  1971.     $params{"flags"} = INTERNET_FLAG_ASYNC;
  1972.     $INET = new Win32::Internet(\%params);
  1973.  
  1974. =item OpenURL urlobject, URL
  1975.  
  1976. Opens a connection to an HTTP, FTP or GOPHER Uniform Resource Location
  1977. (URL).  Returns C<undef> on errors or a number if the connection was
  1978. succesful.  You can then retrieve the URL content by applying the
  1979. methods C<QueryDataAvailable> and C<ReadFile> on the newly created
  1980. I<urlobject>.  See also C<FetchURL>.
  1981.  
  1982. Example:
  1983.  
  1984.     $INET->OpenURL($URL, "http://www.yahoo.com/");
  1985.     $bytes = $URL->QueryDataAvailable();
  1986.     $file = $URL->ReadEntireFile();
  1987.     $URL->Close();
  1988.  
  1989. =item Password [password]
  1990.  
  1991. Reads or sets the password used for an C<FTP> or C<HTTP> connection.
  1992. If no I<password> parameter is specified, the current value is
  1993. returned; otherwise, the password is set to I<password>.  See also
  1994. C<Username>, C<QueryOption> and C<SetOption>.
  1995.  
  1996. Example:
  1997.  
  1998.     $HTTP->Password("splurfgnagbxam");
  1999.     $password = $HTTP->Password();
  2000.  
  2001. =item QueryDataAvailable
  2002.  
  2003. Returns the number of bytes of data that are available to be read
  2004. immediately by a subsequent call to C<ReadFile> (or C<undef> on
  2005. errors).  Can be applied to URL or HTTP request objects.  See
  2006. C<OpenURL> or C<OpenRequest>.
  2007.  
  2008. Example:
  2009.  
  2010.     $INET->OpenURL($URL, "http://www.yahoo.com/");
  2011.     $bytes = $URL->QueryDataAvailable();
  2012.  
  2013. =item QueryOption option
  2014.  
  2015. Queries an Internet option.  For the possible values of I<option>,
  2016. refer to the L<"Microsoft Win32 Internet Functions"> document.  See
  2017. also C<SetOption>.
  2018.  
  2019. Example:
  2020.  
  2021.     $value = $INET->QueryOption(INTERNET_OPTION_CONNECT_TIMEOUT);
  2022.     $value = $HTTP->QueryOption(INTERNET_OPTION_USERNAME);
  2023.  
  2024. =item ReadEntireFile
  2025.  
  2026. Reads all the data available from an opened URL or HTTP request
  2027. object.  Returns what have been read or C<undef> on errors.  See also
  2028. C<OpenURL>, C<OpenRequest> and C<ReadFile>.
  2029.  
  2030. Example:
  2031.  
  2032.     $INET->OpenURL($URL, "http://www.yahoo.com/");
  2033.     $file = $URL->ReadEntireFile();
  2034.  
  2035. =item ReadFile bytes
  2036.  
  2037. Reads I<bytes> bytes of data from an opened URL or HTTP request
  2038. object.  Returns what have been read or C<undef> on errors.  See also
  2039. C<OpenURL>, C<OpenRequest>, C<QueryDataAvailable> and
  2040. C<ReadEntireFile>.
  2041.  
  2042. B<Note:> be careful to keep I<bytes> to an acceptable value (eg.  don't
  2043. tell him to swallow megabytes at once...).  C<ReadEntireFile> in fact
  2044. uses C<QueryDataAvailable> and C<ReadFile> in a loop to read no more
  2045. than 16k at a time.
  2046.  
  2047. Example:
  2048.  
  2049.     $INET->OpenURL($URL, "http://www.yahoo.com/");
  2050.     $chunk = $URL->ReadFile(16000);
  2051.  
  2052. =item SetOption option, value
  2053.  
  2054. Sets an Internet option.  For the possible values of I<option>, refer to
  2055. the L<"Microsoft Win32 Internet Functions"> document.  See also
  2056. C<QueryOption>.
  2057.  
  2058. Example:
  2059.  
  2060.     $INET->SetOption(INTERNET_OPTION_CONNECT_TIMEOUT,10000);
  2061.     $HTTP->SetOption(INTERNET_OPTION_USERNAME,"dada");
  2062.  
  2063. =item SetStatusCallback
  2064.  
  2065. Initializes the callback routine used to return data about the
  2066. progress of an asynchronous operation.
  2067.  
  2068. Example:
  2069.  
  2070.     $INET->SetStatusCallback();
  2071.  
  2072. This is one of the step required to perform asynchronous operations;
  2073. the complete procedure is:
  2074.  
  2075.     # use the INTERNET_FLAG_ASYNC when initializing
  2076.     $params{'flags'}=INTERNET_FLAG_ASYNC;
  2077.     $INET = new Win32::Internet(\%params);
  2078.  
  2079.     # initialize the callback routine
  2080.     $INET->SetStatusCallback();
  2081.  
  2082.     # specify the context parameter (the last 1 in this case)
  2083.     $INET->HTTP($HTTP, "www.yahoo.com", "anonymous", "dada\@divinf.it", 80, 0, 1);
  2084.  
  2085. At this point, control returns immediately to Perl and $INET->Error()
  2086. will return 997, which means an asynchronous I/O operation is
  2087. pending.  Now, you can call
  2088.  
  2089.     $HTTP->GetStatusCallback(1);
  2090.  
  2091. in a loop to verify what's happening; see also C<GetStatusCallback>.
  2092.  
  2093. =item TimeConvert time
  2094.  
  2095. =item TimeConvert seconds, minute, hours, day, month, year,
  2096.                   day_of_week, RFC
  2097.  
  2098. The first form takes a HTTP date/time string and returns the date/time
  2099. converted in the following array: I<seconds, minute, hours, day,
  2100. month, year, day_of_week>.
  2101.  
  2102. The second form does the opposite (or at least it should, because
  2103. actually seems to be malfunctioning): it takes the values and returns
  2104. an HTTP date/time string, in the RFC format specified by the I<RFC>
  2105. parameter (OK, I didn't find yet any accepted value in the range
  2106. 0..2000, let me know if you have more luck with it).
  2107.  
  2108. Example:
  2109.  
  2110.     ($sec, $min, $hour, $day, $mday, $year, $wday) =
  2111.        $INET->TimeConvert("Sun, 26 Jan 1997 20:01:52 GMT");
  2112.  
  2113.     # the opposite DOESN'T WORK! which value should $RFC have???
  2114.     $time = $INET->TimeConvert(52, 1, 20, 26, 1, 1997, 0, $RFC);
  2115.  
  2116. =item UserAgent [name]
  2117.  
  2118. Reads or sets the user agent used for HTTP requests.  If no I<name>
  2119. parameter is specified, the current value is returned; otherwise, the
  2120. user agent is set to I<name>.  See also C<QueryOption> and
  2121. C<SetOption>.
  2122.  
  2123. Example:
  2124.  
  2125.     $INET->UserAgent("Mozilla/3.0");
  2126.     $useragent = $INET->UserAgent();
  2127.  
  2128. =item Username [name]
  2129.  
  2130. Reads or sets the username used for an C<FTP> or C<HTTP> connection.
  2131. If no I<name> parameter is specified, the current value is returned;
  2132. otherwise, the username is set to I<name>.  See also C<Password>,
  2133. C<QueryOption> and SetOption.
  2134.  
  2135. Example:
  2136.  
  2137.     $HTTP->Username("dada");
  2138.     $username = $HTTP->Username();
  2139.  
  2140. =item Version
  2141.  
  2142. Returns the version numbers for the Win32::Internet package and the
  2143. WININET.DLL version, as an array or string, depending on the context.
  2144. The string returned will contain "package_version/DLL_version", while
  2145. the array will contain: "package_version", "DLL_version".
  2146.  
  2147. Example:
  2148.  
  2149.     $version = $INET->Version(); # should return "0.06/4.70.1215"
  2150.     @version = $INET->Version(); # should return ("0.06", "4.70.1215")
  2151.  
  2152. =back
  2153.  
  2154.  
  2155. =head2 FTP Functions
  2156.  
  2157. B<General Note>
  2158.  
  2159. All methods assume that you have the following lines:
  2160.  
  2161.     use Win32::Internet;
  2162.     $INET = new Win32::Internet();
  2163.     $INET->FTP($FTP, "hostname", "username", "password");
  2164.  
  2165. somewhere before the method calls; in other words, we assume that you
  2166. have an Internet object called $INET and an open FTP session called
  2167. $FTP.
  2168.  
  2169. See C<new> and C<FTP> for more information.
  2170.  
  2171.  
  2172. B<Methods>
  2173.  
  2174. =over
  2175.  
  2176. =item Ascii
  2177.  
  2178. =item Asc
  2179.  
  2180. Sets the ASCII transfer mode for this FTP session.  It will be applied
  2181. to the subsequent C<Get> functions.  See also the C<Binary> and
  2182. C<Mode> function.
  2183.  
  2184. Example:
  2185.  
  2186.     $FTP->Ascii();
  2187.  
  2188. =item Binary
  2189.  
  2190. =item Bin
  2191.  
  2192. Sets the binary transfer mode for this FTP session.  It will be
  2193. applied to the subsequent C<Get> functions.  See also the C<Ascii> and
  2194. C<Mode> function.
  2195.  
  2196. Example:
  2197.  
  2198.     $FTP->Binary();
  2199.  
  2200. =item Cd path
  2201.  
  2202. =item Cwd path
  2203.  
  2204. =item Chdir path
  2205.  
  2206. Changes the current directory on the FTP remote host.  Returns I<path>
  2207. or C<undef> on error.
  2208.  
  2209. Example:
  2210.  
  2211.     $FTP->Cd("/pub");
  2212.  
  2213. =item Delete file
  2214.  
  2215. =item Del file
  2216.  
  2217. Deletes a file on the FTP remote host.  Returns C<undef> on error.
  2218.  
  2219. Example:
  2220.  
  2221.     $FTP->Delete("110-i86.zip");
  2222.  
  2223. =item Get remote, [local, overwrite, flags, context]
  2224.  
  2225. Gets the I<remote> FTP file and saves it locally in I<local>.  If
  2226. I<local> is not specified, it will be the same name as I<remote>.
  2227. Returns C<undef> on error.  The parameters and their values are:
  2228.  
  2229. =over
  2230.  
  2231. =item * remote
  2232.  
  2233. The name of the remote file on the FTP server.  Default: I<none>.
  2234.  
  2235. =item * local
  2236.  
  2237. The name of the local file to create.  Default: remote.
  2238.  
  2239. =item * overwrite
  2240.  
  2241. If 0, overwrites I<local> if it exists; with any other value, the
  2242. function fails if the I<local> file already exists.  Default: 0.
  2243.  
  2244. =item * flags
  2245.  
  2246. Additional flags affecting the behavior of the function.  Default:
  2247. I<none>.
  2248.  
  2249. =item * context
  2250.  
  2251. A number to identify this operation if it is asynchronous.  See
  2252. C<SetStatusCallback> and C<GetStatusCallback> for more info on
  2253. asynchronous operations.  Default: I<none>.
  2254.  
  2255. =back
  2256.  
  2257. Refer to the L<"Microsoft Win32 Internet Functions"> documentation for
  2258. more details on those parameters.
  2259.  
  2260. Example:
  2261.  
  2262.     $FTP->Get("110-i86.zip");
  2263.     $FTP->Get("/pub/perl/languages/CPAN/00index.html", "CPAN_index.html");
  2264.  
  2265. =item List [pattern, listmode]
  2266.  
  2267. =item Ls [pattern, listmode]
  2268.  
  2269. =item Dir [pattern, listmode]
  2270.  
  2271. Returns a list containing the files found in this directory,
  2272. eventually matching the given I<pattern> (which, if omitted, is
  2273. considered "*.*").  The content of the returned list depends on the
  2274. I<listmode> parameter, which can have the following values:
  2275.  
  2276. =over
  2277.  
  2278. =item * listmode=1 (or omitted)
  2279.  
  2280. the list contains the names of the files found.  Example:
  2281.  
  2282.     @files = $FTP->List();
  2283.     @textfiles = $FTP->List("*.txt");
  2284.     foreach $file (@textfiles) {
  2285.       print "Name: ", $file, "\n";
  2286.     }
  2287.  
  2288. =item * listmode=2
  2289.  
  2290. the list contains 7 values for each file, which respectively are:
  2291.  
  2292. =over
  2293.  
  2294. =item * the file name
  2295.  
  2296. =item * the DOS short file name, aka 8.3
  2297.  
  2298. =item * the size
  2299.  
  2300. =item * the attributes
  2301.  
  2302. =item * the creation time
  2303.  
  2304. =item * the last access time
  2305.  
  2306. =item * the last modified time
  2307.  
  2308. =back
  2309.  
  2310. Example:
  2311.  
  2312.     @files = $FTP->List("*.*", 2);
  2313.     for($i=0; $i<=$#files; $i+=7) {
  2314.       print "Name: ", @files[$i], "\n";
  2315.       print "Size: ", @files[$i+2], "\n";
  2316.       print "Attr: ", @files[$i+3], "\n";
  2317.     }
  2318.  
  2319. =item * listmode=3
  2320.  
  2321. the list contains a reference to an hash array for each found file;
  2322. each hash contains:
  2323.  
  2324. =over
  2325.  
  2326. =item * name => the file name
  2327.  
  2328. =item * altname => the DOS short file name, aka 8.3
  2329.  
  2330. =item * size => the size
  2331.  
  2332. =item * attr => the attributes
  2333.  
  2334. =item * ctime => the creation time
  2335.  
  2336. =item * atime => the last access time
  2337.  
  2338. =item * mtime => the last modified time
  2339.  
  2340. =back
  2341.  
  2342. Example:
  2343.  
  2344.     @files = $FTP->List("*.*", 3);
  2345.     foreach $file (@files) {
  2346.       print $file->{'name'}, " ", $file->{'size'}, " ", $file->{'attr'}, "\n";
  2347.     }
  2348.  
  2349. B<Note:> all times are reported as strings of the following format:
  2350. I<second, hour, minute, day, month, year>.
  2351.  
  2352. Example:
  2353.  
  2354.     $file->{'mtime'} == "0,10,58,9,12,1996" stands for 09 Dec 1996 at 10:58:00
  2355.  
  2356. =back
  2357.  
  2358. =item Mkdir name
  2359.  
  2360. =item Md name
  2361.  
  2362. Creates a directory on the FTP remote host.  Returns C<undef> on error.
  2363.  
  2364. Example:
  2365.  
  2366.     $FTP->Mkdir("NextBuild");
  2367.  
  2368. =item Mode [mode]
  2369.  
  2370. If called with no arguments, returns the current transfer mode for
  2371. this FTP session ("asc" for ASCII or "bin" for binary).  The I<mode>
  2372. argument can be "asc" or "bin", in which case the appropriate transfer
  2373. mode is selected.  See also the Ascii and Binary functions.  Returns
  2374. C<undef> on errors.
  2375.  
  2376. Example:
  2377.  
  2378.     print "Current mode is: ", $FTP->Mode();
  2379.     $FTP->Mode("asc"); # ...  same as $FTP->Ascii();
  2380.  
  2381. =item Pasv [mode]
  2382.  
  2383. If called with no arguments, returns 1 if the current FTP session has
  2384. passive transfer mode enabled, 0 if not.
  2385.  
  2386. You can call it with a I<mode> parameter (0/1) only as a method of a
  2387. Internet object (see C<new>), in which case it will set the default
  2388. value for the next C<FTP> objects you create (read: set it before,
  2389. because you can't change this value once you opened the FTP session).
  2390.  
  2391. Example:
  2392.  
  2393.     print "Pasv is: ", $FTP->Pasv();
  2394.  
  2395.     $INET->Pasv(1);
  2396.     $INET->FTP($FTP,"ftp.activeware.com", "anonymous", "dada\@divinf.it");
  2397.     $FTP->Pasv(0); # this will be ignored...
  2398.  
  2399. =item Put local, [remote, context]
  2400.  
  2401. Upload the I<local> file to the FTP server saving it under the name
  2402. I<remote>, which if if omitted is the same name as I<local>.  Returns
  2403. C<undef> on error.
  2404.  
  2405. I<context> is a number to identify this operation if it is asynchronous.
  2406. See C<SetStatusCallback> and C<GetStatusCallback> for more info on
  2407. asynchronous operations.
  2408.  
  2409. Example:
  2410.  
  2411.     $FTP->Put("internet.zip");
  2412.     $FTP->Put("d:/users/dada/temp.zip", "/temp/dada.zip");
  2413.  
  2414. =item Pwd
  2415.  
  2416. Returns the current directory on the FTP server or C<undef> on errors.
  2417.  
  2418. Example:
  2419.  
  2420.     $path = $FTP->Pwd();
  2421.  
  2422. =item Rename oldfile, newfile
  2423.  
  2424. =item Ren oldfile, newfile
  2425.  
  2426. Renames a file on the FTP remote host.  Returns C<undef> on error.
  2427.  
  2428. Example:
  2429.  
  2430.     $FTP->Rename("110-i86.zip", "68i-011.zip");
  2431.  
  2432. =item Rmdir name
  2433.  
  2434. =item Rd name
  2435.  
  2436. Removes a directory on the FTP remote host.  Returns C<undef> on error.
  2437.  
  2438. Example:
  2439.  
  2440.     $FTP->Rmdir("CurrentBuild");
  2441.  
  2442. =back
  2443.  
  2444. =head2 HTTP Functions
  2445.  
  2446. B<General Note>
  2447.  
  2448. All methods assume that you have the following lines:
  2449.  
  2450.     use Win32::Internet;
  2451.     $INET = new Win32::Internet();
  2452.     $INET->HTTP($HTTP, "hostname", "username", "password");
  2453.  
  2454. somewhere before the method calls; in other words, we assume that you
  2455. have an Internet object called $INET and an open HTTP session called
  2456. $HTTP.
  2457.  
  2458. See C<new> and C<HTTP> for more information.
  2459.  
  2460.  
  2461. B<Methods>
  2462.  
  2463. =over
  2464.  
  2465. =item AddHeader header, [flags]
  2466.  
  2467. Adds HTTP request headers to an HTTP request object created with
  2468. C<OpenRequest>.  For the possible values of I<flags> refer to the
  2469. L<"Microsoft Win32 Internet Functions"> document.
  2470.  
  2471. Example:
  2472.  
  2473.     $HTTP->OpenRequest($REQUEST,"/index.html");
  2474.     $REQUEST->AddHeader("If-Modified-Since:  Sunday, 17-Nov-96 11:40:03 GMT");
  2475.     $REQUEST->AddHeader("Accept: text/html\r\n", HTTP_ADDREQ_FLAG_REPLACE);
  2476.  
  2477. =item OpenRequest requestobject, [path, method, version, referer, accept, flags, context]
  2478.  
  2479. =item OpenRequest requestobject, hashref
  2480.  
  2481. Opens an HTTP request.  Returns C<undef> on errors or a number if the
  2482. connection was succesful.  You can then use one of the C<AddHeader>,
  2483. C<SendRequest>, C<QueryInfo>, C<QueryDataAvailable> and C<ReadFile>
  2484. methods on the newly created I<requestobject>.  The parameters and
  2485. their values are:
  2486.  
  2487. =over
  2488.  
  2489. =item * path
  2490.  
  2491. The object to request.  This is generally a file name, an executable
  2492. module, etc.  Default: /
  2493.  
  2494. =item * method
  2495.  
  2496. The method to use; can actually be GET, POST, HEAD or PUT.  Default:
  2497. GET
  2498.  
  2499. =item * version
  2500.  
  2501. The HTTP version.  Default: HTTP/1.0
  2502.  
  2503. =item * referer
  2504.  
  2505. The URL of the document from which the URL in the request was
  2506. obtained.  Default: I<none>
  2507.  
  2508. =item * accept
  2509.  
  2510. The content types accepted.  They must be separated by a "\0" (ASCII
  2511. zero).  Default: text/* image/gif image/jpeg
  2512.  
  2513. =item * flags
  2514.  
  2515. Additional flags affecting the behavior of the function.  Default:
  2516. I<none>
  2517.  
  2518. =item * context
  2519.  
  2520. A number to identify this operation if it is asynchronous.  See
  2521. C<SetStatusCallback> and C<GetStatusCallback> for more info on
  2522. asynchronous operations.  Default: I<none>
  2523.  
  2524. =back
  2525.  
  2526. Refer to the L<"Microsoft Win32 Internet Functions"> documentation for
  2527. more details on those parameters.  If you pass I<hashref> (a reference to
  2528. an hash array), the following values are taken from the array:
  2529.  
  2530.     %hash=(
  2531.       "path"        => "path",
  2532.       "method"      => "method",
  2533.       "version"     => "version",
  2534.       "referer"     => "referer",
  2535.       "accept"      => "accept",
  2536.       "flags"       => flags,
  2537.       "context"     => context,
  2538.     );
  2539.  
  2540. See also C<Request>.
  2541.  
  2542. Example:
  2543.  
  2544.     $HTTP->OpenRequest($REQUEST, "/index.html");
  2545.     $HTTP->OpenRequest($REQUEST, "/index.html", "GET", "HTTP/0.9");
  2546.  
  2547.     $params{"path"} = "/index.html";
  2548.     $params{"flags"} = "
  2549.     $HTTP->OpenRequest($REQUEST, \%params);
  2550.  
  2551. =item QueryInfo header, [flags]
  2552.  
  2553. Queries information about an HTTP request object created with
  2554. C<OpenRequest>.  You can specify an I<header> (for example,
  2555. "Content-type") and/or one or more I<flags>.  If you don't specify
  2556. I<flags>, HTTP_QUERY_CUSTOM will be used by default; this means that
  2557. I<header> should contain a valid HTTP header name.  For the possible
  2558. values of I<flags> refer to the L<"Microsoft Win32 Internet
  2559. Functions"> document.
  2560.  
  2561. Example:
  2562.  
  2563.     $HTTP->OpenRequest($REQUEST,"/index.html");
  2564.     $statuscode = $REQUEST->QueryInfo("", HTTP_QUERY_STATUS_CODE);
  2565.     $headers = $REQUEST->QueryInfo("", HTTP_QUERY_RAW_HEADERS_CRLF); # will get all the headers
  2566.     $length = $REQUEST->QueryInfo("Content-length");
  2567.  
  2568. =item Request [path, method, version, referer, accept, flags]
  2569.  
  2570. =item Request hashref
  2571.  
  2572. Performs an HTTP request and returns an array containing the status
  2573. code, the headers and the content of the file.  It is a one-step
  2574. procedure that makes an C<OpenRequest>, a C<SendRequest>, some
  2575. C<QueryInfo>, C<ReadFile> and finally C<Close>.  For a description of
  2576. the parameters, see C<OpenRequest>.
  2577.  
  2578. Example:
  2579.  
  2580.     ($statuscode, $headers, $file) = $HTTP->Request("/index.html");
  2581.     ($s, $h, $f) = $HTTP->Request("/index.html", "GET", "HTTP/1.0");
  2582.  
  2583. =item SendRequest [postdata]
  2584.  
  2585. Send an HTTP request to the destination server.  I<postdata> are any
  2586. optional data to send immediately after the request header; this is
  2587. generally used for POST or PUT requests.  See also C<OpenRequest>.
  2588.  
  2589. Example:
  2590.  
  2591.     $HTTP->OpenRequest($REQUEST, "/index.html");
  2592.     $REQUEST->SendRequest();
  2593.  
  2594.     # A POST request...
  2595.     $HTTP->OpenRequest($REQUEST, "/cgi-bin/somescript.pl", "POST");
  2596.  
  2597.     #This line is a must -> (thanks Philip :)
  2598.     $REQUEST->AddHeader("Content-Type: application/x-www-form-urlencoded");
  2599.  
  2600.     $REQUEST->SendRequest("key1=value1&key2=value2&key3=value3");
  2601.  
  2602. =back
  2603.  
  2604.  
  2605. =head1 APPENDIX
  2606.  
  2607.  
  2608. =head2 Microsoft Win32 Internet Functions
  2609.  
  2610. Complete documentation for the Microsoft Win32 Internet Functions can
  2611. be found, in both HTML and zipped Word format, at this address:
  2612.  
  2613.     http://www.microsoft.com/intdev/sdk/docs/wininet/
  2614.  
  2615. =head2 Functions Table
  2616.  
  2617. This table reports the correspondence between the functions offered by
  2618. WININET.DLL and their implementation in the Win32::Internet
  2619. extension. Functions showing a "---" are not currently
  2620. implemented. Functions enclosed in parens ( ) aren't implemented
  2621. straightforwardly, but in a higher-level routine, eg. together with
  2622. other functions.
  2623.  
  2624.     WININET.DLL                     Win32::Internet
  2625.  
  2626.     InternetOpen                    new Win32::Internet
  2627.     InternetConnect                 FTP / HTTP
  2628.     InternetCloseHandle             Close
  2629.     InternetQueryOption             QueryOption
  2630.     InternetSetOption               SetOption
  2631.     InternetSetOptionEx             ---
  2632.     InternetSetStatusCallback       SetStatusCallback
  2633.     InternetStatusCallback          GetStatusCallback
  2634.     InternetConfirmZoneCrossing     ---
  2635.     InternetTimeFromSystemTime      TimeConvert
  2636.     InternetTimeToSystemTime        TimeConvert
  2637.     InternetAttemptConnect          ---
  2638.     InternetReadFile                ReadFile
  2639.     InternetSetFilePointer          ---
  2640.     InternetFindNextFile            (List)
  2641.     InternetQueryDataAvailable      QueryDataAvailable
  2642.     InternetGetLastResponseInfo     GetResponse
  2643.     InternetWriteFile               ---
  2644.     InternetCrackUrl                CrackURL
  2645.     InternetCreateUrl               CreateURL
  2646.     InternetCanonicalizeUrl         CanonicalizeURL
  2647.     InternetCombineUrl              CombineURL
  2648.     InternetOpenUrl                 OpenURL
  2649.     FtpFindFirstFile                (List)
  2650.     FtpGetFile                      Get
  2651.     FtpPutFile                      Put
  2652.     FtpDeleteFile                   Delete
  2653.     FtpRenameFile                   Rename
  2654.     FtpOpenFile                     ---
  2655.     FtpCreateDirectory              Mkdir
  2656.     FtpRemoveDirectory              Rmdir
  2657.     FtpSetCurrentDirectory          Cd
  2658.     FtpGetCurrentDirectory          Pwd
  2659.     HttpOpenRequest                 OpenRequest
  2660.     HttpAddRequestHeaders           AddHeader
  2661.     HttpSendRequest                 SendRequest
  2662.     HttpQueryInfo                   QueryInfo
  2663.     InternetErrorDlg                ---
  2664.  
  2665.  
  2666. Actually, I don't plan to add support for Gopher, Cookie and Cache
  2667. functions. I will if there will be consistent requests to do so.
  2668.  
  2669. There are a number of higher-level functions in the Win32::Internet
  2670. that simplify some usual procedures, calling more that one WININET API
  2671. function. This table reports those functions and the relative WININET
  2672. functions they use.
  2673.  
  2674.     Win32::Internet                 WININET.DLL
  2675.  
  2676.     FetchURL                        InternetOpenUrl
  2677.                                     InternetQueryDataAvailable
  2678.                                     InternetReadFile
  2679.                                     InternetCloseHandle
  2680.  
  2681.     ReadEntireFile                  InternetQueryDataAvailable
  2682.                                     InternetReadFile
  2683.  
  2684.     Request                         HttpOpenRequest
  2685.                                     HttpSendRequest
  2686.                                     HttpQueryInfo
  2687.                                     InternetQueryDataAvailable
  2688.                                     InternetReadFile
  2689.                                     InternetCloseHandle
  2690.  
  2691.     List                            FtpFindFirstFile
  2692.                                     InternetFindNextFile
  2693.  
  2694.  
  2695. =head2 Constants
  2696.  
  2697. Those are the constants exported by the package in the main namespace
  2698. (eg. you can use them in your scripts); for their meaning and proper
  2699. use, refer to the Microsoft Win32 Internet Functions document.
  2700.  
  2701.     HTTP_ADDREQ_FLAG_ADD
  2702.     HTTP_ADDREQ_FLAG_REPLACE
  2703.     HTTP_QUERY_ALLOW
  2704.     HTTP_QUERY_CONTENT_DESCRIPTION
  2705.     HTTP_QUERY_CONTENT_ID
  2706.     HTTP_QUERY_CONTENT_LENGTH
  2707.     HTTP_QUERY_CONTENT_TRANSFER_ENCODING
  2708.     HTTP_QUERY_CONTENT_TYPE
  2709.     HTTP_QUERY_COST
  2710.     HTTP_QUERY_CUSTOM
  2711.     HTTP_QUERY_DATE
  2712.     HTTP_QUERY_DERIVED_FROM
  2713.     HTTP_QUERY_EXPIRES
  2714.     HTTP_QUERY_FLAG_REQUEST_HEADERS
  2715.     HTTP_QUERY_FLAG_SYSTEMTIME
  2716.     HTTP_QUERY_LANGUAGE
  2717.     HTTP_QUERY_LAST_MODIFIED
  2718.     HTTP_QUERY_MESSAGE_ID
  2719.     HTTP_QUERY_MIME_VERSION
  2720.     HTTP_QUERY_PRAGMA
  2721.     HTTP_QUERY_PUBLIC
  2722.     HTTP_QUERY_RAW_HEADERS
  2723.     HTTP_QUERY_RAW_HEADERS_CRLF
  2724.     HTTP_QUERY_REQUEST_METHOD
  2725.     HTTP_QUERY_SERVER
  2726.     HTTP_QUERY_STATUS_CODE
  2727.     HTTP_QUERY_STATUS_TEXT
  2728.     HTTP_QUERY_URI
  2729.     HTTP_QUERY_USER_AGENT
  2730.     HTTP_QUERY_VERSION
  2731.     HTTP_QUERY_WWW_LINK
  2732.     ICU_BROWSER_MODE
  2733.     ICU_DECODE
  2734.     ICU_ENCODE_SPACES_ONLY
  2735.     ICU_ESCAPE
  2736.     ICU_NO_ENCODE
  2737.     ICU_NO_META
  2738.     ICU_USERNAME
  2739.     INTERNET_CONNECT_FLAG_PASSIVE
  2740.     INTERNET_FLAG_ASYNC
  2741.     INTERNET_FLAG_HYPERLINK
  2742.     INTERNET_FLAG_KEEP_CONNECTION
  2743.     INTERNET_FLAG_MAKE_PERSISTENT
  2744.     INTERNET_FLAG_NO_AUTH
  2745.     INTERNET_FLAG_NO_AUTO_REDIRECT
  2746.     INTERNET_FLAG_NO_CACHE_WRITE
  2747.     INTERNET_FLAG_NO_COOKIES
  2748.     INTERNET_FLAG_READ_PREFETCH
  2749.     INTERNET_FLAG_RELOAD
  2750.     INTERNET_FLAG_RESYNCHRONIZE
  2751.     INTERNET_FLAG_TRANSFER_ASCII
  2752.     INTERNET_FLAG_TRANSFER_BINARY
  2753.     INTERNET_INVALID_PORT_NUMBER
  2754.     INTERNET_INVALID_STATUS_CALLBACK
  2755.     INTERNET_OPEN_TYPE_DIRECT
  2756.     INTERNET_OPEN_TYPE_PROXY
  2757.     INTERNET_OPEN_TYPE_PROXY_PRECONFIG
  2758.     INTERNET_OPTION_CONNECT_BACKOFF
  2759.     INTERNET_OPTION_CONNECT_RETRIES
  2760.     INTERNET_OPTION_CONNECT_TIMEOUT
  2761.     INTERNET_OPTION_CONTROL_SEND_TIMEOUT
  2762.     INTERNET_OPTION_CONTROL_RECEIVE_TIMEOUT
  2763.     INTERNET_OPTION_DATA_SEND_TIMEOUT
  2764.     INTERNET_OPTION_DATA_RECEIVE_TIMEOUT
  2765.     INTERNET_OPTION_HANDLE_TYPE
  2766.     INTERNET_OPTION_LISTEN_TIMEOUT
  2767.     INTERNET_OPTION_PASSWORD
  2768.     INTERNET_OPTION_READ_BUFFER_SIZE
  2769.     INTERNET_OPTION_USER_AGENT
  2770.     INTERNET_OPTION_USERNAME
  2771.     INTERNET_OPTION_VERSION
  2772.     INTERNET_OPTION_WRITE_BUFFER_SIZE
  2773.     INTERNET_SERVICE_FTP
  2774.     INTERNET_SERVICE_GOPHER
  2775.     INTERNET_SERVICE_HTTP
  2776.     INTERNET_STATUS_CLOSING_CONNECTION
  2777.     INTERNET_STATUS_CONNECTED_TO_SERVER
  2778.     INTERNET_STATUS_CONNECTING_TO_SERVER
  2779.     INTERNET_STATUS_CONNECTION_CLOSED
  2780.     INTERNET_STATUS_HANDLE_CLOSING
  2781.     INTERNET_STATUS_HANDLE_CREATED
  2782.     INTERNET_STATUS_NAME_RESOLVED
  2783.     INTERNET_STATUS_RECEIVING_RESPONSE
  2784.     INTERNET_STATUS_REDIRECT
  2785.     INTERNET_STATUS_REQUEST_COMPLETE
  2786.     INTERNET_STATUS_REQUEST_SENT
  2787.     INTERNET_STATUS_RESOLVING_NAME
  2788.     INTERNET_STATUS_RESPONSE_RECEIVED
  2789.     INTERNET_STATUS_SENDING_REQUEST
  2790.  
  2791.  
  2792. =head1 VERSION HISTORY
  2793.  
  2794. =over
  2795.  
  2796. =item * 0.081 (25 Sep 1999)
  2797.  
  2798. =over
  2799.  
  2800. =item *
  2801.  
  2802. Documentation converted to pod format by Jan Dubois <jand@activestate.com>.
  2803.  
  2804. =item *
  2805.  
  2806. Minor changes from Perl 5.005xx compatibility.
  2807.  
  2808. =back
  2809.  
  2810. =item * 0.08 (14 Feb 1997)
  2811.  
  2812. =over
  2813.  
  2814. =item *
  2815.  
  2816. fixed 2 more bugs in Option(s) related subs (thanks to Brian
  2817. Helterline!).
  2818.  
  2819. =item *
  2820.  
  2821. Error() now gets error messages directly from WININET.DLL.
  2822.  
  2823. =item *
  2824.  
  2825. The PLL file now comes in 2 versions, one for Perl version 5.001
  2826. (build 100) and one for Perl version 5.003 (build 300 and
  2827. higher). Everybody should be happy now :)
  2828.  
  2829. =item *
  2830.  
  2831. added an installation program.
  2832.  
  2833. =back
  2834.  
  2835. =item * 0.07 (10 Feb 1997)
  2836.  
  2837. =over
  2838.  
  2839. =item *
  2840.  
  2841. fixed a bug in Version() introduced with 0.06...
  2842.  
  2843. =item *
  2844.  
  2845. completely reworked PM file, fixed *lots* of minor bugs, and removed
  2846. almost all the warnings with "perl -w".
  2847.  
  2848. =back
  2849.  
  2850. =item * 0.06 (26 Jan 1997)
  2851.  
  2852. =over
  2853.  
  2854. =item *
  2855.  
  2856. fixed another hideous bug in "new" (the 'class' parameter was still
  2857. missing).
  2858.  
  2859. =item *
  2860.  
  2861. added support for asynchronous operations (work still in embryo).
  2862.  
  2863. =item *
  2864.  
  2865. removed the ending \0 (ASCII zero) from the DLL version returned by
  2866. "Version".
  2867.  
  2868. =item *
  2869.  
  2870. added a lot of constants.
  2871.  
  2872. =item *
  2873.  
  2874. added safefree() after every safemalloc() in C... wonder why I didn't
  2875. it before :)
  2876.  
  2877. =item *
  2878.  
  2879. added TimeConvert, which actually works one way only.
  2880.  
  2881. =back
  2882.  
  2883. =item * 0.05f (29 Nov 1996)
  2884.  
  2885. =over
  2886.  
  2887. =item *
  2888.  
  2889. fixed a bug in "new" (parameters passed were simply ignored).
  2890.  
  2891. =item *
  2892.  
  2893. fixed another bug: "Chdir" and "Cwd" were aliases of RMDIR instead of
  2894. CD..
  2895.  
  2896. =back
  2897.  
  2898. =item * 0.05 (29 Nov 1996)
  2899.  
  2900. =over
  2901.  
  2902. =item *
  2903.  
  2904. added "CrackURL" and "CreateURL".
  2905.  
  2906. =item *
  2907.  
  2908. corrected an error in TEST.PL (there was a GetUserAgent instead of
  2909. UserAgent).
  2910.  
  2911. =back
  2912.  
  2913. =item * 0.04 (25 Nov 1996)
  2914.  
  2915. =over
  2916.  
  2917. =item *
  2918.  
  2919. added "Version" to retrieve package and DLL versions.
  2920.  
  2921. =item *
  2922.  
  2923. added proxies and other options to "new".
  2924.  
  2925. =item *
  2926.  
  2927. changed "OpenRequest" and "Request" to read parameters from a hash.
  2928.  
  2929. =item *
  2930.  
  2931. added "SetOption/QueryOption" and a lot of relative functions
  2932. (connect, username, password, useragent, etc.).
  2933.  
  2934. =item *
  2935.  
  2936. added "CanonicalizeURL" and "CombineURL".
  2937.  
  2938. =item *
  2939.  
  2940. "Error" covers a wider spectrum of errors.
  2941.  
  2942. =back
  2943.  
  2944. =item * 0.02 (18 Nov 1996)
  2945.  
  2946. =over
  2947.  
  2948. =item *
  2949.  
  2950. added support for HTTP sessions and requests.
  2951.  
  2952. =back
  2953.  
  2954. =item * 0.01 (11 Nov 1996)
  2955.  
  2956. =over
  2957.  
  2958. =item *
  2959.  
  2960. fetching of HTTP, FTP and GOPHER URLs.
  2961.  
  2962. =item *
  2963.  
  2964. complete set of commands to manage an FTP session.
  2965.  
  2966. =back
  2967.  
  2968. =back
  2969.  
  2970. =head1 AUTHOR
  2971.  
  2972. Version 0.08 (14 Feb 1997) by Aldo Calpini <a.calpini@romagiubileo.it>
  2973.  
  2974.  
  2975. =head1 CREDITS
  2976.  
  2977. Win32::Internet is based on the Win32::Registry code written by Jesse
  2978. Dougherty.
  2979.  
  2980. Additional thanks to: Carl Tichler for his help in the initial
  2981. development; Tore Haraldsen, Brian Helterline for the bugfixes; Dave
  2982. Roth for his great source code examples.
  2983.  
  2984.  
  2985. =head1 DISCLAIMER
  2986.  
  2987. This program is FREE; you can redistribute, modify, disassemble, or
  2988. even reverse engineer this software at your will. Keep in mind,
  2989. however, that NOTHING IS GUARANTEED to work and everything you do is
  2990. AT YOUR OWN RISK - I will not take responsability for any damage, loss
  2991. of money and/or health that may arise from the use of this program!
  2992.  
  2993. This is distributed under the terms of Larry Wall's Artistic License.
  2994.