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