[ Changes by Phil Lobbes <phil at perkpartners.com > ]
authorplobbes <plobbes>
Sat, 23 Dec 2006 19:11:43 +0000 (19:11 +0000)
committerplobbes <plobbes>
Sat, 23 Dec 2006 19:11:43 +0000 (19:11 +0000)
- CPAN bug #13896 order_number() (which provides access to PNREF)
  is not set when transaction fails [FIXED].
- Remove AutoLoader/Exporter per Jo Rhett <jrhett at netconsonance.com>
- "use" (instead of "require") Business::OnlinePayment
- remove build_subs() and get_fields() (provided by B::OP)
- Fixed bug: VENDOR set to login instead of vendor
  (will still use login if VENDOR is not set)
- minor cleanup remove commented out code, reformat docs a little

PayflowPro.pm

index fe70d7a..c3727bc 100644 (file)
@@ -1,20 +1,15 @@
 package Business::OnlinePayment::PayflowPro;
 
 use strict;
-use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
+use vars qw($VERSION);
 use Carp qw(croak);
-use AutoLoader;
-use Business::OnlinePayment;
+use base qw(Business::OnlinePayment);
 
-#PayflowPRO SDK from Verisign
+# PayflowPRO SDK from PayPal/Verisign
 use PFProAPI qw( pfpro );
 
