X-Git-Url: http://git.freeside.biz/gitweb/?p=Business-OnlinePayment.git;a=blobdiff_plain;f=OnlinePayment.pm;h=f0b1a92e0dadc3d19bc874276aa950b47433a89b;hp=dbb28ce8ce2bb7f43f19a78136ea9fbd0722d35f;hb=d5e830c6afd72c3cfd0a4d8b9a4a0a7f181ea6dd;hpb=3785f360382e1a9d906e61ddaa9d2ff4b0881704 diff --git a/OnlinePayment.pm b/OnlinePayment.pm index dbb28ce..f0b1a92 100644 --- a/OnlinePayment.pm +++ b/OnlinePayment.pm @@ -92,6 +92,8 @@ sub _risk_detect { return 0; } +my @Fraud_Class_Path = qw(Business::OnlinePayment Business::FraudDetect); + sub _pre_submit { my ($self) = @_; my $fraud_detection = $self->fraud_detect(); @@ -100,14 +102,13 @@ sub _pre_submit { return 1 unless $fraud_detection; # Search for an appropriate FD module - foreach my $subclass ( q(Business::OnlinePayment::) . $fraud_detection, - q(Business::FraudDetect::) . $fraud_detection) { - + foreach my $fraud_class ( @Fraud_Class_Path ) { + my $subclass = $fraud_class . "::" . $fraud_detection; if (!defined(&$subclass)) { - eval "use $subclass"; + eval "use $subclass ()"; if ($@) { - Carp::croak("serious problem loading fraud_detection module ($@)") unless - $@ =~ m/^Can\'t locate/; + Carp::croak("error loading fraud_detection module ($@)") + unless ( $@ =~ m/^Can\'t locate/ ); } else { my $risk_tx = bless ( { processor => $fraud_detection } , $subclass ); $risk_tx->build_subs(keys %fields); @@ -119,7 +120,9 @@ sub _pre_submit { } } } - return 1; # BUG?: success if fraud_detection module not found! + Carp::croak("Unable to locate fraud_detection module $fraud_detection" + . " in \@INC under Fraud_Class_Path (\@Fraud_Class_Path" + . " contains: @Fraud_Class_Path) (\@INC contains: @INC)"); } sub content {