diff options
Diffstat (limited to 'lib/Net/HTTPS/Any.pm')
-rw-r--r-- | lib/Net/HTTPS/Any.pm | 61 |
1 files changed, 39 insertions, 22 deletions
diff --git a/lib/Net/HTTPS/Any.pm b/lib/Net/HTTPS/Any.pm index d42b618..e03c5d7 100644 --- a/lib/Net/HTTPS/Any.pm +++ b/lib/Net/HTTPS/Any.pm @@ -2,12 +2,11 @@ package Net::HTTPS::Any; use warnings; use strict; -use vars qw(@ISA @EXPORT_OK $ssl_module $skip_NetSSLeay); -use Exporter; +use base qw( Exporter ); +use vars qw(@EXPORT_OK $ssl_module $skip_NetSSLeay); use URI::Escape; use Tie::IxHash; -@ISA = qw( Exporter ); @EXPORT_OK = qw( https_get https_post ); BEGIN { @@ -44,15 +43,11 @@ BEGIN { =head1 NAME -Net::HTTPS::Any - Simple HTTPS class using whatever underlying module is available - -=head1 VERSION - -Version 0.09 +Net::HTTPS::Any - Simple HTTPS class using whichever underlying SSL module is available =cut -our $VERSION = '0.09'; +our $VERSION = '0.10'; =head1 SYNOPSIS @@ -82,11 +77,22 @@ our $VERSION = '0.09'; =head1 DESCRIPTION This is a simple wrapper around either of the two available SSL -modules. It offers a unified API for send GET and POST requests over HTTPS +modules. It offers a unified API for sending GET and POST requests over HTTPS and receiving responses. It depends on Net::SSLeay _or_ ( Crypt::SSLeay and LWP::UserAgent ). +=head1 WHY THIS MODULE + +If you just want to write something that speaks HTTPS, you don't need this +module. Just go ahead and use whichever of the two modules is good for you. +Don't worry about it. + +On the other hand, if you are a CPAN author or distribute a Perl application, +especially if you aim to support multiple OSes/disributions, using this module +for speaking HTTPS may make things easier on your users. It allows your code +to be used with either SSL implementation. + =head1 FUNCTIONS =head2 https_get HASHREF | FIELD => VALUE, ... @@ -107,9 +113,11 @@ Parameters are: For example: { 'X-Header1' => 'value', ... } -=item Content-Type +=cut -For example: 'text/namevalue', +# =item Content-Type +# +# Defaults to "application/x-www-form-urlencoded" if not specified. =item args @@ -118,6 +126,8 @@ is preserved (see L<Tie::IxHash> to do so when passing a hashref). =item debug +Set true to enable debugging. + =back Returns a list consisting of the page content as a string, the HTTP @@ -130,7 +140,7 @@ sub https_get { my $opts = ref($_[0]) ? shift : { @_ }; #hashref or list # accept a hashref or a list (keep it ordered) - my $post_data = {}; + my $post_data = {}; # technically get_data, pedant if ( exists($opts->{'args'}) && ref($opts->{'args'}) eq 'HASH' ) { $post_data = $opts->{'args'}; } elsif ( exists($opts->{'args'}) && ref($opts->{'args'}) eq 'ARRAY' ) { @@ -169,10 +179,12 @@ sub https_get { $opts->{'port'}, $path, $headers, - "", - $opts->{"Content-Type"}, + #"", + #$opts->{"Content-Type"}, ); + $res_code =~ /^(HTTP\S+ )?(.*)/ and $res_code = $2; + return ( $res_page, $res_code, @res_headers ); } elsif ( $ssl_module eq 'Crypt::SSLeay' ) { @@ -222,7 +234,7 @@ For example: { 'X-Header1' => 'value', ... } =item Content-Type -For example: 'text/namevalue', +Defaults to "application/x-www-form-urlencoded" if not specified. =item args @@ -233,6 +245,9 @@ is preserved (see L<Tie::IxHash> to do so when passing a hashref). Raw content (overrides args). A simple scalar containing the raw content. +=item debug + +Set true to enable debugging in the underlying SSL module. =back @@ -272,6 +287,11 @@ sub https_post { import Net::SSLeay qw(post_https make_headers make_form); my $headers = make_headers(%headers); + if ($opts->{debug}) { + no warnings 'uninitialized'; + $Net::SSLeay::trace = $opts->{debug}; + } + my $raw_data = ref($post_data) ? make_form(%$post_data) : $post_data; $Net::SSLeay::trace = $opts->{'debug'} @@ -286,6 +306,8 @@ sub https_post { $opts->{"Content-Type"}, ); + $res_code =~ /^(HTTP\S+ )?(.*)/ and $res_code = $2; + return ( $res_page, $res_code, @res_headers ); } elsif ( $ssl_module eq 'Crypt::SSLeay' ) { @@ -342,7 +364,6 @@ You can find documentation for this module with the perldoc command. perldoc Net::HTTPS::Any - You can also look for information at: =over 4 @@ -365,13 +386,9 @@ L<http://search.cpan.org/dist/Net-HTTPS-Any> =back - -=head1 ACKNOWLEDGEMENTS - - =head1 COPYRIGHT & LICENSE -Copyright 2008 Freeside Internet Services, Inc. (http://freeside.biz/) +Copyright 2008-2010 Freeside Internet Services, Inc. (http://freeside.biz/) All rights reserved. This program is free software; you can redistribute it and/or modify it |