-require Exporter;
-
-@ISA = qw(Exporter AutoLoader Business::OnlinePayment);
-@EXPORT = qw();
-@EXPORT_OK = qw();
-$VERSION = '0.04';
+$VERSION = '0.05';
+$VERSION = eval $VERSION;
 
 sub set_defaults {
     my $self = shift;
@@ -25,7 +20,6 @@ sub set_defaults {
     $self->build_subs(qw(
       vendor partner order_number cert_path avs_code cvv2_code
     ));
-
 }
 
 sub map_fields {
@@ -57,15 +51,6 @@ sub map_fields {
     $self->content(%content);
 }
 
-sub build_subs {
-    my $self = shift;
-    foreach(@_) {
-        #no warnings; #not 5.005
-        local($^W)=0;
-        eval "sub $_ { my \$self = shift; if(\@_) { \$self->{$_} = shift; } return \$self->{$_}; }";
-    }
-}
-
 sub remap_fields {
     my($self,%map) = @_;
 
@@ -90,15 +75,6 @@ sub revmap_fields {
     $self->content(%content);
 }
 
-sub get_fields {
-    my($self,@fields) = @_;
-
-    my %content = $self->content();
-    my %new = ();
-    foreach( grep defined $content{$_}, @fields) { $new{$_} = $content{$_}; }
-    return %new;
-}
-
 sub submit {
     my($self) = @_;
 
@@ -108,38 +84,31 @@ sub submit {
 
     my($month, $year, $zip);
 
-    #unless ( $content{action} eq 'BillOrders' ) {
-
-        if (  $self->transaction_type() eq 'C' ) {
-        } else {
-            Carp::croak("PayflowPro can't (yet?) handle transaction type: ".
-                        $self->transaction_type());
-        }
+    if ( $self->transaction_type() ne 'C' ) {
+        croak("PayflowPro can't (yet?) handle transaction type: " .
+              $self->transaction_type());
+    }
 
-      if ( exists($content{'expiration'}) && defined($content{'expiration'})
-           && length($content{'expiration'})                                 ) {
+    if ( defined($content{'expiration'}) && length($content{'expiration'}) ) {
         $content{'expiration'} =~ /^(\d+)\D+\d*(\d{2})$/
-          or croak "unparsable expiration $content{expiration}";
+            or croak "unparsable expiration $content{expiration}";
 
         ( $month, $year ) = ( $1, $2 );
         $month = '0'. $month if $month =~ /^\d$/;
-      }
-
-      ( $zip = $content{'zip'} ) =~ s/\D//g;
-    #}
+    }
 
-    #$content{'address'} =~ /^(\S+)\s/;
-    #my $addrnum = $1;
+    ( $zip = $content{'zip'} ) =~ s/\D//g;
 
     $self->server('test-payflow.verisign.com') if $self->test_transaction;
 
     $self->revmap_fields(
-      ACCT       => 'card_number',
+      ACCT        => 'card_number',
       EXPDATE     => \( $month.$year ),
       AMT         => 'amount',
       USER        => 'login',
-      #VENDOR      => \( $self->vendor ),
-      VENDOR      => 'login',
+      # (BUG?) VENDOR B::OP:PayflowPro < 0.05 backward compatibility.  If
+      # vendor not set use login (although test indicate undef vendor is ok)
+      VENDOR      => $self->vendor ? \( $self->vendor ) : 'login',
       PARTNER     => \( $self->partner ),
       PWD         => 'password',
       TRXTYPE     => 'action',
@@ -166,8 +135,11 @@ sub submit {
 
     my @required = qw( TRXTYPE TENDER PARTNER VENDOR USER PWD );
     if (  $self->transaction_type() eq 'C' ) { #credit card
-      if ( $content{'action'} =~ /^[CDV]$/ && exists($content{'ORIGID'})
-           && defined($content{'ORIGID'}) && length($content{'ORIGID'}) ) {
+      if ( $content{'action'} =~ /^[CDV]$/
+           && defined($content{'ORIGID'})
+           && length($content{'ORIGID'})
+         )
+      {
         push @required, qw(ORIGID);
       } else {
         push @required, qw(AMT ACCT EXPDATE);
@@ -177,25 +149,22 @@ sub submit {
 
     my %params = $self->get_fields(qw(
       ACCT EXPDATE AMT USER VENDOR PARTNER PWD TRXTYPE TENDER
-      STREET ZIP
-      CITY COMMENT1 COMMENT2 COMPANYNAME COUNTRY FIRSTNAME LASTNAME NAME EMAIL
-        STATE
+      STREET ZIP CITY COMMENT1 COMMENT2 COMPANYNAME COUNTRY
+      FIRSTNAME LASTNAME NAME EMAIL STATE
       CVV2 ORIGID
     ));
 
-    #print "$_ => $params{$_}\n" foreach keys %params;
-
     $ENV{'PFPRO_CERT_PATH'} = $self->cert_path;
     my( $response, $resultstr ) = pfpro( \%params, $self->server, $self->port );
+    # PNREF (aka transaction id) is set on success and failure
+    $self->order_number( $response->{'PNREF'} );
 
-    #if ( $response->{'RESULT'} == 0 ) {
     if ( $response->{'RESULT'} eq '0' ) { #want an explicit zero, not just
                                           #numerically equal
       $self->is_success(1);
       $self->result_code(   $response->{'RESULT'}   );
       $self->error_message( $response->{'RESPMSG'}  );
       $self->authorization( $response->{'AUTHCODE'} );
-      $self->order_number(  $response->{'PNREF'}    );
       my $avs_code = '';
       if ( exists $response->{AVSADDR} || exists $response->{AVSZIP} ) {
         if ( $response->{AVSADDR} eq 'Y' && $response->{AVSZIP} eq 'Y' ) {
@@ -219,6 +188,7 @@ sub submit {
 }
 
 1;
+
 __END__
 
 =head1 NAME
@@ -261,18 +231,18 @@ Business::OnlinePayment::PayflowPro - Verisign PayflowPro backend for Business::
   $tx->submit();
 
   if($tx->is_success()) {
-      print "Card processed successfully: ".$tx->authorization."\n";
-      print "order number: ". $tx->order_number. "\n";
-      print "AVS code: ". $tx->avs_code. "\n"; # Y - Address and ZIP match
+      print "Card processed successfully: ", $tx->authorization, "\n";
+      print "order number: ", $tx->order_number, "\n";
+      print "AVS code: ", $tx->avs_code, "\n"; # Y - Address and ZIP match
                                                # A - Address matches but not ZIP
                                                # Z - ZIP matches bu tnot address
                                                # N - no match
                                                # E - AVS error or unsupported
                                                # (null) - AVS error
-      print "CVV2 code: ". $tx->cvv2_code. "\n";
+      print "CVV2 code: ", $tx->cvv2_code, "\n";
 
   } else {
-      print "Card was rejected: ".$tx->error_message;
+      print "Card was rejected: "$tx->error_message;
       print " (CVV2 mismatch)" if $tx->result_code == 114;
       print "\n";
   }
@@ -291,8 +261,8 @@ For detailed information see L<Business::OnlinePayment>.
 
 =head1 COMPATIBILITY
 
-This module implements an interface to the PayflowPro Perl API, which can
-be downloaded at https://manager.verisign.com/ with a valid login.
+This module implements an interface to the PayflowPro Perl API, which
+can be downloaded at https://manager.verisign.com/ with a valid login.
 
 =head1 BUGS
 
@@ -307,4 +277,3 @@ Based on Busienss::OnlinePayment::AuthorizeNet written by Jason Kohles.
 perl(1), L<Business::OnlinePayment>.
 
 =cut
-