71513: Card tokenization [refund testing & bug fixes]
[freeside.git] / FS / FS / cust_main / Billing_Realtime.pm
1 package FS::cust_main::Billing_Realtime;
2
3 use strict;
4 use vars qw( $conf $DEBUG $me );
5 use vars qw( $realtime_bop_decline_quiet ); #ugh
6 use Carp;
7 use Data::Dumper;
8 use Business::CreditCard 0.35;
9 use FS::UID qw( dbh myconnect );
10 use FS::Record qw( qsearch qsearchs );
11 use FS::payby;
12 use FS::cust_pay;
13 use FS::cust_pay_pending;
14 use FS::cust_bill_pay;
15 use FS::cust_refund;
16 use FS::banned_pay;
17 use FS::payment_gateway;
18
19 $realtime_bop_decline_quiet = 0;
20
21 # 1 is mostly method/subroutine entry and options
22 # 2 traces progress of some operations
23 # 3 is even more information including possibly sensitive data
24 $DEBUG = 0;
25 $me = '[FS::cust_main::Billing_Realtime]';
26
27 our $BOP_TESTING = 0;
28 our $BOP_TESTING_SUCCESS = 1;
29
30 install_callback FS::UID sub { 
31   $conf = new FS::Conf;
32   #yes, need it for stuff below (prolly should be cached)
33 };
34
35 =head1 NAME
36
37 FS::cust_main::Billing_Realtime - Realtime billing mixin for cust_main
38
39 =head1 SYNOPSIS
40
41 =head1 DESCRIPTION
42
43 These methods are available on FS::cust_main objects.
44
45 =head1 METHODS
46
47 =over 4
48
49 =item realtime_cust_payby
50
51 =cut
52
53 sub realtime_cust_payby {
54   my( $self, %options ) = @_;
55
56   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
57
58   $options{amount} = $self->balance unless exists( $options{amount} );
59
60   my @cust_payby = $self->cust_payby('CARD','CHEK');
61                                                    
62   my $error;
63   foreach my $cust_payby (@cust_payby) {
64     $error = $cust_payby->realtime_bop( %options, );
65     last unless $error;
66   }
67
68   #XXX what about the earlier errors?
69
70   $error;
71
72 }
73
74 =item realtime_collect [ OPTION => VALUE ... ]
75
76 Attempt to collect the customer's current balance with a realtime credit 
77 card or electronic check transaction (see realtime_bop() below).
78
79 Returns the result of realtime_bop(): nothing, an error message, or a 
80 hashref of state information for a third-party transaction.
81
82 Available options are: I<method>, I<amount>, I<description>, I<invnum>, I<quiet>, I<paynum_ref>, I<payunique>, I<session_id>, I<pkgnum>
83
84 I<method> is one of: I<CC> or I<ECHECK>.  If none is specified
85 then it is deduced from the customer record.
86
87 If no I<amount> is specified, then the customer balance is used.
88
89 The additional options I<payname>, I<address1>, I<address2>, I<city>, I<state>,
90 I<zip>, I<payinfo> and I<paydate> are also available.  Any of these options,
91 if set, will override the value from the customer record.
92
93 I<description> is a free-text field passed to the gateway.  It defaults to
94 the value defined by the business-onlinepayment-description configuration
95 option, or "Internet services" if that is unset.
96
97 If an I<invnum> is specified, this payment (if successful) is applied to the
98 specified invoice.
99
100 I<apply> will automatically apply a resulting payment.
101
102 I<quiet> can be set true to suppress email decline notices.
103
104 I<paynum_ref> can be set to a scalar reference.  It will be filled in with the
105 resulting paynum, if any.
106
107 I<payunique> is a unique identifier for this payment.
108
109 I<session_id> is a session identifier associated with this payment.
110
111 I<depend_jobnum> allows payment capture to unlock export jobs
112
113 =cut
114
115 # Currently only used by ClientAPI
116 sub realtime_collect {
117   my( $self, %options ) = @_;
118
119   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
120
121   if ( $DEBUG ) {
122     warn "$me realtime_collect:\n";
123     warn "  $_ => $options{$_}\n" foreach keys %options;
124   }
125
126   $options{amount} = $self->balance unless exists( $options{amount} );
127   return '' unless $options{amount} > 0;
128
129   return $self->realtime_bop({%options});
130
131 }
132
133 =item realtime_bop { [ ARG => VALUE ... ] }
134
135 Runs a realtime credit card or ACH (electronic check) transaction
136 via a Business::OnlinePayment realtime gateway.  See
137 L<http://420.am/business-onlinepayment> for supported gateways.
138
139 Required arguments in the hashref are I<amount> and either
140 I<cust_payby> or I<method>, I<payinfo> and (as applicable for method)
141 I<payname>, I<address1>, I<address2>, I<city>, I<state>, I<zip> and I<paydate>.
142
143 Available methods are: I<CC>, I<ECHECK>, or I<PAYPAL>
144
145 Available optional arguments are: I<description>, I<invnum>, I<apply>, I<quiet>, I<paynum_ref>, I<payunique>, I<session_id>
146
147 I<description> is a free-text field passed to the gateway.  It defaults to
148 the value defined by the business-onlinepayment-description configuration
149 option, or "Internet services" if that is unset.
150
151 If an I<invnum> is specified, this payment (if successful) is applied to the
152 specified invoice.  If the customer has exactly one open invoice, that 
153 invoice number will be assumed.  If you don't specify an I<invnum> you might 
154 want to call the B<apply_payments> method or set the I<apply> option.
155
156 I<no_invnum> can be set to true to prevent that default invnum from being set.
157
158 I<apply> can be set to true to run B<apply_payments_and_credits> on success.
159
160 I<no_auto_apply> can be set to true to set that flag on the resulting payment
161 (prevents payment from being applied by B<apply_payments> or B<apply_payments_and_credits>,
162 but will still be applied if I<invnum> exists...use with I<no_invnum> for intended effect.)
163
164 I<quiet> can be set true to surpress email decline notices.
165
166 I<paynum_ref> can be set to a scalar reference.  It will be filled in with the
167 resulting paynum, if any.
168
169 I<payunique> is a unique identifier for this payment.
170
171 I<session_id> is a session identifier associated with this payment.
172
173 I<depend_jobnum> allows payment capture to unlock export jobs
174
175 I<discount_term> attempts to take a discount by prepaying for discount_term.
176 The payment will fail if I<amount> is incorrect for this discount term.
177
178 A direct (Business::OnlinePayment) transaction will return nothing on success,
179 or an error message on failure.
180
181 A third-party transaction will return a hashref containing:
182
183 - popup_url: the URL to which a browser should be redirected to complete 
184   the transaction.
185 - collectitems: an arrayref of name-value pairs to be posted to popup_url.
186 - reference: a reference ID for the transaction, to show the customer.
187
188 (moved from cust_bill) (probably should get realtime_{card,ach,lec} here too)
189
190 =cut
191
192 # some helper routines
193 #
194 # _bop_recurring_billing: Checks whether this payment should have the 
195 # recurring_billing flag used by some B:OP interfaces (IPPay, PlugnPay,
196 # vSecure, etc.). This works in two different modes:
197 # - actual_oncard (default): treat the payment as recurring if the customer
198 #   has made a payment using this card before.
199 # - transaction_is_recur: treat the payment as recurring if the invoice
200 #   being paid has any recurring package charges.
201
202 sub _bop_recurring_billing {
203   my( $self, %opt ) = @_;
204
205   my $method = scalar($conf->config('credit_card-recurring_billing_flag'));
206
207   if ( defined($method) && $method eq 'transaction_is_recur' ) {
208
209     return 1 if $opt{'trans_is_recur'};
210
211   } else {
212
213     # return 1 if the payinfo has been used for another payment
214     return $self->payinfo_used($opt{'payinfo'}); # in payinfo_Mixin
215
216   }
217
218   return 0;
219
220 }
221
222 #can run safely as class method if opt payment_gateway already exists
223 sub _payment_gateway {
224   my ($self, $options) = @_;
225
226   if ( $options->{'fake_gatewaynum'} ) {
227         $options->{payment_gateway} =
228             qsearchs('payment_gateway',
229                       { 'gatewaynum' => $options->{'fake_gatewaynum'}, }
230                     );
231   }
232
233   $options->{payment_gateway} = $self->agent->payment_gateway( %$options )
234     unless exists($options->{payment_gateway});
235
236   $options->{payment_gateway};
237 }
238
239 # not a method!!!
240 sub _bop_auth {
241   my ($options) = @_;
242
243   (
244     'login'    => $options->{payment_gateway}->gateway_username,
245     'password' => $options->{payment_gateway}->gateway_password,
246   );
247 }
248
249 ### not a method!
250 sub _bop_options {
251   my ($options) = @_;
252
253   $options->{payment_gateway}->gatewaynum
254     ? $options->{payment_gateway}->options
255     : @{ $options->{payment_gateway}->get('options') };
256
257 }
258
259 sub _bop_defaults {
260   my ($self, $options) = @_;
261
262   unless ( $options->{'description'} ) {
263     if ( $conf->exists('business-onlinepayment-description') ) {
264       my $dtempl = $conf->config('business-onlinepayment-description');
265
266       my $agent = $self->agent->agent;
267       #$pkgs... not here
268       $options->{'description'} = eval qq("$dtempl");
269     } else {
270       $options->{'description'} = 'Internet services';
271     }
272   }
273
274   # Default invoice number if the customer has exactly one open invoice.
275   unless ( $options->{'invnum'} || $options->{'no_invnum'} ) {
276     $options->{'invnum'} = '';
277     my @open = $self->open_cust_bill;
278     $options->{'invnum'} = $open[0]->invnum if scalar(@open) == 1;
279   }
280
281 }
282
283 # not a method!
284 sub _bop_cust_payby_options {
285   my ($options) = @_;
286   my $cust_payby = $options->{'cust_payby'};
287   if ($cust_payby) {
288
289     $options->{'method'} = FS::payby->payby2bop( $cust_payby->payby );
290
291     if ($cust_payby->payby =~ /^(CARD|DCRD)$/) {
292       # false laziness with cust_payby->check
293       #   which might not have been run yet
294       my( $m, $y );
295       if ( $cust_payby->paydate =~ /^(\d{1,2})[\/\-](\d{2}(\d{2})?)$/ ) {
296         ( $m, $y ) = ( $1, length($2) == 4 ? $2 : "20$2" );
297       } elsif ( $cust_payby->paydate =~ /^19(\d{2})[\/\-](\d{1,2})[\/\-]\d+$/ ) {
298         ( $m, $y ) = ( $2, "19$1" );
299       } elsif ( $cust_payby->paydate =~ /^(20)?(\d{2})[\/\-](\d{1,2})[\/\-]\d+$/ ) {
300         ( $m, $y ) = ( $3, "20$2" );
301       } else {
302         return "Illegal expiration date: ". $cust_payby->paydate;
303       }
304       $m = sprintf('%02d',$m);
305       $options->{paydate} = "$y-$m-01";
306     } else {
307       $options->{paydate} = '';
308     }
309
310     $options->{$_} = $cust_payby->$_() 
311       for qw( payinfo paycvv paymask paystart_month paystart_year 
312               payissue payname paystate paytype payip );
313
314     if ( $cust_payby->locationnum ) {
315       my $cust_location = $cust_payby->cust_location;
316       $options->{$_} = $cust_location->$_() for qw( address1 address2 city state zip );
317     }
318   }
319 }
320
321 # can be called as class method,
322 # but can't load default name/phone fields as class method
323 sub _bop_content {
324   my ($self, $options) = @_;
325   my %content = ();
326
327   my $payip = $options->{'payip'};
328   $content{customer_ip} = $payip if length($payip);
329
330   $content{invoice_number} = $options->{'invnum'}
331     if exists($options->{'invnum'}) && length($options->{'invnum'});
332
333   $content{email_customer} = 
334     (    $conf->exists('business-onlinepayment-email_customer')
335       || $conf->exists('business-onlinepayment-email-override') );
336       
337   my ($payname, $payfirst, $paylast);
338   if ( $options->{payname} && $options->{method} ne 'ECHECK' ) {
339     ($payname = $options->{payname}) =~
340       /^\s*([\w \,\.\-\']*)?\s+([\w\,\.\-\']+)\s*$/
341       or return "Illegal payname $payname";
342     ($payfirst, $paylast) = ($1, $2);
343   } elsif (ref($self)) { # can't set payname if called as class method
344     $payfirst = $self->getfield('first');
345     $paylast = $self->getfield('last');
346     $payname = "$payfirst $paylast";
347   }
348
349   $content{last_name} = $paylast if $paylast;
350   $content{first_name} = $payfirst if $payfirst;
351
352   $content{name} = $payname if $payname;
353
354   $content{address} = $options->{'address1'};
355   my $address2 = $options->{'address2'};
356   $content{address} .= ", ". $address2 if length($address2);
357
358   $content{city} = $options->{'city'};
359   $content{state} = $options->{'state'};
360   $content{zip} = $options->{'zip'};
361   $content{country} = $options->{'country'};
362
363   # can't set phone if called as class method
364   $content{phone} = $self->daytime || $self->night
365     if ref($self);
366
367   my $currency =    $conf->exists('business-onlinepayment-currency')
368                  && $conf->config('business-onlinepayment-currency');
369   $content{currency} = $currency if $currency;
370
371   \%content;
372 }
373
374 # updates payinfo and cust_payby options with token from transaction
375 # can be called as a class method
376 sub _tokenize_card {
377   my ($self,$transaction,$options) = @_;
378   if ( $transaction->can('card_token') 
379        and $transaction->card_token 
380        and !$self->tokenized($options->{'payinfo'})
381   ) {
382     $options->{'payinfo'} = $transaction->card_token;
383     $options->{'cust_payby'}->payinfo($transaction->card_token) if $options->{'cust_payby'};
384     return $transaction->card_token;
385   }
386   return '';
387 }
388
389 my %bop_method2payby = (
390   'CC'     => 'CARD',
391   'ECHECK' => 'CHEK',
392   'PAYPAL' => 'PPAL',
393 );
394
395 sub realtime_bop {
396   my $self = shift;
397
398   confess "Can't call realtime_bop within another transaction ".
399           '($FS::UID::AutoCommit is false)'
400     unless $FS::UID::AutoCommit;
401
402   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
403
404   my $log = FS::Log->new('FS::cust_main::Billing_Realtime::realtime_bop');
405  
406   my %options = ();
407   if (ref($_[0]) eq 'HASH') {
408     %options = %{$_[0]};
409   } else {
410     my ( $method, $amount ) = ( shift, shift );
411     %options = @_;
412     $options{method} = $method;
413     $options{amount} = $amount;
414   }
415
416   # set fields from passed cust_payby
417   _bop_cust_payby_options(\%options);
418
419   # possibly run a separate transaction to tokenize card number,
420   #   so that we never store tokenized card info in cust_pay_pending
421   if (($options{method} eq 'CC') && !$self->tokenized($options{'payinfo'})) {
422     my $token_error = $self->realtime_tokenize(\%options);
423     return $token_error if $token_error;
424     # in theory, all cust_payby will be tokenized during original save,
425     # so we shouldn't get here with opt cust_payby...but just in case...
426     if ($options{'cust_payby'} && $self->tokenized($options{'payinfo'})) {
427       $token_error = $options{'cust_payby'}->replace;
428       return $token_error if $token_error;
429     }
430   }
431
432   ### 
433   # optional credit card surcharge
434   ###
435
436   my $cc_surcharge = 0;
437   my $cc_surcharge_pct = 0;
438   $cc_surcharge_pct = $conf->config('credit-card-surcharge-percentage', $self->agentnum) 
439     if $conf->config('credit-card-surcharge-percentage', $self->agentnum)
440     && $options{method} eq 'CC';
441
442   # always add cc surcharge if called from event 
443   if($options{'cc_surcharge_from_event'} && $cc_surcharge_pct > 0) {
444       $cc_surcharge = $options{'amount'} * $cc_surcharge_pct / 100;
445       $options{'amount'} += $cc_surcharge;
446       $options{'amount'} = sprintf("%.2f", $options{'amount'}); # round (again)?
447   }
448   elsif($cc_surcharge_pct > 0) { # we're called not from event (i.e. from a 
449                                  # payment screen), so consider the given 
450                                  # amount as post-surcharge
451     $cc_surcharge = $options{'amount'} - ($options{'amount'} / ( 1 + $cc_surcharge_pct/100 ));
452   }
453   
454   $cc_surcharge = sprintf("%.2f",$cc_surcharge) if $cc_surcharge > 0;
455   $options{'cc_surcharge'} = $cc_surcharge;
456
457
458   if ( $DEBUG ) {
459     warn "$me realtime_bop (new): $options{method} $options{amount}\n";
460     warn " cc_surcharge = $cc_surcharge\n";
461   }
462   if ( $DEBUG > 2 ) {
463     warn "  $_ => $options{$_}\n" foreach keys %options;
464   }
465
466   return $self->fake_bop(\%options) if $options{'fake'};
467
468   $self->_bop_defaults(\%options);
469
470   return "Missing payinfo"
471     unless $options{'payinfo'};
472
473   ###
474   # set trans_is_recur based on invnum if there is one
475   ###
476
477   my $trans_is_recur = 0;
478   if ( $options{'invnum'} ) {
479
480     my $cust_bill = qsearchs('cust_bill', { 'invnum' => $options{'invnum'} } );
481     die "invnum ". $options{'invnum'}. " not found" unless $cust_bill;
482
483     my @part_pkg =
484       map  { $_->part_pkg }
485       grep { $_ }
486       map  { $_->cust_pkg }
487       $cust_bill->cust_bill_pkg;
488
489     $trans_is_recur = 1
490       if grep { $_->freq ne '0' } @part_pkg;
491
492   }
493
494   ###
495   # select a gateway
496   ###
497
498   my $payment_gateway =  $self->_payment_gateway( \%options );
499   my $namespace = $payment_gateway->gateway_namespace;
500
501   eval "use $namespace";  
502   die $@ if $@;
503
504   ###
505   # check for banned credit card/ACH
506   ###
507
508   my $ban = FS::banned_pay->ban_search(
509     'payby'   => $bop_method2payby{$options{method}},
510     'payinfo' => $options{payinfo},
511   );
512   return "Banned credit card" if $ban && $ban->bantype ne 'warn';
513
514   ###
515   # check for term discount validity
516   ###
517
518   my $discount_term = $options{discount_term};
519   if ( $discount_term ) {
520     my $bill = ($self->cust_bill)[-1]
521       or return "Can't apply a term discount to an unbilled customer";
522     my $plan = FS::discount_plan->new(
523       cust_bill => $bill,
524       months    => $discount_term
525     ) or return "No discount available for term '$discount_term'";
526     
527     if ( $plan->discounted_total != $options{amount} ) {
528       return "Incorrect term prepayment amount (term $discount_term, amount $options{amount}, requires ".$plan->discounted_total.")";
529     }
530   }
531
532   ###
533   # massage data
534   ###
535
536   my $bop_content = $self->_bop_content(\%options);
537   return $bop_content unless ref($bop_content);
538
539   my @invoicing_list = $self->invoicing_list_emailonly;
540   if ( $conf->exists('emailinvoiceautoalways')
541        || $conf->exists('emailinvoiceauto') && ! @invoicing_list
542        || ( $conf->exists('emailinvoiceonly') && ! @invoicing_list ) ) {
543     push @invoicing_list, $self->all_emails;
544   }
545
546   my $email = ($conf->exists('business-onlinepayment-email-override'))
547               ? $conf->config('business-onlinepayment-email-override')
548               : $invoicing_list[0];
549
550   my $paydate = '';
551   my %content = ();
552
553   if ( $namespace eq 'Business::OnlinePayment' ) {
554
555     if ( $options{method} eq 'CC' ) {
556
557       $content{card_number} = $options{payinfo};
558       $paydate = $options{'paydate'};
559       $paydate =~ /^\d{2}(\d{2})[\/\-](\d+)[\/\-]\d+$/;
560       $content{expiration} = "$2/$1";
561
562       $content{cvv2} = $options{'paycvv'}
563         if length($options{'paycvv'});
564
565       my $paystart_month = $options{'paystart_month'};
566       my $paystart_year  = $options{'paystart_year'};
567       $content{card_start} = "$paystart_month/$paystart_year"
568         if $paystart_month && $paystart_year;
569
570       my $payissue       = $options{'payissue'};
571       $content{issue_number} = $payissue if $payissue;
572
573       if ( $self->_bop_recurring_billing(
574              'payinfo'        => $options{'payinfo'},
575              'trans_is_recur' => $trans_is_recur,
576            )
577          )
578       {
579         $content{recurring_billing} = 'YES';
580         $content{acct_code} = 'rebill'
581           if $conf->exists('credit_card-recurring_billing_acct_code');
582       }
583
584     } elsif ( $options{method} eq 'ECHECK' ){
585
586       ( $content{account_number}, $content{routing_code} ) =
587         split('@', $options{payinfo});
588       $content{bank_name} = $options{payname};
589       $content{bank_state} = $options{'paystate'};
590       $content{account_type}= uc($options{'paytype'}) || 'PERSONAL CHECKING';
591
592       $content{company} = $self->company if $self->company;
593
594       if ( $content{account_type} =~ /BUSINESS/i && $self->company ) {
595         $content{account_name} = $self->company;
596       } else {
597         $content{account_name} = $self->getfield('first'). ' '.
598                                  $self->getfield('last');
599       }
600
601       $content{customer_org} = $self->company ? 'B' : 'I';
602       $content{state_id}       = exists($options{'stateid'})
603                                    ? $options{'stateid'}
604                                    : $self->getfield('stateid');
605       $content{state_id_state} = exists($options{'stateid_state'})
606                                    ? $options{'stateid_state'}
607                                    : $self->getfield('stateid_state');
608       $content{customer_ssn} = exists($options{'ss'})
609                                  ? $options{'ss'}
610                                  : $self->ss;
611
612     } else {
613       die "unknown method ". $options{method};
614     }
615
616   } elsif ( $namespace eq 'Business::OnlineThirdPartyPayment' ) {
617     #move along
618   } else {
619     die "unknown namespace $namespace";
620   }
621
622   ###
623   # run transaction(s)
624   ###
625
626   my $balance = exists( $options{'balance'} )
627                   ? $options{'balance'}
628                   : $self->balance;
629
630   warn "claiming mutex on customer ". $self->custnum. "\n" if $DEBUG > 1;
631   $self->select_for_update; #mutex ... just until we get our pending record in
632   warn "obtained mutex on customer ". $self->custnum. "\n" if $DEBUG > 1;
633
634   #the checks here are intended to catch concurrent payments
635   #double-form-submission prevention is taken care of in cust_pay_pending::check
636
637   #check the balance
638   return "The customer's balance has changed; $options{method} transaction aborted."
639     if $self->balance < $balance;
640
641   #also check and make sure there aren't *other* pending payments for this cust
642
643   my @pending = qsearch('cust_pay_pending', {
644     'custnum' => $self->custnum,
645     'status'  => { op=>'!=', value=>'done' } 
646   });
647
648   #for third-party payments only, remove pending payments if they're in the 
649   #'thirdparty' (waiting for customer action) state.
650   if ( $namespace eq 'Business::OnlineThirdPartyPayment' ) {
651     foreach ( grep { $_->status eq 'thirdparty' } @pending ) {
652       my $error = $_->delete;
653       warn "error deleting unfinished third-party payment ".
654           $_->paypendingnum . ": $error\n"
655         if $error;
656     }
657     @pending = grep { $_->status ne 'thirdparty' } @pending;
658   }
659
660   return "A payment is already being processed for this customer (".
661          join(', ', map 'paypendingnum '. $_->paypendingnum, @pending ).
662          "); $options{method} transaction aborted."
663     if scalar(@pending);
664
665   #okay, good to go, if we're a duplicate, cust_pay_pending will kick us out
666
667   my $cust_pay_pending = new FS::cust_pay_pending {
668     'custnum'           => $self->custnum,
669     'paid'              => $options{amount},
670     '_date'             => '',
671     'payby'             => $bop_method2payby{$options{method}},
672     'payinfo'           => $options{payinfo},
673     'paymask'           => $options{paymask},
674     'paydate'           => $paydate,
675     'recurring_billing' => $content{recurring_billing},
676     'pkgnum'            => $options{'pkgnum'},
677     'status'            => 'new',
678     'gatewaynum'        => $payment_gateway->gatewaynum || '',
679     'session_id'        => $options{session_id} || '',
680     'jobnum'            => $options{depend_jobnum} || '',
681   };
682   $cust_pay_pending->payunique( $options{payunique} )
683     if defined($options{payunique}) && length($options{payunique});
684
685   warn "inserting cust_pay_pending record for customer ". $self->custnum. "\n"
686     if $DEBUG > 1;
687   my $cpp_new_err = $cust_pay_pending->insert; #mutex lost when this is inserted
688   return $cpp_new_err if $cpp_new_err;
689
690   warn "inserted cust_pay_pending record for customer ". $self->custnum. "\n"
691     if $DEBUG > 1;
692   warn Dumper($cust_pay_pending) if $DEBUG > 2;
693
694   my( $action1, $action2 ) =
695     split( /\s*\,\s*/, $payment_gateway->gateway_action );
696
697   my $transaction = new $namespace( $payment_gateway->gateway_module,
698                                     _bop_options(\%options),
699                                   );
700
701   $transaction->content(
702     'type'           => $options{method},
703     _bop_auth(\%options),          
704     'action'         => $action1,
705     'description'    => $options{'description'},
706     'amount'         => $options{amount},
707     #'invoice_number' => $options{'invnum'},
708     'customer_id'    => $self->custnum,
709     %$bop_content,
710     'reference'      => $cust_pay_pending->paypendingnum, #for now
711     'callback_url'   => $payment_gateway->gateway_callback_url,
712     'cancel_url'     => $payment_gateway->gateway_cancel_url,
713     'email'          => $email,
714     %content, #after
715   );
716
717   $cust_pay_pending->status('pending');
718   my $cpp_pending_err = $cust_pay_pending->replace;
719   return $cpp_pending_err if $cpp_pending_err;
720
721   warn Dumper($transaction) if $DEBUG > 2;
722
723   unless ( $BOP_TESTING ) {
724     $transaction->test_transaction(1)
725       if $conf->exists('business-onlinepayment-test_transaction');
726     $transaction->submit();
727   } else {
728     if ( $BOP_TESTING_SUCCESS ) {
729       $transaction->is_success(1);
730       $transaction->authorization('fake auth');
731     } else {
732       $transaction->is_success(0);
733       $transaction->error_message('fake failure');
734     }
735   }
736
737   if ( $transaction->is_success() && $namespace eq 'Business::OnlineThirdPartyPayment' ) {
738
739     $cust_pay_pending->status('thirdparty');
740     my $cpp_err = $cust_pay_pending->replace;
741     return { error => $cpp_err } if $cpp_err;
742     return { reference => $cust_pay_pending->paypendingnum,
743              map { $_ => $transaction->$_ } qw ( popup_url collectitems ) };
744
745   } elsif ( $transaction->is_success() && $action2 ) {
746
747     $cust_pay_pending->status('authorized');
748     my $cpp_authorized_err = $cust_pay_pending->replace;
749     return $cpp_authorized_err if $cpp_authorized_err;
750
751     my $auth = $transaction->authorization;
752     my $ordernum = $transaction->can('order_number')
753                    ? $transaction->order_number
754                    : '';
755
756     my $capture =
757       new Business::OnlinePayment( $payment_gateway->gateway_module,
758                                    _bop_options(\%options),
759                                  );
760
761     my %capture = (
762       %content,
763       type           => $options{method},
764       action         => $action2,
765       _bop_auth(\%options),          
766       order_number   => $ordernum,
767       amount         => $options{amount},
768       authorization  => $auth,
769       description    => $options{'description'},
770     );
771
772     foreach my $field (qw( authorization_source_code returned_ACI
773                            transaction_identifier validation_code           
774                            transaction_sequence_num local_transaction_date    
775                            local_transaction_time AVS_result_code          )) {
776       $capture{$field} = $transaction->$field() if $transaction->can($field);
777     }
778
779     $capture->content( %capture );
780
781     $capture->test_transaction(1)
782       if $conf->exists('business-onlinepayment-test_transaction');
783     $capture->submit();
784
785     unless ( $capture->is_success ) {
786       my $e = "Authorization successful but capture failed, custnum #".
787               $self->custnum. ': '.  $capture->result_code.
788               ": ". $capture->error_message;
789       warn $e;
790       return $e;
791     }
792
793   }
794
795   ###
796   # remove paycvv after initial transaction
797   ###
798
799   # compare to FS::cust_main::save_cust_payby - check both to make sure working correctly
800   if ( length($options{'paycvv'})
801        && ! grep { $_ eq cardtype($options{payinfo}) } $conf->config('cvv-save')
802   ) {
803     my $error = $self->remove_cvv_from_cust_payby($options{payinfo});
804     if ( $error ) {
805       $log->critical('Error removing cvv for cust '.$self->custnum.': '.$error);
806       #not returning error, should at least attempt to handle results of an otherwise valid transaction
807       warn "WARNING: error removing cvv: $error\n";
808     }
809   }
810
811   ###
812   # Tokenize
813   ###
814
815   # This block will only run if the B::OP module supports card_token but not the Tokenize transaction;
816   #   if that never happens, we should get rid of it (as it has the potential to store real card numbers on error)
817   if (my $card_token = $self->_tokenize_card($transaction,\%options)) {
818     # cpp will be replaced in _realtime_bop_result
819     $cust_pay_pending->payinfo($card_token);
820     if ($options{'cust_payby'} and my $error = $options{'cust_payby'}->replace) {
821       $log->critical('Error storing token for cust '.$self->custnum.', cust_payby '.$options{'cust_payby'}->custpaybynum.': '.$error);
822       #not returning error, should at least attempt to handle results of an otherwise valid transaction
823       #this leaves real card number in cust_payby, but can't do much else if cust_payby won't replace
824     }
825   }
826
827   ###
828   # result handling
829   ###
830
831   $self->_realtime_bop_result( $cust_pay_pending, $transaction, %options );
832
833 }
834
835 =item fake_bop
836
837 =cut
838
839 sub fake_bop {
840   my $self = shift;
841
842   my %options = ();
843   if (ref($_[0]) eq 'HASH') {
844     %options = %{$_[0]};
845   } else {
846     my ( $method, $amount ) = ( shift, shift );
847     %options = @_;
848     $options{method} = $method;
849     $options{amount} = $amount;
850   }
851   
852   if ( $options{'fake_failure'} ) {
853      return "Error: No error; test failure requested with fake_failure";
854   }
855
856   my $cust_pay = new FS::cust_pay ( {
857      'custnum'  => $self->custnum,
858      'invnum'   => $options{'invnum'},
859      'paid'     => $options{amount},
860      '_date'    => '',
861      'payby'    => $bop_method2payby{$options{method}},
862      'payinfo'  => '4111111111111111',
863      'paydate'  => '2012-05-01',
864      'processor'      => 'FakeProcessor',
865      'auth'           => '54',
866      'order_number'   => '32',
867   } );
868   $cust_pay->payunique( $options{payunique} ) if length($options{payunique});
869
870   if ( $DEBUG ) {
871       warn "fake_bop\n cust_pay: ". Dumper($cust_pay) . "\n options: ";
872       warn "  $_ => $options{$_}\n" foreach keys %options;
873   }
874
875   my $error = $cust_pay->insert($options{'manual'} ? ( 'manual' => 1 ) : () );
876
877   if ( $error ) {
878     $cust_pay->invnum(''); #try again with no specific invnum
879     my $error2 = $cust_pay->insert( $options{'manual'} ?
880                                     ( 'manual' => 1 ) : ()
881                                   );
882     if ( $error2 ) {
883       # gah, even with transactions.
884       my $e = 'WARNING: Card/ACH debited but database not updated - '.
885               "error inserting (fake!) payment: $error2".
886               " (previously tried insert with invnum #$options{'invnum'}" .
887               ": $error )";
888       warn $e;
889       return $e;
890     }
891   }
892
893   if ( $options{'paynum_ref'} ) {
894     ${ $options{'paynum_ref'} } = $cust_pay->paynum;
895   }
896
897   return ''; #no error
898
899 }
900
901
902 # item _realtime_bop_result CUST_PAY_PENDING, BOP_OBJECT [ OPTION => VALUE ... ]
903
904 # Wraps up processing of a realtime credit card or ACH (electronic check)
905 # transaction.
906
907 sub _realtime_bop_result {
908   my( $self, $cust_pay_pending, $transaction, %options ) = @_;
909
910   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
911
912   if ( $DEBUG ) {
913     warn "$me _realtime_bop_result: pending transaction ".
914       $cust_pay_pending->paypendingnum. "\n";
915     warn "  $_ => $options{$_}\n" foreach keys %options;
916   }
917
918   my $payment_gateway = $options{payment_gateway}
919     or return "no payment gateway in arguments to _realtime_bop_result";
920
921   $cust_pay_pending->status($transaction->is_success() ? 'captured' : 'declined');
922   my $cpp_captured_err = $cust_pay_pending->replace; #also saves post-transaction tokenization, if that happens
923   return $cpp_captured_err if $cpp_captured_err;
924
925   if ( $transaction->is_success() ) {
926
927     my $order_number = $transaction->order_number
928       if $transaction->can('order_number');
929
930     my $cust_pay = new FS::cust_pay ( {
931        'custnum'  => $self->custnum,
932        'invnum'   => $options{'invnum'},
933        'paid'     => $cust_pay_pending->paid,
934        '_date'    => '',
935        'payby'    => $cust_pay_pending->payby,
936        'payinfo'  => $options{'payinfo'},
937        'paymask'  => $options{'paymask'} || $cust_pay_pending->paymask,
938        'paydate'  => $cust_pay_pending->paydate,
939        'pkgnum'   => $cust_pay_pending->pkgnum,
940        'discount_term'  => $options{'discount_term'},
941        'gatewaynum'     => ($payment_gateway->gatewaynum || ''),
942        'processor'      => $payment_gateway->gateway_module,
943        'auth'           => $transaction->authorization,
944        'order_number'   => $order_number || '',
945        'no_auto_apply'  => $options{'no_auto_apply'} ? 'Y' : '',
946     } );
947     #doesn't hurt to know, even though the dup check is in cust_pay_pending now
948     $cust_pay->payunique( $options{payunique} )
949       if defined($options{payunique}) && length($options{payunique});
950
951     my $oldAutoCommit = $FS::UID::AutoCommit;
952     local $FS::UID::AutoCommit = 0;
953     my $dbh = dbh;
954
955     #start a transaction, insert the cust_pay and set cust_pay_pending.status to done in a single transction
956
957     my $error = $cust_pay->insert($options{'manual'} ? ( 'manual' => 1 ) : () );
958
959     if ( $error ) {
960       $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
961       $cust_pay->invnum(''); #try again with no specific invnum
962       $cust_pay->paynum('');
963       my $error2 = $cust_pay->insert( $options{'manual'} ?
964                                       ( 'manual' => 1 ) : ()
965                                     );
966       if ( $error2 ) {
967         # gah.  but at least we have a record of the state we had to abort in
968         # from cust_pay_pending now.
969         $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
970         my $e = "WARNING: $options{method} captured but payment not recorded -".
971                 " error inserting payment (". $payment_gateway->gateway_module.
972                 "): $error2".
973                 " (previously tried insert with invnum #$options{'invnum'}" .
974                 ": $error ) - pending payment saved as paypendingnum ".
975                 $cust_pay_pending->paypendingnum. "\n";
976         warn $e;
977         return $e;
978       }
979     }
980
981     my $jobnum = $cust_pay_pending->jobnum;
982     if ( $jobnum ) {
983        my $placeholder = qsearchs( 'queue', { 'jobnum' => $jobnum } );
984       
985        unless ( $placeholder ) {
986          $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
987          my $e = "WARNING: $options{method} captured but job $jobnum not ".
988              "found for paypendingnum ". $cust_pay_pending->paypendingnum. "\n";
989          warn $e;
990          return $e;
991        }
992
993        $error = $placeholder->delete;
994
995        if ( $error ) {
996          $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
997          my $e = "WARNING: $options{method} captured but could not delete ".
998               "job $jobnum for paypendingnum ".
999               $cust_pay_pending->paypendingnum. ": $error\n";
1000          warn $e;
1001          return $e;
1002        }
1003
1004        $cust_pay_pending->set('jobnum','');
1005
1006     }
1007     
1008     if ( $options{'paynum_ref'} ) {
1009       ${ $options{'paynum_ref'} } = $cust_pay->paynum;
1010     }
1011
1012     $cust_pay_pending->status('done');
1013     $cust_pay_pending->statustext('captured');
1014     $cust_pay_pending->paynum($cust_pay->paynum);
1015     my $cpp_done_err = $cust_pay_pending->replace;
1016
1017     if ( $cpp_done_err ) {
1018
1019       $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
1020       my $e = "WARNING: $options{method} captured but payment not recorded - ".
1021               "error updating status for paypendingnum ".
1022               $cust_pay_pending->paypendingnum. ": $cpp_done_err \n";
1023       warn $e;
1024       return $e;
1025
1026     } else {
1027
1028       $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1029
1030       if ( $options{'apply'} ) {
1031         my $apply_error = $self->apply_payments_and_credits;
1032         if ( $apply_error ) {
1033           warn "WARNING: error applying payment: $apply_error\n";
1034           #but we still should return no error cause the payment otherwise went
1035           #through...
1036         }
1037       }
1038
1039       # have a CC surcharge portion --> one-time charge
1040       if ( $options{'cc_surcharge'} > 0 ) { 
1041             # XXX: this whole block needs to be in a transaction?
1042
1043           my $invnum;
1044           $invnum = $options{'invnum'} if $options{'invnum'};
1045           unless ( $invnum ) { # probably from a payment screen
1046              # do we have any open invoices? pick earliest
1047              # uses the fact that cust_main->cust_bill sorts by date ascending
1048              my @open = $self->open_cust_bill;
1049              $invnum = $open[0]->invnum if scalar(@open);
1050           }
1051             
1052           unless ( $invnum ) {  # still nothing? pick last closed invoice
1053              # again uses fact that cust_main->cust_bill sorts by date ascending
1054              my @closed = $self->cust_bill;
1055              $invnum = $closed[$#closed]->invnum if scalar(@closed);
1056           }
1057
1058           unless ( $invnum ) {
1059             # XXX: unlikely case - pre-paying before any invoices generated
1060             # what it should do is create a new invoice and pick it
1061                 warn 'CC SURCHARGE AND NO INVOICES PICKED TO APPLY IT!';
1062                 return '';
1063           }
1064
1065           my $cust_pkg;
1066           my $charge_error = $self->charge({
1067                                     'amount'    => $options{'cc_surcharge'},
1068                                     'pkg'       => 'Credit Card Surcharge',
1069                                     'setuptax'  => 'Y',
1070                                     'cust_pkg_ref' => \$cust_pkg,
1071                                 });
1072           if($charge_error) {
1073                 warn 'Unable to add CC surcharge cust_pkg';
1074                 return '';
1075           }
1076
1077           $cust_pkg->setup(time);
1078           my $cp_error = $cust_pkg->replace;
1079           if($cp_error) {
1080               warn 'Unable to set setup time on cust_pkg for cc surcharge';
1081             # but keep going...
1082           }
1083                                     
1084           my $cust_bill = qsearchs('cust_bill', { 'invnum' => $invnum });
1085           unless ( $cust_bill ) {
1086               warn "race condition + invoice deletion just happened";
1087               return '';
1088           }
1089
1090           my $grand_error = 
1091             $cust_bill->add_cc_surcharge($cust_pkg->pkgnum,$options{'cc_surcharge'});
1092
1093           warn "cannot add CC surcharge to invoice #$invnum: $grand_error"
1094             if $grand_error;
1095       }
1096
1097       return ''; #no error
1098
1099     }
1100
1101   } else {
1102
1103     my $perror = $transaction->error_message;
1104     #$payment_gateway->gateway_module. " error: ".
1105     # removed for conciseness
1106
1107     my $jobnum = $cust_pay_pending->jobnum;
1108     if ( $jobnum ) {
1109        my $placeholder = qsearchs( 'queue', { 'jobnum' => $jobnum } );
1110       
1111        if ( $placeholder ) {
1112          my $error = $placeholder->depended_delete;
1113          $error ||= $placeholder->delete;
1114          $cust_pay_pending->set('jobnum','');
1115          warn "error removing provisioning jobs after declined paypendingnum ".
1116            $cust_pay_pending->paypendingnum. ": $error\n" if $error;
1117        } else {
1118          my $e = "error finding job $jobnum for declined paypendingnum ".
1119               $cust_pay_pending->paypendingnum. "\n";
1120          warn $e;
1121        }
1122
1123     }
1124     
1125     unless ( $transaction->error_message ) {
1126
1127       my $t_response;
1128       if ( $transaction->can('response_page') ) {
1129         $t_response = {
1130                         'page'    => ( $transaction->can('response_page')
1131                                          ? $transaction->response_page
1132                                          : ''
1133                                      ),
1134                         'code'    => ( $transaction->can('response_code')
1135                                          ? $transaction->response_code
1136                                          : ''
1137                                      ),
1138                         'headers' => ( $transaction->can('response_headers')
1139                                          ? $transaction->response_headers
1140                                          : ''
1141                                      ),
1142                       };
1143       } else {
1144         $t_response .=
1145           "No additional debugging information available for ".
1146             $payment_gateway->gateway_module;
1147       }
1148
1149       $perror .= "No error_message returned from ".
1150                    $payment_gateway->gateway_module. " -- ".
1151                  ( ref($t_response) ? Dumper($t_response) : $t_response );
1152
1153     }
1154
1155     if ( !$options{'quiet'} && !$realtime_bop_decline_quiet
1156          && $conf->exists('emaildecline', $self->agentnum)
1157          && grep { $_ ne 'POST' } $self->invoicing_list
1158          && ! grep { $transaction->error_message =~ /$_/ }
1159                    $conf->config('emaildecline-exclude', $self->agentnum)
1160     ) {
1161
1162       # Send a decline alert to the customer.
1163       my $msgnum = $conf->config('decline_msgnum', $self->agentnum);
1164       my $error = '';
1165       if ( $msgnum ) {
1166         # include the raw error message in the transaction state
1167         $cust_pay_pending->setfield('error', $transaction->error_message);
1168         my $msg_template = qsearchs('msg_template', { msgnum => $msgnum });
1169         $error = $msg_template->send( 'cust_main' => $self,
1170                                       'object'    => $cust_pay_pending );
1171       }
1172
1173
1174       $perror .= " (also received error sending decline notification: $error)"
1175         if $error;
1176
1177     }
1178
1179     $cust_pay_pending->status('done');
1180     $cust_pay_pending->statustext($perror);
1181     #'declined:': no, that's failure_status
1182     if ( $transaction->can('failure_status') ) {
1183       $cust_pay_pending->failure_status( $transaction->failure_status );
1184     }
1185     my $cpp_done_err = $cust_pay_pending->replace;
1186     if ( $cpp_done_err ) {
1187       my $e = "WARNING: $options{method} declined but pending payment not ".
1188               "resolved - error updating status for paypendingnum ".
1189               $cust_pay_pending->paypendingnum. ": $cpp_done_err \n";
1190       warn $e;
1191       $perror = "$e ($perror)";
1192     }
1193
1194     return $perror;
1195   }
1196
1197 }
1198
1199 =item realtime_botpp_capture CUST_PAY_PENDING [ OPTION => VALUE ... ]
1200
1201 Verifies successful third party processing of a realtime credit card or
1202 ACH (electronic check) transaction via a
1203 Business::OnlineThirdPartyPayment realtime gateway.  See
1204 L<http://420.am/business-onlinethirdpartypayment> for supported gateways.
1205
1206 Available options are: I<description>, I<invnum>, I<quiet>, I<paynum_ref>, I<payunique>
1207
1208 The additional options I<payname>, I<city>, I<state>,
1209 I<zip>, I<payinfo> and I<paydate> are also available.  Any of these options,
1210 if set, will override the value from the customer record.
1211
1212 I<description> is a free-text field passed to the gateway.  It defaults to
1213 "Internet services".
1214
1215 If an I<invnum> is specified, this payment (if successful) is applied to the
1216 specified invoice.  If you don't specify an I<invnum> you might want to
1217 call the B<apply_payments> method.
1218
1219 I<quiet> can be set true to surpress email decline notices.
1220
1221 I<paynum_ref> can be set to a scalar reference.  It will be filled in with the
1222 resulting paynum, if any.
1223
1224 I<payunique> is a unique identifier for this payment.
1225
1226 Returns a hashref containing elements bill_error (which will be undefined
1227 upon success) and session_id of any associated session.
1228
1229 =cut
1230
1231 sub realtime_botpp_capture {
1232   my( $self, $cust_pay_pending, %options ) = @_;
1233
1234   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
1235
1236   if ( $DEBUG ) {
1237     warn "$me realtime_botpp_capture: pending transaction $cust_pay_pending\n";
1238     warn "  $_ => $options{$_}\n" foreach keys %options;
1239   }
1240
1241   eval "use Business::OnlineThirdPartyPayment";  
1242   die $@ if $@;
1243
1244   ###
1245   # select the gateway
1246   ###
1247
1248   my $method = FS::payby->payby2bop($cust_pay_pending->payby);
1249
1250   my $payment_gateway;
1251   my $gatewaynum = $cust_pay_pending->getfield('gatewaynum');
1252   $payment_gateway = $gatewaynum ? qsearchs( 'payment_gateway',
1253                 { gatewaynum => $gatewaynum }
1254               )
1255     : $self->agent->payment_gateway( 'method' => $method,
1256                                      # 'invnum'  => $cust_pay_pending->invnum,
1257                                      # 'payinfo' => $cust_pay_pending->payinfo,
1258                                    );
1259
1260   $options{payment_gateway} = $payment_gateway; # for the helper subs
1261
1262   ###
1263   # massage data
1264   ###
1265
1266   my @invoicing_list = $self->invoicing_list_emailonly;
1267   if ( $conf->exists('emailinvoiceautoalways')
1268        || $conf->exists('emailinvoiceauto') && ! @invoicing_list
1269        || ( $conf->exists('emailinvoiceonly') && ! @invoicing_list ) ) {
1270     push @invoicing_list, $self->all_emails;
1271   }
1272
1273   my $email = ($conf->exists('business-onlinepayment-email-override'))
1274               ? $conf->config('business-onlinepayment-email-override')
1275               : $invoicing_list[0];
1276
1277   my %content = ();
1278
1279   $content{email_customer} = 
1280     (    $conf->exists('business-onlinepayment-email_customer')
1281       || $conf->exists('business-onlinepayment-email-override') );
1282       
1283   ###
1284   # run transaction(s)
1285   ###
1286
1287   my $transaction =
1288     new Business::OnlineThirdPartyPayment( $payment_gateway->gateway_module,
1289                                            _bop_options(\%options),
1290                                          );
1291
1292   $transaction->reference({ %options }); 
1293
1294   $transaction->content(
1295     'type'           => $method,
1296     _bop_auth(\%options),
1297     'action'         => 'Post Authorization',
1298     'description'    => $options{'description'},
1299     'amount'         => $cust_pay_pending->paid,
1300     #'invoice_number' => $options{'invnum'},
1301     'customer_id'    => $self->custnum,
1302     'reference'      => $cust_pay_pending->paypendingnum,
1303     'email'          => $email,
1304     'phone'          => $self->daytime || $self->night,
1305     %content, #after
1306     # plus whatever is required for bogus capture avoidance
1307   );
1308
1309   $transaction->submit();
1310
1311   my $error =
1312     $self->_realtime_bop_result( $cust_pay_pending, $transaction, %options );
1313
1314   if ( $options{'apply'} ) {
1315     my $apply_error = $self->apply_payments_and_credits;
1316     if ( $apply_error ) {
1317       warn "WARNING: error applying payment: $apply_error\n";
1318     }
1319   }
1320
1321   return {
1322     bill_error => $error,
1323     session_id => $cust_pay_pending->session_id,
1324   }
1325
1326 }
1327
1328 =item default_payment_gateway
1329
1330 DEPRECATED -- use agent->payment_gateway
1331
1332 =cut
1333
1334 sub default_payment_gateway {
1335   my( $self, $method ) = @_;
1336
1337   die "Real-time processing not enabled\n"
1338     unless $conf->exists('business-onlinepayment');
1339
1340   #warn "default_payment_gateway deprecated -- use agent->payment_gateway\n";
1341
1342   #load up config
1343   my $bop_config = 'business-onlinepayment';
1344   $bop_config .= '-ach'
1345     if $method =~ /^(ECHECK|CHEK)$/ && $conf->exists($bop_config. '-ach');
1346   my ( $processor, $login, $password, $action, @bop_options ) =
1347     $conf->config($bop_config);
1348   $action ||= 'normal authorization';
1349   pop @bop_options if scalar(@bop_options) % 2 && $bop_options[-1] =~ /^\s*$/;
1350   die "No real-time processor is enabled - ".
1351       "did you set the business-onlinepayment configuration value?\n"
1352     unless $processor;
1353
1354   ( $processor, $login, $password, $action, @bop_options )
1355 }
1356
1357 =item realtime_refund_bop METHOD [ OPTION => VALUE ... ]
1358
1359 Refunds a realtime credit card or ACH (electronic check) transaction
1360 via a Business::OnlinePayment realtime gateway.  See
1361 L<http://420.am/business-onlinepayment> for supported gateways.
1362
1363 Available methods are: I<CC> or I<ECHECK>
1364
1365 Available options are: I<amount>, I<reasonnum>, I<paynum>, I<paydate>
1366
1367 Most gateways require a reference to an original payment transaction to refund,
1368 so you probably need to specify a I<paynum>.
1369
1370 I<amount> defaults to the original amount of the payment if not specified.
1371
1372 I<reasonnum> specified an existing refund reason for the refund
1373
1374 I<paydate> specifies the expiration date for a credit card overriding the
1375 value from the customer record or the payment record. Specified as yyyy-mm-dd
1376
1377 Implementation note: If I<amount> is unspecified or equal to the amount of the
1378 orignal payment, first an attempt is made to "void" the transaction via
1379 the gateway (to cancel a not-yet settled transaction) and then if that fails,
1380 the normal attempt is made to "refund" ("credit") the transaction via the
1381 gateway is attempted. No attempt to "void" the transaction is made if the 
1382 gateway has introspection data and doesn't support void.
1383
1384 #The additional options I<payname>, I<address1>, I<address2>, I<city>, I<state>,
1385 #I<zip>, I<payinfo> and I<paydate> are also available.  Any of these options,
1386 #if set, will override the value from the customer record.
1387
1388 #If an I<invnum> is specified, this payment (if successful) is applied to the
1389 #specified invoice.  If you don't specify an I<invnum> you might want to
1390 #call the B<apply_payments> method.
1391
1392 =cut
1393
1394 #some false laziness w/realtime_bop, not enough to make it worth merging
1395 #but some useful small subs should be pulled out
1396 sub realtime_refund_bop {
1397   my $self = shift;
1398
1399   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
1400
1401   my %options = ();
1402   if (ref($_[0]) eq 'HASH') {
1403     %options = %{$_[0]};
1404   } else {
1405     my $method = shift;
1406     %options = @_;
1407     $options{method} = $method;
1408   }
1409
1410   if ( $DEBUG ) {
1411     warn "$me realtime_refund_bop (new): $options{method} refund\n";
1412     warn "  $_ => $options{$_}\n" foreach keys %options;
1413   }
1414
1415   return "No reason specified" unless $options{'reasonnum'} =~ /^\d+$/;
1416
1417   my %content = ();
1418
1419   ###
1420   # look up the original payment and optionally a gateway for that payment
1421   ###
1422
1423   my $cust_pay = '';
1424   my $amount = $options{'amount'};
1425
1426   my( $processor, $login, $password, @bop_options, $namespace ) ;
1427   my( $auth, $order_number ) = ( '', '', '' );
1428   my $gatewaynum = '';
1429
1430   if ( $options{'paynum'} ) {
1431
1432     warn "  paynum: $options{paynum}\n" if $DEBUG > 1;
1433     $cust_pay = qsearchs('cust_pay', { paynum=>$options{'paynum'} } )
1434       or return "Unknown paynum $options{'paynum'}";
1435     $amount ||= $cust_pay->paid;
1436
1437     my @cust_bill_pay = qsearch('cust_bill_pay', { paynum=>$cust_pay->paynum });
1438     $content{'invoice_number'} = $cust_bill_pay[0]->invnum if @cust_bill_pay;
1439
1440     if ( $cust_pay->get('processor') ) {
1441       ($gatewaynum, $processor, $auth, $order_number) =
1442       (
1443         $cust_pay->gatewaynum,
1444         $cust_pay->processor,
1445         $cust_pay->auth,
1446         $cust_pay->order_number,
1447       );
1448     } else {
1449       # this payment wasn't upgraded, which probably means this won't work,
1450       # but try it anyway
1451       $cust_pay->paybatch =~ /^((\d+)\-)?(\w+):\s*([\w\-\/ ]*)(:([\w\-]+))?$/
1452         or return "Can't parse paybatch for paynum $options{'paynum'}: ".
1453                   $cust_pay->paybatch;
1454       ( $gatewaynum, $processor, $auth, $order_number ) = ( $2, $3, $4, $6 );
1455     }
1456
1457     my $payment_gateway;
1458     if ( $gatewaynum ) { #gateway for the payment to be refunded
1459
1460       $payment_gateway =
1461         qsearchs('payment_gateway', { 'gatewaynum' => $gatewaynum } );
1462       die "payment gateway $gatewaynum not found"
1463         unless $payment_gateway;
1464
1465       $processor   = $payment_gateway->gateway_module;
1466       $login       = $payment_gateway->gateway_username;
1467       $password    = $payment_gateway->gateway_password;
1468       $namespace   = $payment_gateway->gateway_namespace;
1469       @bop_options = $payment_gateway->options;
1470
1471     } else { #try the default gateway
1472
1473       my $conf_processor;
1474       $payment_gateway =
1475         $self->agent->payment_gateway('method' => $options{method});
1476
1477       ( $conf_processor, $login, $password, $namespace ) =
1478         map { my $method = "gateway_$_"; $payment_gateway->$method }
1479           qw( module username password namespace );
1480
1481       @bop_options = $payment_gateway->gatewaynum
1482                        ? $payment_gateway->options
1483                        : @{ $payment_gateway->get('options') };
1484       my %bop_options = @bop_options;
1485
1486       return "processor of payment $options{'paynum'} $processor does not".
1487              " match default processor $conf_processor"
1488         unless ($processor eq $conf_processor)
1489             || (($conf_processor eq 'CardFortress') && ($processor eq $bop_options{'gateway'}));
1490
1491       $processor = $conf_processor;
1492
1493     }
1494
1495     # if gateway has switched to CardFortress but token_check hasn't run yet,
1496     # tokenize just this record now, so that token gets passed/set appropriately
1497     if ($cust_pay->payby eq 'CARD' && !$cust_pay->tokenized) {
1498       my %tokenopts = (
1499         'payment_gateway' => $payment_gateway,
1500         'method'          => 'CC',
1501         'payinfo'         => $cust_pay->payinfo,
1502         'paydate'         => $cust_pay->paydate,
1503       );
1504       my $error = $self->realtime_tokenize(\%tokenopts); # no-op unless gateway can tokenize
1505       if ($self->tokenized($tokenopts{'payinfo'})) { # implies no error
1506         warn "  tokenizing cust_pay\n" if $DEBUG > 1;
1507         $cust_pay->payinfo($tokenopts{'payinfo'});
1508         $error = $cust_pay->replace;
1509       }
1510       return $error if $error;
1511     }
1512
1513   } else { # didn't specify a paynum, so look for agent gateway overrides
1514            # like a normal transaction 
1515  
1516     my $payment_gateway =
1517       $self->agent->payment_gateway( 'method'  => $options{method} );
1518     my( $processor, $login, $password, $namespace ) =
1519       map { my $method = "gateway_$_"; $payment_gateway->$method }
1520         qw( module username password namespace );
1521
1522     my @bop_options = $payment_gateway->gatewaynum
1523                         ? $payment_gateway->options
1524                         : @{ $payment_gateway->get('options') };
1525
1526   }
1527   return "neither amount nor paynum specified" unless $amount;
1528
1529   eval "use $namespace";  
1530   die $@ if $@;
1531
1532   %content = (
1533     %content,
1534     'type'           => $options{method},
1535     'login'          => $login,
1536     'password'       => $password,
1537     'order_number'   => $order_number,
1538     'amount'         => $amount,
1539   );
1540   $content{authorization} = $auth
1541     if length($auth); #echeck/ACH transactions have an order # but no auth
1542                       #(at least with authorize.net)
1543
1544   my $currency =    $conf->exists('business-onlinepayment-currency')
1545                  && $conf->config('business-onlinepayment-currency');
1546   $content{currency} = $currency if $currency;
1547
1548   my $disable_void_after;
1549   if ($conf->exists('disable_void_after')
1550       && $conf->config('disable_void_after') =~ /^(\d+)$/) {
1551     $disable_void_after = $1;
1552   }
1553
1554   #first try void if applicable
1555   my $void = new Business::OnlinePayment( $processor, @bop_options );
1556
1557   my $tryvoid = 1;
1558   if ($void->can('info')) {
1559       my $paytype = '';
1560       $paytype = 'ECHECK' if $cust_pay && $cust_pay->payby eq 'CHEK';
1561       $paytype = 'CC' if $cust_pay && $cust_pay->payby eq 'CARD';
1562       my %supported_actions = $void->info('supported_actions');
1563       $tryvoid = 0 
1564         if ( %supported_actions && $paytype 
1565                 && defined($supported_actions{$paytype}) 
1566                 && !grep{ $_ eq 'Void' } @{$supported_actions{$paytype}} );
1567   }
1568
1569   if ( $cust_pay && $cust_pay->paid == $amount
1570     && (
1571       ( not defined($disable_void_after) )
1572       || ( time < ($cust_pay->_date + $disable_void_after ) )
1573     )
1574     && $tryvoid
1575   ) {
1576     warn "  attempting void\n" if $DEBUG > 1;
1577     if ( $void->can('info') ) {
1578       if ( $cust_pay->payby eq 'CARD'
1579            && $void->info('CC_void_requires_card') )
1580       {
1581         $content{'card_number'} = $cust_pay->payinfo;
1582       } elsif ( $cust_pay->payby eq 'CHEK'
1583                 && $void->info('ECHECK_void_requires_account') )
1584       {
1585         ( $content{'account_number'}, $content{'routing_code'} ) =
1586           split('@', $cust_pay->payinfo);
1587         $content{'name'} = $self->get('first'). ' '. $self->get('last');
1588       }
1589     }
1590     if ( $cust_pay->payby eq 'CARD'
1591          && !$content{'card_number'}
1592          && $cust_pay->tokenized
1593     ) {
1594       $content{'card_token'} = $cust_pay->payinfo;
1595     }
1596     $void->content( 'action' => 'void', %content );
1597     $void->test_transaction(1)
1598       if $conf->exists('business-onlinepayment-test_transaction');
1599     $void->submit();
1600     if ( $void->is_success ) {
1601       # specified as a refund reason, but now we want a payment void reason
1602       # extract just the reason text, let cust_pay::void handle new_or_existing
1603       my $reason = qsearchs('reason',{ 'reasonnum' => $options{'reasonnum'} });
1604       my $error;
1605       $error = 'Reason could not be loaded' unless $reason;      
1606       $error = $cust_pay->void($reason->reason) unless $error;
1607       if ( $error ) {
1608         # gah, even with transactions.
1609         my $e = 'WARNING: Card/ACH voided but database not updated - '.
1610                 "error voiding payment: $error";
1611         warn $e;
1612         return $e;
1613       }
1614       warn "  void successful\n" if $DEBUG > 1;
1615       return '';
1616     }
1617   }
1618
1619   warn "  void unsuccessful, trying refund\n"
1620     if $DEBUG > 1;
1621
1622   #massage data
1623   my $address = $self->address1;
1624   $address .= ", ". $self->address2 if $self->address2;
1625
1626   my($payname, $payfirst, $paylast);
1627   if ( $self->payname && $options{method} ne 'ECHECK' ) {
1628     $payname = $self->payname;
1629     $payname =~ /^\s*([\w \,\.\-\']*)?\s+([\w\,\.\-\']+)\s*$/
1630       or return "Illegal payname $payname";
1631     ($payfirst, $paylast) = ($1, $2);
1632   } else {
1633     $payfirst = $self->getfield('first');
1634     $paylast = $self->getfield('last');
1635     $payname =  "$payfirst $paylast";
1636   }
1637
1638   my @invoicing_list = $self->invoicing_list_emailonly;
1639   if ( $conf->exists('emailinvoiceautoalways')
1640        || $conf->exists('emailinvoiceauto') && ! @invoicing_list
1641        || ( $conf->exists('emailinvoiceonly') && ! @invoicing_list ) ) {
1642     push @invoicing_list, $self->all_emails;
1643   }
1644
1645   my $email = ($conf->exists('business-onlinepayment-email-override'))
1646               ? $conf->config('business-onlinepayment-email-override')
1647               : $invoicing_list[0];
1648
1649   my $payip = exists($options{'payip'})
1650                 ? $options{'payip'}
1651                 : $self->payip;
1652   $content{customer_ip} = $payip
1653     if length($payip);
1654
1655   my $payinfo = '';
1656   my $paymask = ''; # for refund record
1657   if ( $options{method} eq 'CC' ) {
1658
1659     if ( $cust_pay ) {
1660       $content{card_number} = $payinfo = $cust_pay->payinfo;
1661       $paymask = $cust_pay->paymask;
1662       (exists($options{'paydate'}) ? $options{'paydate'} : $cust_pay->paydate)
1663         =~ /^\d{2}(\d{2})[\/\-](\d+)[\/\-]\d+$/ &&
1664         ($content{expiration} = "$2/$1");  # where available
1665     } else {
1666       # this really needs a better cleanup
1667       die "Refund without paynum not supported";
1668 #      $content{card_number} = $payinfo = $self->payinfo;
1669 #      (exists($options{'paydate'}) ? $options{'paydate'} : $self->paydate)
1670 #        =~ /^\d{2}(\d{2})[\/\-](\d+)[\/\-]\d+$/;
1671 #      $content{expiration} = "$2/$1";
1672     }
1673
1674   } elsif ( $options{method} eq 'ECHECK' ) {
1675
1676     if ( $cust_pay ) {
1677       $payinfo = $cust_pay->payinfo;
1678     } else {
1679       $payinfo = $self->payinfo;
1680     } 
1681     ( $content{account_number}, $content{routing_code} )= split('@', $payinfo );
1682     $content{bank_name} = $self->payname;
1683     $content{account_type} = 'CHECKING';
1684     $content{account_name} = $payname;
1685     $content{customer_org} = $self->company ? 'B' : 'I';
1686     $content{customer_ssn} = $self->ss;
1687
1688   }
1689
1690   #then try refund
1691   my $refund = new Business::OnlinePayment( $processor, @bop_options );
1692   my %sub_content = $refund->content(
1693     'action'         => 'credit',
1694     'customer_id'    => $self->custnum,
1695     'last_name'      => $paylast,
1696     'first_name'     => $payfirst,
1697     'name'           => $payname,
1698     'address'        => $address,
1699     'city'           => $self->city,
1700     'state'          => $self->state,
1701     'zip'            => $self->zip,
1702     'country'        => $self->country,
1703     'email'          => $email,
1704     'phone'          => $self->daytime || $self->night,
1705     %content, #after
1706   );
1707   warn join('', map { "  $_ => $sub_content{$_}\n" } keys %sub_content )
1708     if $DEBUG > 1;
1709   $refund->test_transaction(1)
1710     if $conf->exists('business-onlinepayment-test_transaction');
1711   $refund->submit();
1712
1713   return "$processor error: ". $refund->error_message
1714     unless $refund->is_success();
1715
1716   $order_number = $refund->order_number if $refund->can('order_number');
1717
1718   # change this to just use $cust_pay->delete_cust_bill_pay?
1719   while ( $cust_pay && $cust_pay->unapplied < $amount ) {
1720     my @cust_bill_pay = $cust_pay->cust_bill_pay;
1721     last unless @cust_bill_pay;
1722     my $cust_bill_pay = pop @cust_bill_pay;
1723     my $error = $cust_bill_pay->delete;
1724     last if $error;
1725   }
1726
1727   my $cust_refund = new FS::cust_refund ( {
1728     'custnum'  => $self->custnum,
1729     'paynum'   => $options{'paynum'},
1730     'source_paynum' => $options{'paynum'},
1731     'refund'   => $amount,
1732     '_date'    => '',
1733     'payby'    => $bop_method2payby{$options{method}},
1734     'payinfo'  => $payinfo,
1735     'paymask'  => $paymask,
1736     'reasonnum'     => $options{'reasonnum'},
1737     'gatewaynum'    => $gatewaynum, # may be null
1738     'processor'     => $processor,
1739     'auth'          => $refund->authorization,
1740     'order_number'  => $order_number,
1741   } );
1742   my $error = $cust_refund->insert;
1743   if ( $error ) {
1744     $cust_refund->paynum(''); #try again with no specific paynum
1745     $cust_refund->source_paynum('');
1746     my $error2 = $cust_refund->insert;
1747     if ( $error2 ) {
1748       # gah, even with transactions.
1749       my $e = 'WARNING: Card/ACH refunded but database not updated - '.
1750               "error inserting refund ($processor): $error2".
1751               " (previously tried insert with paynum #$options{'paynum'}" .
1752               ": $error )";
1753       warn $e;
1754       return $e;
1755     }
1756   }
1757
1758   ''; #no error
1759
1760 }
1761
1762 =item realtime_verify_bop [ OPTION => VALUE ... ]
1763
1764 Runs an authorization-only transaction for $1 against this credit card (if
1765 successful, immediatly reverses the authorization).
1766
1767 Returns the empty string if the authorization was sucessful, or an error
1768 message otherwise.
1769
1770 Option I<cust_payby> should be passed, even if it's not yet been inserted.
1771 Object will be tokenized if possible, but that change will not be
1772 updated in database (must be inserted/replaced afterwards.)
1773
1774 Currently only succeeds for Business::OnlinePayment CC transactions.
1775
1776 =cut
1777
1778 #some false laziness w/realtime_bop and realtime_refund_bop, not enough to make
1779 #it worth merging but some useful small subs should be pulled out
1780 sub realtime_verify_bop {
1781   my $self = shift;
1782
1783   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
1784   my $log = FS::Log->new('FS::cust_main::Billing_Realtime::realtime_verify_bop');
1785
1786   my %options = ();
1787   if (ref($_[0]) eq 'HASH') {
1788     %options = %{$_[0]};
1789   } else {
1790     %options = @_;
1791   }
1792
1793   if ( $DEBUG ) {
1794     warn "$me realtime_verify_bop\n";
1795     warn "  $_ => $options{$_}\n" foreach keys %options;
1796   }
1797
1798   # set fields from passed cust_payby
1799   return "No cust_payby" unless $options{'cust_payby'};
1800   _bop_cust_payby_options(\%options);
1801
1802   # possibly run a separate transaction to tokenize card number,
1803   #   so that we never store tokenized card info in cust_pay_pending
1804   if (($options{method} eq 'CC') && !$self->tokenized($options{'payinfo'})) {
1805     my $token_error = $self->realtime_tokenize(\%options);
1806     return $token_error if $token_error;
1807     #important that we not replace cust_payby here,
1808     #because cust_payby->replace uses realtime_verify_bop!
1809   }
1810
1811   ###
1812   # select a gateway
1813   ###
1814
1815   my $payment_gateway =  $self->_payment_gateway( \%options );
1816   my $namespace = $payment_gateway->gateway_namespace;
1817
1818   eval "use $namespace";  
1819   die $@ if $@;
1820
1821   ###
1822   # check for banned credit card/ACH
1823   ###
1824
1825   my $ban = FS::banned_pay->ban_search(
1826     'payby'   => $bop_method2payby{'CC'},
1827     'payinfo' => $options{payinfo},
1828   );
1829   return "Banned credit card" if $ban && $ban->bantype ne 'warn';
1830
1831   ###
1832   # massage data
1833   ###
1834
1835   my $bop_content = $self->_bop_content(\%options);
1836   return $bop_content unless ref($bop_content);
1837
1838   my @invoicing_list = $self->invoicing_list_emailonly;
1839   if ( $conf->exists('emailinvoiceautoalways')
1840        || $conf->exists('emailinvoiceauto') && ! @invoicing_list
1841        || ( $conf->exists('emailinvoiceonly') && ! @invoicing_list ) ) {
1842     push @invoicing_list, $self->all_emails;
1843   }
1844
1845   my $email = ($conf->exists('business-onlinepayment-email-override'))
1846               ? $conf->config('business-onlinepayment-email-override')
1847               : $invoicing_list[0];
1848
1849   my $paydate = '';
1850   my %content = ();
1851
1852   if ( $namespace eq 'Business::OnlinePayment' ) {
1853
1854     if ( $options{method} eq 'CC' ) {
1855
1856       $content{card_number} = $options{payinfo};
1857       $paydate = $options{'paydate'};
1858       $paydate =~ /^\d{2}(\d{2})[\/\-](\d+)[\/\-]\d+$/;
1859       $content{expiration} = "$2/$1";
1860
1861       $content{cvv2} = $options{'paycvv'}
1862         if length($options{'paycvv'});
1863
1864       my $paystart_month = $options{'paystart_month'};
1865       my $paystart_year  = $options{'paystart_year'};
1866
1867       $content{card_start} = "$paystart_month/$paystart_year"
1868         if $paystart_month && $paystart_year;
1869
1870       my $payissue       = $options{'payissue'};
1871       $content{issue_number} = $payissue if $payissue;
1872
1873     } elsif ( $options{method} eq 'ECHECK' ){
1874       #cannot verify, move along (though it shouldn't be called...)
1875       return '';
1876     } else {
1877       return "unknown method ". $options{method};
1878     }
1879   } elsif ( $namespace eq 'Business::OnlineThirdPartyPayment' ) {
1880     #cannot verify, move along
1881     return '';
1882   } else {
1883     return "unknown namespace $namespace";
1884   }
1885
1886   ###
1887   # run transaction(s)
1888   ###
1889
1890   my $error;
1891   my $transaction; #need this back so we can do _tokenize_card
1892
1893   # don't mutex the customer here, because they might be uncommitted. and
1894   # this is only verification. it doesn't matter if they have other
1895   # unfinished verifications.
1896
1897   my $cust_pay_pending = new FS::cust_pay_pending {
1898     'custnum_pending'   => 1,
1899     'paid'              => '1.00',
1900     '_date'             => '',
1901     'payby'             => $bop_method2payby{'CC'},
1902     'payinfo'           => $options{payinfo},
1903     'paymask'           => $options{paymask},
1904     'paydate'           => $paydate,
1905     'pkgnum'            => $options{'pkgnum'},
1906     'status'            => 'new',
1907     'gatewaynum'        => $payment_gateway->gatewaynum || '',
1908     'session_id'        => $options{session_id} || '',
1909   };
1910   $cust_pay_pending->payunique( $options{payunique} )
1911     if defined($options{payunique}) && length($options{payunique});
1912
1913   IMMEDIATE: {
1914     # open a separate handle for creating/updating the cust_pay_pending
1915     # record
1916     local $FS::UID::dbh = myconnect();
1917     local $FS::UID::AutoCommit = 1;
1918
1919     # if this is an existing customer (and we can tell now because
1920     # this is a fresh transaction), it's safe to assign their custnum
1921     # to the cust_pay_pending record, and then the verification attempt
1922     # will remain linked to them even if it fails.
1923     if ( FS::cust_main->by_key($self->custnum) ) {
1924       $cust_pay_pending->set('custnum', $self->custnum);
1925     }
1926
1927     warn "inserting cust_pay_pending record for customer ". $self->custnum. "\n"
1928       if $DEBUG > 1;
1929
1930     # if this fails, just return; everything else will still allow the
1931     # cust_pay_pending to have its custnum set later
1932     my $cpp_new_err = $cust_pay_pending->insert;
1933     return $cpp_new_err if $cpp_new_err;
1934
1935     warn "inserted cust_pay_pending record for customer ". $self->custnum. "\n"
1936       if $DEBUG > 1;
1937     warn Dumper($cust_pay_pending) if $DEBUG > 2;
1938
1939     $transaction = new $namespace( $payment_gateway->gateway_module,
1940                                    _bop_options(\%options),
1941                                     );
1942
1943     $transaction->content(
1944       'type'           => 'CC',
1945       _bop_auth(\%options),          
1946       'action'         => 'Authorization Only',
1947       'description'    => $options{'description'},
1948       'amount'         => '1.00',
1949       'customer_id'    => $self->custnum,
1950       %$bop_content,
1951       'reference'      => $cust_pay_pending->paypendingnum, #for now
1952       'email'          => $email,
1953       %content, #after
1954     );
1955
1956     $cust_pay_pending->status('pending');
1957     my $cpp_pending_err = $cust_pay_pending->replace;
1958     return $cpp_pending_err if $cpp_pending_err;
1959
1960     warn Dumper($transaction) if $DEBUG > 2;
1961
1962     unless ( $BOP_TESTING ) {
1963       $transaction->test_transaction(1)
1964         if $conf->exists('business-onlinepayment-test_transaction');
1965       $transaction->submit();
1966     } else {
1967       if ( $BOP_TESTING_SUCCESS ) {
1968         $transaction->is_success(1);
1969         $transaction->authorization('fake auth');
1970       } else {
1971         $transaction->is_success(0);
1972         $transaction->error_message('fake failure');
1973       }
1974     }
1975
1976     if ( $transaction->is_success() ) {
1977
1978       $cust_pay_pending->status('authorized');
1979       my $cpp_authorized_err = $cust_pay_pending->replace;
1980       return $cpp_authorized_err if $cpp_authorized_err;
1981
1982       my $auth = $transaction->authorization;
1983       my $ordernum = $transaction->can('order_number')
1984                      ? $transaction->order_number
1985                      : '';
1986
1987       my $reverse = new $namespace( $payment_gateway->gateway_module,
1988                                     _bop_options(\%options),
1989                                   );
1990
1991       $reverse->content( 'action'        => 'Reverse Authorization',
1992                          _bop_auth(\%options),          
1993
1994                          # B:OP
1995                          'amount'        => '1.00',
1996                          'authorization' => $transaction->authorization,
1997                          'order_number'  => $ordernum,
1998
1999                          # vsecure
2000                          'result_code'   => $transaction->result_code,
2001                          'txn_date'      => $transaction->txn_date,
2002
2003                          %content,
2004                        );
2005       $reverse->test_transaction(1)
2006         if $conf->exists('business-onlinepayment-test_transaction');
2007       $reverse->submit();
2008
2009       if ( $reverse->is_success ) {
2010
2011         $cust_pay_pending->status('done');
2012         $cust_pay_pending->statustext('reversed');
2013         my $cpp_reversed_err = $cust_pay_pending->replace;
2014         return $cpp_reversed_err if $cpp_reversed_err;
2015
2016       } else {
2017
2018         my $e = "Authorization successful but reversal failed, custnum #".
2019                 $self->custnum. ': '.  $reverse->result_code.
2020                 ": ". $reverse->error_message;
2021         $log->warning($e);
2022         warn $e;
2023         return $e;
2024
2025       }
2026
2027       ### Address Verification ###
2028       #
2029       # Single-letter codes vary by cardtype.
2030       #
2031       # Erring on the side of accepting cards if avs is not available,
2032       # only rejecting if avs occurred and there's been an explicit mismatch
2033       #
2034       # Charts below taken from vSecure documentation,
2035       #    shows codes for Amex/Dscv/MC/Visa
2036       #
2037       # ACCEPTABLE AVS RESPONSES:
2038       # Both Address and 5-digit postal code match Y A Y Y
2039       # Both address and 9-digit postal code match Y A X Y
2040       # United Kingdom â€“ Address and postal code match _ _ _ F
2041       # International transaction â€“ Address and postal code match _ _ _ D/M
2042       #
2043       # ACCEPTABLE, BUT ISSUE A WARNING:
2044       # Ineligible transaction; or message contains a content error _ _ _ E
2045       # System unavailable; retry R U R R
2046       # Information unavailable U W U U
2047       # Issuer does not support AVS S U S S
2048       # AVS is not applicable _ _ _ S
2049       # Incompatible formats â€“ Not verified _ _ _ C
2050       # Incompatible formats â€“ Address not verified; postal code matches _ _ _ P
2051       # International transaction â€“ address not verified _ G _ G/I
2052       #
2053       # UNACCEPTABLE AVS RESPONSES:
2054       # Only Address matches A Y A A
2055       # Only 5-digit postal code matches Z Z Z Z
2056       # Only 9-digit postal code matches Z Z W W
2057       # Neither address nor postal code matches N N N N
2058
2059       if (my $avscode = uc($transaction->avs_code)) {
2060
2061         # map codes to accept/warn/reject
2062         my $avs = {
2063           'American Express card' => {
2064             'A' => 'r',
2065             'N' => 'r',
2066             'R' => 'w',
2067             'S' => 'w',
2068             'U' => 'w',
2069             'Y' => 'a',
2070             'Z' => 'r',
2071           },
2072           'Discover card' => {
2073             'A' => 'a',
2074             'G' => 'w',
2075             'N' => 'r',
2076             'U' => 'w',
2077             'W' => 'w',
2078             'Y' => 'r',
2079             'Z' => 'r',
2080           },
2081           'MasterCard' => {
2082             'A' => 'r',
2083             'N' => 'r',
2084             'R' => 'w',
2085             'S' => 'w',
2086             'U' => 'w',
2087             'W' => 'r',
2088             'X' => 'a',
2089             'Y' => 'a',
2090             'Z' => 'r',
2091           },
2092           'VISA card' => {
2093             'A' => 'r',
2094             'C' => 'w',
2095             'D' => 'a',
2096             'E' => 'w',
2097             'F' => 'a',
2098             'G' => 'w',
2099             'I' => 'w',
2100             'M' => 'a',
2101             'N' => 'r',
2102             'P' => 'w',
2103             'R' => 'w',
2104             'S' => 'w',
2105             'U' => 'w',
2106             'W' => 'r',
2107             'Y' => 'a',
2108             'Z' => 'r',
2109           },
2110         };
2111         my $cardtype = cardtype($content{card_number});
2112         if ($avs->{$cardtype}) {
2113           my $avsact = $avs->{$cardtype}->{$avscode};
2114           my $warning = '';
2115           if ($avsact eq 'r') {
2116             return "AVS code verification failed, cardtype $cardtype, code $avscode";
2117           } elsif ($avsact eq 'w') {
2118             $warning = "AVS did not occur, cardtype $cardtype, code $avscode";
2119           } elsif (!$avsact) {
2120             $warning = "AVS code unknown, cardtype $cardtype, code $avscode";
2121           } # else $avsact eq 'a'
2122           if ($warning) {
2123             $log->warning($warning);
2124             warn $warning;
2125           }
2126         } # else $cardtype avs handling not implemented
2127       } # else !$transaction->avs_code
2128
2129     } else { # is not success
2130
2131       # status is 'done' not 'declined', as in _realtime_bop_result
2132       $cust_pay_pending->status('done');
2133       $error = $transaction->error_message || 'Unknown error';
2134       $cust_pay_pending->statustext($error);
2135       # could also record failure_status here,
2136       #   but it's not supported by B::OP::vSecureProcessing...
2137       #   need a B::OP module with (reverse) auth only to test it with
2138       my $cpp_declined_err = $cust_pay_pending->replace;
2139       return $cpp_declined_err if $cpp_declined_err;
2140
2141     }
2142
2143   } # end of IMMEDIATE; we now have our $error and $transaction
2144
2145   ###
2146   # Save the custnum (as part of the main transaction, so it can reference
2147   # the cust_main)
2148   ###
2149
2150   if (!$cust_pay_pending->custnum) {
2151     $cust_pay_pending->set('custnum', $self->custnum);
2152     my $set_custnum_err = $cust_pay_pending->replace;
2153     if ($set_custnum_err) {
2154       $log->error($set_custnum_err);
2155       $error ||= $set_custnum_err;
2156       # but if there was a real verification error also, return that one
2157     }
2158   }
2159
2160   ###
2161   # remove paycvv here?  need to find out if a reversed auth
2162   #   counts as an initial transaction for paycvv retention requirements
2163   ###
2164
2165   ###
2166   # Tokenize
2167   ###
2168
2169   # This block will only run if the B::OP module supports card_token but not the Tokenize transaction;
2170   #   if that never happens, we should get rid of it (as it has the potential to store real card numbers on error)
2171   if (my $card_token = $self->_tokenize_card($transaction,\%options)) {
2172     $cust_pay_pending->payinfo($card_token);
2173     my $cpp_token_err = $cust_pay_pending->replace;
2174     #this leaves real card number in cust_pay_pending, but can't do much else if cpp won't replace
2175     return $cpp_token_err if $cpp_token_err;
2176     #important that we not replace cust_payby here,
2177     #because cust_payby->replace uses realtime_verify_bop!
2178   }
2179
2180   ###
2181   # result handling
2182   ###
2183
2184   # $error contains the transaction error_message, if is_success was false.
2185  
2186   return $error;
2187
2188 }
2189
2190 =item realtime_tokenize [ OPTION => VALUE ... ]
2191
2192 If possible and necessary, runs a tokenize transaction.
2193 In order to be possible, a credit card cust_payby record
2194 must be passed and a Business::OnlinePayment gateway capable
2195 of Tokenize transactions must be configured for this user.
2196 Is only necessary if payinfo is not yet tokenized.
2197
2198 Returns the empty string if the authorization was sucessful
2199 or was not possible/necessary (thus allowing this to be safely called with
2200 non-tokenizable records/gateways, without having to perform separate tests),
2201 or an error message otherwise.
2202
2203 Option I<cust_payby> may be passed, even if it's not yet been inserted.
2204 Object will be tokenized if possible, but that change will not be
2205 updated in database (must be inserted/replaced afterwards.)
2206
2207 Otherwise, options I<method>, I<payinfo> and other cust_payby fields
2208 may be passed.  If options are passed as a hashref, I<payinfo>
2209 will be updated as appropriate in the passed hashref.
2210
2211 Can be run as a class method if option I<payment_gateway> is passed,
2212 but default customer id/name/phone can't be set in that case.  This
2213 is really only intended for tokenizing old records on upgrade.
2214
2215 =cut
2216
2217 # careful--might be run as a class method
2218 sub realtime_tokenize {
2219   my $self = shift;
2220
2221   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
2222   my $log = FS::Log->new('FS::cust_main::Billing_Realtime::realtime_tokenize');
2223
2224   my %options = ();
2225   my $outoptions; #for returning cust_payby/payinfo
2226   if (ref($_[0]) eq 'HASH') {
2227     %options = %{$_[0]};
2228     $outoptions = $_[0];
2229   } else {
2230     %options = @_;
2231     $outoptions = \%options;
2232   }
2233
2234   # set fields from passed cust_payby
2235   _bop_cust_payby_options(\%options);
2236   return '' unless $options{method} eq 'CC';
2237   return '' if $self->tokenized($options{payinfo}); #already tokenized
2238
2239   ###
2240   # select a gateway
2241   ###
2242
2243   $options{'nofatal'} = 1;
2244   my $payment_gateway =  $self->_payment_gateway( \%options );
2245   return '' unless $payment_gateway;
2246   my $namespace = $payment_gateway->gateway_namespace;
2247   return '' unless $namespace eq 'Business::OnlinePayment';
2248
2249   eval "use $namespace";  
2250   return $@ if $@;
2251
2252   ###
2253   # check for tokenize ability
2254   ###
2255
2256   my $transaction = new $namespace( $payment_gateway->gateway_module,
2257                                     _bop_options(\%options),
2258                                   );
2259
2260   return '' unless $transaction->can('info');
2261
2262   my %supported_actions = $transaction->info('supported_actions');
2263   return '' unless $supported_actions{'CC'} and grep(/^Tokenize$/,@{$supported_actions{'CC'}});
2264
2265   ###
2266   # check for banned credit card/ACH
2267   ###
2268
2269   my $ban = FS::banned_pay->ban_search(
2270     'payby'   => $bop_method2payby{'CC'},
2271     'payinfo' => $options{payinfo},
2272   );
2273   return "Banned credit card" if $ban && $ban->bantype ne 'warn';
2274
2275   ###
2276   # massage data
2277   ###
2278
2279   ### Currently, cardfortress only keys in on card number and exp date.
2280   ### We pass everything we'd pass to a normal transaction,
2281   ### for ease of current and future development,
2282   ### but note, when tokenizing old records, we may only have access to payinfo/paydate
2283
2284   my $bop_content = $self->_bop_content(\%options);
2285   return $bop_content unless ref($bop_content);
2286
2287   my $paydate = '';
2288   my %content = ();
2289
2290   $content{card_number} = $options{payinfo};
2291   $paydate = $options{'paydate'};
2292   $paydate =~ /^\d{2}(\d{2})[\/\-](\d+)[\/\-]\d+$/;
2293   $content{expiration} = "$2/$1";
2294
2295   $content{cvv2} = $options{'paycvv'}
2296     if length($options{'paycvv'});
2297
2298   my $paystart_month = $options{'paystart_month'};
2299   my $paystart_year  = $options{'paystart_year'};
2300
2301   $content{card_start} = "$paystart_month/$paystart_year"
2302     if $paystart_month && $paystart_year;
2303
2304   my $payissue       = $options{'payissue'};
2305   $content{issue_number} = $payissue if $payissue;
2306
2307   $content{customer_id} = $self->custnum
2308     if ref($self);
2309
2310   ###
2311   # run transaction
2312   ###
2313
2314   my $error;
2315
2316   # no cust_pay_pending---this is not a financial transaction
2317
2318   $transaction->content(
2319     'type'           => 'CC',
2320     _bop_auth(\%options),          
2321     'action'         => 'Tokenize',
2322     'description'    => $options{'description'},
2323     %$bop_content,
2324     %content, #after
2325   );
2326
2327   # no $BOP_TESTING handling for this
2328   $transaction->test_transaction(1)
2329     if $conf->exists('business-onlinepayment-test_transaction');
2330   $transaction->submit();
2331
2332   if ( $transaction->card_token() ) { # no is_success flag
2333
2334     # realtime_tokenize should not clear paycvv at this time.  it might be
2335     # needed for the first transaction, and a tokenize isn't actually a
2336     # transaction that hits the gateway.  at some point in the future, card
2337     # fortress should take on the "store paycvv until first transaction"
2338     # functionality and we should fix this in freeside, but i that's a bigger
2339     # project for another time.
2340
2341     #important that we not replace cust_payby here, 
2342     #because cust_payby->replace uses realtime_tokenize!
2343     $self->_tokenize_card($transaction,$outoptions);
2344
2345   } else {
2346
2347     $error = $transaction->error_message || 'Unknown error when tokenizing card';
2348
2349   }
2350
2351   return $error;
2352
2353 }
2354
2355
2356 =item tokenized PAYINFO
2357
2358 Convenience wrapper for L<FS::payinfo_Mixin/tokenized>
2359
2360 PAYINFO is required.
2361
2362 Can be run as class or object method, never loads from object.
2363
2364 =cut
2365
2366 sub tokenized {
2367   my $this = shift;
2368   my $payinfo = shift;
2369   FS::cust_pay->tokenized($payinfo);
2370 }
2371
2372 =item token_check [ quiet => 1, queue => 1, daily => 1 ]
2373
2374 NOT A METHOD.  Acts on all customers.  Placed here because it makes
2375 use of module-internal methods, and to keep everything that uses
2376 Billing::OnlinePayment all in one place.
2377
2378 Tokenizes all tokenizable card numbers from payinfo in cust_payby and 
2379 CARD transactions in cust_pay_pending, cust_pay, cust_pay_void and cust_refund.
2380
2381 If the I<queue> flag is set, newly tokenized records will be immediately
2382 committed, regardless of AutoCommit, so as to release the mutex on the record.
2383
2384 If all configured gateways have the ability to tokenize, detection of an 
2385 untokenizable record will cause a fatal error.  However, if the I<queue> flag 
2386 is set, this will instead cause a critical error to be recorded in the log, 
2387 and any other tokenizable records will still be committed.
2388
2389 If the I<daily> flag is also set, detection of existing untokenized records will 
2390 record a critical error in the system log (because they should have never appeared 
2391 in the first place.)  Tokenization will still be attempted.
2392
2393 If any configured gateways do NOT have the ability to tokenize, or if a
2394 default gateway is not configured, then untokenized records are not considered 
2395 a threat, and no critical errors will be generated in the log.
2396
2397 =cut
2398
2399 sub token_check {
2400   #acts on all customers
2401   my %opt = @_;
2402   my $debug = !$opt{'quiet'} || $DEBUG;
2403
2404   warn "token_check called with opts\n".Dumper(\%opt) if $debug;
2405
2406   # force some explicitness when invoking this method
2407   die "token_check must run with queue flag if run with daily flag"
2408     if $opt{'daily'} && !$opt{'queue'};
2409
2410   my $conf = FS::Conf->new;
2411
2412   my $log = FS::Log->new('FS::cust_main::Billing_Realtime::token_check');
2413
2414   my $cache = {}; #cache for module info
2415
2416   # look for a gateway that can't tokenize
2417   my $require_tokenized = 1;
2418   foreach my $gateway (
2419     FS::payment_gateway->all_gateways(
2420       'method'  => 'CC',
2421       'conf'    => $conf,
2422       'nofatal' => 1,
2423     )
2424   ) {
2425     if (!$gateway) {
2426       # no default gateway, no promise to tokenize
2427       # can just load other gateways as-needeed below
2428       $require_tokenized = 0;
2429       last;
2430     }
2431     my $info = _token_check_gateway_info($cache,$gateway);
2432     die $info unless ref($info); # means it's an error message
2433     unless ($info->{'can_tokenize'}) {
2434       # a configured gateway can't tokenize, that's all we need to know right now
2435       # can just load other gateways as-needeed below
2436       $require_tokenized = 0;
2437       last;
2438     }
2439   }
2440
2441   warn "REQUIRE TOKENIZED" if $require_tokenized && $debug;
2442
2443   # upgrade does not call this with autocommit turned on,
2444   # and autocommit will be ignored if opt queue is set,
2445   # but might as well be thorough...
2446   my $oldAutoCommit = $FS::UID::AutoCommit;
2447   local $FS::UID::AutoCommit = 0;
2448   my $dbh = dbh;
2449
2450   # for retrieving data in chunks
2451   my $step = 500;
2452   my $offset = 0;
2453
2454   ### Tokenize cust_payby
2455
2456   my @recnums;
2457
2458 CUSTLOOP:
2459   while (my $custnum = _token_check_next_recnum($dbh,'cust_main',$step,\$offset,\@recnums)) {
2460     my $cust_main = FS::cust_main->by_key($custnum);
2461     my $payment_gateway;
2462     foreach my $cust_payby ($cust_main->cust_payby('CARD','DCRD')) {
2463
2464       # see if it's already tokenized
2465       if ($cust_payby->tokenized) {
2466         warn "cust_payby ".$cust_payby->get($cust_payby->primary_key)." already tokenized" if $debug;
2467         next;
2468       }
2469
2470       if ($require_tokenized && $opt{'daily'}) {
2471         $log->critical("Untokenized card number detected in cust_payby ".$cust_payby->custpaybynum);
2472         $dbh->commit or die $dbh->errstr; # commit log message
2473       }
2474
2475       # only load gateway if we need to, and only need to load it once
2476       $payment_gateway ||= $cust_main->_payment_gateway({
2477         'method'  => 'CC',
2478         'conf'    => $conf,
2479         'nofatal' => 1, # handle lack of gateway smoothly below
2480       });
2481       unless ($payment_gateway) {
2482         # no reason to have untokenized card numbers saved if no gateway,
2483         #   but only a problem if we expected everyone to tokenize card numbers
2484         unless ($require_tokenized) {
2485           warn "Skipping cust_payby for cust_main ".$cust_main->custnum.", no payment gateway" if $debug;
2486           next CUSTLOOP; # can skip rest of customer
2487         }
2488         my $error = "No gateway found for custnum ".$cust_main->custnum;
2489         if ($opt{'queue'}) {
2490           $log->critical($error);
2491           $dbh->commit or die $dbh->errstr; # commit error message
2492           next; # not next CUSTLOOP, want to record error for every cust_payby
2493         }
2494         $dbh->rollback if $oldAutoCommit;
2495         die $error;
2496       }
2497
2498       my $info = _token_check_gateway_info($cache,$payment_gateway);
2499       unless (ref($info)) {
2500         # only throws error if Business::OnlinePayment won't load,
2501         #   which is just cause to abort this whole process, even if queue
2502         $dbh->rollback if $oldAutoCommit;
2503         die $info; # error message
2504       }
2505       # no fail here--a configured gateway can't tokenize, so be it
2506       unless ($info->{'can_tokenize'}) {
2507         warn "Skipping ".$cust_main->custnum." cannot tokenize" if $debug;
2508         next;
2509       }
2510
2511       # time to tokenize
2512       $cust_payby = $cust_payby->select_for_update;
2513       my %tokenopts = (
2514         'payment_gateway' => $payment_gateway,
2515         'cust_payby'      => $cust_payby,
2516       );
2517       my $error = $cust_main->realtime_tokenize(\%tokenopts);
2518       if ($cust_payby->tokenized) { # implies no error
2519         $error = $cust_payby->replace;
2520       } else {
2521         $error ||= 'Unknown error';
2522       }
2523       if ($error) {
2524         $error = "Error tokenizing cust_payby ".$cust_payby->custpaybynum.": ".$error;
2525         if ($opt{'queue'}) {
2526           $log->critical($error);
2527           $dbh->commit or die $dbh->errstr; # commit log message, release mutex
2528           next; # not next CUSTLOOP, want to record error for every cust_payby
2529         }
2530         $dbh->rollback if $oldAutoCommit;
2531         die $error;
2532       }
2533       $dbh->commit or die $dbh->errstr if $opt{'queue'}; # release mutex
2534       warn "TOKENIZED cust_payby ".$cust_payby->get($cust_payby->primary_key) if $debug;
2535     }
2536     warn "cust_payby upgraded for custnum ".$cust_main->custnum if $debug;
2537
2538   }
2539
2540   ### Tokenize/mask transaction tables
2541
2542   # allow tokenization of closed cust_pay/cust_refund records
2543   local $FS::payinfo_Mixin::allow_closed_replace = 1;
2544
2545   # grep assistance:
2546   #   $cust_pay_pending->replace, $cust_pay->replace, $cust_pay_void->replace, $cust_refund->replace all run here
2547   foreach my $table ( qw(cust_pay_pending cust_pay cust_pay_void cust_refund) ) {
2548     warn "Checking $table" if $debug;
2549
2550     # FS::Cursor does not seem to work over multiple commits (gives cursor not found errors)
2551     # loading only record ids, then loading individual records one at a time
2552     my $tclass = 'FS::'.$table;
2553     $offset = 0;
2554     @recnums = ();
2555
2556     while (my $recnum = _token_check_next_recnum($dbh,$table,$step,\$offset,\@recnums)) {
2557       my $record = $tclass->by_key($recnum);
2558       if (FS::cust_main::Billing_Realtime->tokenized($record->payinfo)) {
2559         warn "Skipping tokenized record for $table ".$record->get($record->primary_key) if $debug;
2560         next;
2561       }
2562       if (!$record->payinfo) { #shouldn't happen, but at least it's not a card number
2563         warn "Skipping blank payinfo for $table ".$record->get($record->primary_key) if $debug;
2564         next;
2565       }
2566       if ($record->payinfo =~ /N\/A/) { # ??? Not sure why we do this, but it's not a card number
2567         warn "Skipping NA payinfo for $table ".$record->get($record->primary_key) if $debug;
2568         next;
2569       }
2570
2571       if ($require_tokenized && $opt{'daily'}) {
2572         $log->critical("Untokenized card number detected in $table ".$record->get($record->primary_key));
2573         $dbh->commit or die $dbh->errstr; # commit log message
2574       }
2575
2576       my $cust_main = $record->cust_main;
2577       if (!$cust_main) {
2578         # might happen for cust_pay_pending from failed verify records,
2579         #   in which case we attempt tokenization without cust_main
2580         # everything else should absolutely have a cust_main
2581         if ($table eq 'cust_pay_pending' and !$record->custnum ) {
2582           # override the usual safety check and allow the record to be
2583           # updated even without a custnum.
2584           $record->set('custnum_pending', 1);
2585         } else {
2586           my $error = "Could not load cust_main for $table ".$record->get($record->primary_key);
2587           if ($opt{'queue'}) {
2588             $log->critical($error);
2589             $dbh->commit or die $dbh->errstr; # commit log message
2590             next;
2591           }
2592           $dbh->rollback if $oldAutoCommit;
2593           die $error;
2594         }
2595       }
2596
2597       my $gateway;
2598
2599       # use the gatewaynum specified by the record if possible
2600       $gateway = FS::payment_gateway->by_key_with_namespace(
2601         'gatewaynum' => $record->gatewaynum,
2602       ) if $record->gateway;
2603
2604       # otherwise use the cust agent gateway if possible (which realtime_refund_bop would do)
2605       # otherwise just use default gateway
2606       unless ($gateway) {
2607
2608         $gateway = $cust_main 
2609                  ? $cust_main->agent->payment_gateway
2610                  : FS::payment_gateway->default_gateway;
2611
2612         # check for processor mismatch
2613         unless ($table eq 'cust_pay_pending') { # has no processor table
2614           if (my $processor = $record->processor) {
2615
2616             my $conf_processor = $gateway->gateway_module;
2617             my %bop_options = $gateway->gatewaynum
2618                             ? $gateway->options
2619                             : @{ $gateway->get('options') };
2620
2621             # this is the same standard used by realtime_refund_bop
2622             unless (
2623               ($processor eq $conf_processor) ||
2624               (($conf_processor eq 'CardFortress') && ($processor eq $bop_options{'gateway'}))
2625             ) {
2626
2627               # processors don't match, so refund already cannot be run on this object,
2628               # regardless of what we do now...
2629               # but unless we gotta tokenize everything, just leave well enough alone
2630               unless ($require_tokenized) {
2631                 warn "Skipping mismatched processor for $table ".$record->get($record->primary_key) if $debug;
2632                 next;
2633               }
2634               ### no error--we'll tokenize using the new gateway, just to remove stored payinfo,
2635               ### because refunds are already impossible for this record, anyway
2636
2637             } # end processor mismatch
2638
2639           } # end record has processor
2640         } # end not cust_pay_pending
2641
2642       }
2643
2644       # means no default gateway, no promise to tokenize, can skip
2645       unless ($gateway) {
2646         warn "Skipping missing gateway for $table ".$record->get($record->primary_key) if $debug;
2647         next;
2648       }
2649
2650       my $info = _token_check_gateway_info($cache,$gateway);
2651       unless (ref($info)) {
2652         # only throws error if Business::OnlinePayment won't load,
2653         #   which is just cause to abort this whole process, even if queue
2654         $dbh->rollback if $oldAutoCommit;
2655         die $info; # error message
2656       }
2657
2658       # a configured gateway can't tokenize, move along
2659       unless ($info->{'can_tokenize'}) {
2660         warn "Skipping, cannot tokenize $table ".$record->get($record->primary_key) if $debug;
2661         next;
2662       }
2663
2664       warn "ATTEMPTING GATEWAY-ONLY TOKENIZE" if $debug && !$cust_main;
2665
2666       # if we got this far, time to mutex
2667       $record->select_for_update;
2668
2669       # no clear record of name/address/etc used for transaction,
2670       # but will load name/phone/id from customer if run as an object method,
2671       # so we try that if we can
2672       my %tokenopts = (
2673         'payment_gateway' => $gateway,
2674         'method'          => 'CC',
2675         'payinfo'         => $record->payinfo,
2676         'paydate'         => $record->paydate,
2677       );
2678       my $error = $cust_main
2679                 ? $cust_main->realtime_tokenize(\%tokenopts)
2680                 : FS::cust_main::Billing_Realtime->realtime_tokenize(\%tokenopts);
2681       if (FS::cust_main::Billing_Realtime->tokenized($tokenopts{'payinfo'})) { # implies no error
2682         $record->payinfo($tokenopts{'payinfo'});
2683         $error = $record->replace;
2684       } else {
2685         $error ||= 'Unknown error';
2686       }
2687       if ($error) {
2688         $error = "Error tokenizing $table ".$record->get($record->primary_key).": ".$error;
2689         if ($opt{'queue'}) {
2690           $log->critical($error);
2691           $dbh->commit or die $dbh->errstr; # commit log message, release mutex
2692           next;
2693         }
2694         $dbh->rollback if $oldAutoCommit;
2695         die $error;
2696       }
2697       $dbh->commit or die $dbh->errstr if $opt{'queue'}; # release mutex
2698       warn "TOKENIZED $table ".$record->get($record->primary_key) if $debug;
2699
2700     } # end record loop
2701   } # end table loop
2702
2703   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
2704
2705   return '';
2706 }
2707
2708 # not a method!
2709 sub _token_check_next_recnum {
2710   my ($dbh,$table,$step,$offset,$recnums) = @_;
2711   my $recnum = shift @$recnums;
2712   return $recnum if $recnum;
2713   my $tclass = 'FS::'.$table;
2714   my $sth = $dbh->prepare('SELECT '.$tclass->primary_key.' FROM '.$table.' ORDER BY '.$tclass->primary_key.' LIMIT '.$step.' OFFSET '.$$offset) or die $dbh->errstr;
2715   $sth->execute() or die $sth->errstr;
2716   my @recnums;
2717   while (my $rec = $sth->fetchrow_hashref) {
2718     push @$recnums, $rec->{$tclass->primary_key};
2719   }
2720   $sth->finish();
2721   $$offset += $step;
2722   return shift @$recnums;
2723 }
2724
2725 # not a method!
2726 sub _token_check_gateway_info {
2727   my ($cache,$payment_gateway) = @_;
2728
2729   return $cache->{$payment_gateway->gateway_module}
2730     if $cache->{$payment_gateway->gateway_module};
2731
2732   my $info = {};
2733   $cache->{$payment_gateway->gateway_module} = $info;
2734
2735   my $namespace = $payment_gateway->gateway_namespace;
2736   return $info unless $namespace eq 'Business::OnlinePayment';
2737   $info->{'is_bop'} = 1;
2738
2739   # only need to load this once,
2740   # don't want to load if nothing is_bop
2741   unless ($cache->{'Business::OnlinePayment'}) {
2742     eval "use $namespace";  
2743     return "Error initializing Business:OnlinePayment: ".$@ if $@;
2744     $cache->{'Business::OnlinePayment'} = 1;
2745   }
2746
2747   my $transaction = new $namespace( $payment_gateway->gateway_module,
2748                                     _bop_options({ 'payment_gateway' => $payment_gateway }),
2749                                   );
2750
2751   return $info unless $transaction->can('info');
2752   $info->{'can_info'} = 1;
2753
2754   my %supported_actions = $transaction->info('supported_actions');
2755   $info->{'can_tokenize'} = 1
2756     if $supported_actions{'CC'}
2757       && grep /^Tokenize$/, @{$supported_actions{'CC'}};
2758
2759   # not using this any more, but for future reference...
2760   $info->{'void_requires_card'} = 1
2761     if $transaction->info('CC_void_requires_card');
2762
2763   return $info;
2764 }
2765
2766 =back
2767
2768 =head1 BUGS
2769
2770 =head1 SEE ALSO
2771
2772 L<FS::cust_main>, L<FS::cust_main::Billing>
2773
2774 =cut
2775
2776 1;