X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=lib%2FNet%2FHTTPS%2FAny.pm;h=1812d06f8f63c081cc14bc93b84fcc92e041bb4a;hb=11c117de3d421d0b9843f6fdfeea3933c3d47fe5;hp=c65c7d94d8c639c35a6a11210e873bc4f6298632;hpb=97e89d11919d233afc4bbe3a2c7f14a4d116584b;p=Net-HTTPS-Any.git diff --git a/lib/Net/HTTPS/Any.pm b/lib/Net/HTTPS/Any.pm index c65c7d9..1812d06 100644 --- a/lib/Net/HTTPS/Any.pm +++ b/lib/Net/HTTPS/Any.pm @@ -2,11 +2,12 @@ package Net::HTTPS::Any; use warnings; use strict; -use vars qw(@EXPORT_OK $ssl_module $skip_NetSSLeay); +use vars qw(@ISA @EXPORT_OK $ssl_module $skip_NetSSLeay); use Exporter; use URI::Escape; use Tie::IxHash; +@ISA = qw( Exporter ); @EXPORT_OK = qw( https_get https_post ); BEGIN { @@ -114,6 +115,8 @@ For example: 'text/namevalue', CGI arguments, eitehr as a hashref or a listref. In the latter case, ordering is preserved (see L to do so when passing a hashref). +=item debug + =back Returns a list consisting of the page content as a string, the HTTP @@ -134,6 +137,7 @@ sub https_get { $post_data = \%hash; } + $opts->{'port'} ||= 443; $opts->{"Content-Type"} ||= "application/x-www-form-urlencoded"; ### XXX referer!!! @@ -156,6 +160,8 @@ sub https_get { import Net::SSLeay qw(get_https make_headers); my $headers = make_headers(%headers); + $Net::SSLeay::trace = $opts->{'debug'} if exists $opts->{'debug'}; + my( $res_page, $res_code, @res_headers ) = get_https( $opts->{'host'}, $opts->{'port'}, @@ -180,6 +186,7 @@ sub https_get { foreach my $hdr ( keys %headers ) { $ua->default_header( $hdr => $headers{$hdr} ); } + $ENV{HTTPS_DEBUG} = $opts->{'debug'} if exists $opts->{'debug'}; my $res = $ua->request( GET($url) ); my @res_headers = map { $_ => $res->header($_) } @@ -248,6 +255,7 @@ sub https_post { $post_data = $opts->{'content'}; } + $opts->{'port'} ||= 443; $opts->{"Content-Type"} ||= "application/x-www-form-urlencoded"; ### XXX referer!!! @@ -258,12 +266,14 @@ sub https_post { $headers{'Host'} ||= $opts->{'host'}; if ( $ssl_module eq 'Net::SSLeay' ) { - + import Net::SSLeay qw(post_https make_headers make_form); my $headers = make_headers(%headers); my $raw_data = ref($post_data) ? make_form(%$post_data) : $post_data; + $Net::SSLeay::trace = $opts->{'debug'} if exists $opts->{'debug'}; + my( $res_page, $res_code, @res_headers ) = post_https( $opts->{'host'}, $opts->{'port'}, @@ -289,6 +299,8 @@ sub https_post { $ua->default_header( $hdr => $headers{$hdr} ); } + $ENV{HTTPS_DEBUG} = $opts->{'debug'} if exists $opts->{'debug'}; + my $res; if ( ref($post_data) ) { $res = $ua->request( POST( $url, [%$post_data] ) );