Import of Business::OnlinePayment 2.01 BUSINESS_ONLINEPAYMENT_2_01
authorivan <ivan>
Fri, 3 Sep 2004 23:10:52 +0000 (23:10 +0000)
committerivan <ivan>
Fri, 3 Sep 2004 23:10:52 +0000 (23:10 +0000)
Changes [new file with mode: 0644]
MANIFEST [new file with mode: 0644]
META.yml [new file with mode: 0644]
Makefile.PL [new file with mode: 0644]
OnlinePayment.pm [new file with mode: 0644]
README [new file with mode: 0644]
notes_for_module_writers [new file with mode: 0644]
test.pl [new file with mode: 0644]

diff --git a/Changes b/Changes
new file mode 100644 (file)
index 0000000..8a01eab
--- /dev/null
+++ b/Changes
@@ -0,0 +1,5 @@
+Revision history for Perl extension Business::OnlinePayment.
+
+0.01  Sun Jul 25 13:59:10 1999
+       - original version; created by h2xs 1.19
+
diff --git a/MANIFEST b/MANIFEST
new file mode 100644 (file)
index 0000000..c59ac4a
--- /dev/null
+++ b/MANIFEST
@@ -0,0 +1,8 @@
+README
+Changes
+MANIFEST
+Makefile.PL
+OnlinePayment.pm
+test.pl
+notes_for_module_writers
+META.yml                                 Module meta-data (added by MakeMaker)
diff --git a/META.yml b/META.yml
new file mode 100644 (file)
index 0000000..631a86d
--- /dev/null
+++ b/META.yml
@@ -0,0 +1,11 @@
+# http://module-build.sourceforge.net/META-spec.html
+#XXXXXXX This is a prototype!!!  It will change in the future!!! XXXXX#
+name:         Business-OnlinePayment
+version:      2.01
+version_from: OnlinePayment.pm
+installdirs:  site
+requires:
+    Net::SSLeay:                   0
+
+distribution_type: module
+generated_by: ExtUtils::MakeMaker version 6.17
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..b3115c2
--- /dev/null
@@ -0,0 +1,11 @@
+use ExtUtils::MakeMaker;
+# See lib/ExtUtils/MakeMaker.pm for details of how to influence
+# the contents of the Makefile that is written.
+WriteMakefile(
+    'NAME'         => 'Business::OnlinePayment',
+    'VERSION_FROM' => 'OnlinePayment.pm', # finds $VERSION
+    'AUTHOR'       => 'Jason Kohles <email@jasonkohles.com>',
+    'NORECURS'     => 1, # dont descend into subdirectories
+    'PREREQ_PM'    => {'Net::SSLeay' => 0},
+    #'dist'         => {CI => 'ci -l'},
+);
diff --git a/OnlinePayment.pm b/OnlinePayment.pm
new file mode 100644 (file)
index 0000000..3262436
--- /dev/null
@@ -0,0 +1,320 @@
+package Business::OnlinePayment;
+
+use strict;
+use vars qw($VERSION @ISA @EXPORT @EXPORT_OK $AUTOLOAD);
+
+require 5.004;
+require Exporter;
+
+@ISA = qw(Exporter AutoLoader);
+@EXPORT = qw();
+@EXPORT_OK = qw();
+
+$VERSION = do { my @r=(q$Revision: 1.1 $=~/\d+/g);sprintf "%d."."%02d"x$#r,@r};
+
+use Carp();
+
+my %fields = (
+    is_success       => undef,
+    result_code      => undef,
+    test_transaction => undef,
+    require_avs      => undef,
+    transaction_type => undef,
+    error_message    => undef,
+    authorization    => undef,
+    server           => undef,
+    port             => undef,
+    path             => undef,
+    server_response  => undef,
+);
+
+
+sub new {
+    my($class,$processor,%data) = @_;
+
+    Carp::croak("unspecified processor") unless $processor;
+
+    my $subclass = "${class}::$processor";
+    if(!defined(&$subclass)) {
+        eval "use $subclass";
+        Carp::croak("unknown processor $processor ($@)") if $@;
+    }
+
+    my $self = bless {processor => $processor}, $subclass;
+    $self->build_subs(keys %fields);
+
+    if($self->can("set_defaults")) {
+        $self->set_defaults();
+    }
+
+    foreach(keys %data) {
+        my $key = lc($_);
+        my $value = $data{$_};
+        $key =~ s/^\-//;
+        $self->build_subs($key);
+        $self->$key($value);
+    }
+
+    return $self;
+}
+
+sub content {
+    my($self,%params) = @_;
+
+    if(%params) {
+        if($params{'type'}) { $self->transaction_type($params{'type'}); }
+        %{$self->{'_content'}} = %params;
+    }
+    return %{$self->{'_content'}};
+}
+
+sub required_fields {
+    my($self,@fields) = @_;
+
+    my %content = $self->content();
+    foreach(@fields) {
+        Carp::croak("missing required field $_") unless exists $content{$_};
+    }
+}
+
+sub get_fields {
+    my($self,@fields) = @_;
+
+    my %content = $self->content();
+    my %new = ();
+    foreach(@fields) { $new{$_} = $content{$_}; }
+    return %new;
+}
+
+sub remap_fields {
+    my($self,%map) = @_;
+
+    my %content = $self->content();
+    foreach(%map) {
+        $content{$map{$_}} = $content{$_};
+    }
+    $self->content(%content);
+}
+
+sub submit {
+    my($self) = @_;
+
+    Carp::croak("Processor subclass did not override submit function");
+}
+
+sub dump_contents {
+    my($self) = @_;
+
+    my %content = $self->content();
+    my $dump = "";
+    foreach(keys %content) {
+        $dump .= "$_ = $content{$_}\n";
+    }
+    return $dump;
+}
+
+# didnt use AUTOLOAD because Net::SSLeay::AUTOLOAD passes right to
+# AutoLoader::AUTOLOAD, instead of passing up the chain
+sub build_subs {
+    my $self = shift;
+    foreach(@_) {
+        eval "sub $_ { my \$self = shift; if(\@_) { \$self->{$_} = shift; } return \$self->{$_}; }";
+    }
+}
+
+1;
+
+__END__
+
+=head1 NAME
+
+Business::OnlinePayment - Perl extension for online payment processing
+
+=head1 SYNOPSIS
+
+  use Business::OnlinePayment;
+
+  my $transaction = new Business::OnlinePayment($processor, %processor_info);
+  $transaction->content(
+                        type       => 'Visa',
+                        amount     => '49.95',
+                        cardnumber => '1234123412341238',
+                        expiration => '0100',
+                        name       => 'John Q Doe',
+                       );
+  $transaction->submit();
+
+  if($transaction->is_success()) {
+    print "Card processed successfully: ".$transaction->authorization()."\n";
+  } else {
+    print "Card was rejected: ".$transaction->error_message()."\n";
+  }
+
+=head1 DESCRIPTION
+
+Business::OnlinePayment is a generic module for processing payments through
+online credit card processors, electronic cash systems, etc.
+
+=head1 METHODS AND FUNCTIONS
+
+=head2 new($processor, %processor_options);
+
+Create a new Business::OnlinePayment object, $processor is required, and defines the online processor to use.  If necessary, processor options can be specified, currently supported options are 'Server', 'Port', and 'Path', which specify how to find the online processor (https://server:port/path), but individual processor modules should supply reasonable defaults for this information, override the defaults only if absolutely necessary (especially path), as the processor module was probably written with a specific target script in mind.
+
+=head2 content(%content);
+
+The information necessary for the transaction, this tends to vary a little depending on the processor, so we have chosen to use a system which defines specific fields in the frontend which get mapped to the correct fields in the backend.  The currently defined fields are:
+
+=over 4
+
+=item * type
+
+Transaction type, supported types are:
+Visa, MasterCard, American Express, Discover, Check (not all processors support all these transaction types).
+
+=item * login
+
+Your login name to use for authentication to the online processor.
+
+=item * password
+
+Your password to use for authentication to the online processor.
+
+=item * action
+
+What to do with the transaction (currently available are: Normal Authorization, Authorization Only, Credit, Post Authorization)
+
+=item * description
+
+A description of the transaction (used by some processors to send information to the client, normally not a required field).
+
+=item * amount
+
+The amount of the transaction, most processors dont want dollar signs and the like, just a floating point number.
+
+=item * invoice_number
+
+An invoice number, for your use and not normally required, many processors require this field to be a numeric only field.
+
+=item * customer_id
+
+A customer identifier, again not normally required.
+
+=item * name
+
+The customers name, your processor may not require this.
+
+=item * address
+
+The customers address (your processor may not require this unless you are requiring AVS Verification).
+
+=item * city
+
+The customers city (your processor may not require this unless you are requiring AVS Verification).
+
+=item * state
+
+The customers state (your processor may not require this unless you are requiring AVS Verification).
+
+=item * zip
+
+The customers zip code (your processor may not require this unless you are requiring AVS Verification).
+
+=item * country
+
+Customer's country.
+
+=item * phone
+
+Customer's phone number.
+
+=item * fax
+
+Customer's fax number.
+
+=item * email
+
+Customer's email address.
+
+=item * card_number
+
+Credit card number (obviously not required for non-credit card transactions).
+
+=item * exp_date
+
+Credit card expiration (obviously not required for non-credit card transactions).
+
+=item * account_number
+
+Bank account number for electronic checks or electronic funds transfer.
+
+=item * routing_code
+
+Bank's routing code for electronic checks or electronic funds transfer.
+
+=item * bank_name
+
+Bank's name for electronic checks or electronic funds transfer.
+
+=back
+
+=head2 submit();
+
+Submit the transaction to the processor for completion
+
+=head2 is_success();
+
+Returns true if the transaction was submitted successfully, false if it failed (or undef if it has not been submitted yet).
+
+=head2 result_code();
+
+Returns the precise result code that the processor returned, these are normally one letter codes that don't mean much unless you understand the protocol they speak, you probably don't need this, but it's there just in case.
+
+=head2 test_transaction();
+
+Most processors provide a test mode, where submitted transactions will not actually be charged or added to your batch, calling this function with a true argument will turn that mode on if the processor supports it, or generate a fatal error if the processor does not support a test mode (which is probably better than accidentally making real charges).
+
+=head2 require_avs();
+
+Providing a true argument to this module will turn on address verification (if the processor supports it).
+
+=head2 transaction_type();
+
+Retrieve the transaction type (the 'type' argument to contents();).  Generally only used internally, but provided in case it is useful.
+
+=head2 error_message();
+
+If the transaction has been submitted but was not accepted, this function will return the provided error message (if any) that the processor returned.
+
+=head2 authorization();
+
+If the transaction has been submitted and accepted, this function will provide you with the authorization code that the processor returned.
+
+=head2 server();
+
+Retrieve or change the processor submission server address (CHANGE AT YOUR OWN RISK).
+
+=head2 port();
+
+Retrieve or change the processor submission port (CHANGE AT YOUR OWN RISK).
+
+=head2 path();
+
+Retrieve or change the processor submission path (CHANGE AT YOUR OWN RISK).
+
+=head1 AUTHOR
+
+Jason Kohles, email@jasonkohles.com
+
+=head1 DISCLAIMER
+
+THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
+WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+
+
+=head1 SEE ALSO
+
+For verification of credit card checksums, see L<Business::CreditCard>.
+
+=cut
diff --git a/README b/README
new file mode 100644 (file)
index 0000000..0a35167
--- /dev/null
+++ b/README
@@ -0,0 +1,18 @@
+*****************************************************************************
+* Copyright (c) 1999-2004 Jason Kohles. All rights reserved. This program   *
+* is free software; you can redistribute it and/or modify it under the same *
+* terms as Perl itself.                                                     *
+*****************************************************************************
+
+Business::OnlinePayment is a generic interface for processing payments through
+online credit card processors, online check acceptance houses, etc.  (If you
+like buzzwords, call it an "multiplatform ecommerce-enabling middleware
+solution").
+
+IMPORTANT: Business::OnlinePayment only defines the frontend interface to the
+system, in order to use it you also need to have at least one backend
+processing module installed, there used to be a list here, but so many people
+have contributed backends now that it is easier to search CPAN to find them.
+
+http://search.cpan.org/search?m=all&q=Business::OnlinePayment::
+
diff --git a/notes_for_module_writers b/notes_for_module_writers
new file mode 100644 (file)
index 0000000..9d6d0c2
--- /dev/null
@@ -0,0 +1,54 @@
+$Id: notes_for_module_writers,v 1.1 2004-09-03 23:10:51 ivan Exp $
+
+Information on creating a new processor backend to go with
+Business::OnlinePayment.
+
+create a subclass of Business::OnlinePayment called
+Business::OnlinePayment::(processor name).  You should override at least
+the following functions (look at Business::OnlinePayment::AuthorizeNet as
+an example).
+
+set_defaults: set default information for server/port/path (if your processor
+              is not web based you probably dont need to override these).
+
+submit: This is the only function you _MUST_ override, the superclass function
+        merely dies(), so if you dont override this, your module doesnt do
+        anything.  Some of the things that submit should do:
+
+            * Turn the data into a format usable by the online processor,
+              some convenience functions (remap_fields and get_fields), are
+              provided by the superclass to make this a little easier.
+
+            * Check and make sure that all the required fields have been
+              filled in (the superclass provides the function required_fields()
+              which can do this for you).
+            
+            * IMPORTANT: If the superclass function test_transaction() returns
+              true, the transaction must be submitted to the processor in test
+              mode.  If your processor is unable to easily provide a test mode,
+              your module should die() if test_transaction() returns true,
+              this prevents accidental charges for people who thought they were
+              submitting test transactions.
+
+            * If your processor provides an option of whether or not you want
+              address verification, your module should check to see if the
+              require_avs() function returns true, and turn on AVS checking if
+              it does.
+
+            * Submit the transaction to the processor and collect a response.
+
+            * Do the following with the response:
+              * call server_response() with a copy of the entire unprocessed
+                response, to be stored in case the user needs it in the future.
+              * call is_success() with either a true or false value, indicating
+                if the transaction was successful or not.
+              * call result_code() with the servers result code (this is
+                generally one field from the response indicating that it was
+                successful or a failure, most processors provide many possible
+                result codes to differentiate different types of success and
+                failure).
+              * If the transaction was successful, call authorization() with
+                the authorization code the processor provided.
+              * If the transaction was not successful, call error_message()
+                with either the processor provided error message, or some
+                error message to indicate why it failed.
diff --git a/test.pl b/test.pl
new file mode 100644 (file)
index 0000000..ec14a10
--- /dev/null
+++ b/test.pl
@@ -0,0 +1,9 @@
+# Before `make install' is performed this script should be runnable with
+# `make test'. After `make install' it should work as `perl test.pl'
+
+# test 1
+BEGIN { $| = 1; print "1..2\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use Business::OnlinePayment;
+$loaded = 1;
+print "ok 1\n";