should fix qis's intermittent backtraces when using an (ancient) counter-based cust_p...
[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 Data::Dumper;
7 use Digest::MD5 qw(md5_base64);
8 use Business::CreditCard 0.28;
9 use FS::UID qw( dbh );
10 use FS::Record qw( qsearch qsearchs );
11 use FS::Misc qw( send_email );
12 use FS::payby;
13 use FS::cust_pay;
14 use FS::cust_pay_pending;
15 use FS::cust_refund;
16
17 $realtime_bop_decline_quiet = 0;
18
19 # 1 is mostly method/subroutine entry and options
20 # 2 traces progress of some operations
21 # 3 is even more information including possibly sensitive data
22 $DEBUG = 0;
23 $me = '[FS::cust_main::Billing_Realtime]';
24
25 install_callback FS::UID sub { 
26   $conf = new FS::Conf;
27   #yes, need it for stuff below (prolly should be cached)
28 };
29
30 =head1 NAME
31
32 FS::cust_main::Billing_Realtime - Realtime billing mixin for cust_main
33
34 =head1 SYNOPSIS
35
36 =head1 DESCRIPTION
37
38 These methods are available on FS::cust_main objects.
39
40 =head1 METHODS
41
42 =over 4
43
44 =item realtime_collect [ OPTION => VALUE ... ]
45
46 Attempt to collect the customer's current balance with a realtime credit 
47 card, electronic check, or phone bill transaction (see realtime_bop() below).
48
49 Returns the result of realtime_bop(): nothing, an error message, or a 
50 hashref of state information for a third-party transaction.
51
52 Available options are: I<method>, I<amount>, I<description>, I<invnum>, I<quiet>, I<paynum_ref>, I<payunique>, I<session_id>, I<pkgnum>
53
54 I<method> is one of: I<CC>, I<ECHECK> and I<LEC>.  If none is specified
55 then it is deduced from the customer record.
56
57 If no I<amount> is specified, then the customer balance is used.
58
59 The additional options I<payname>, I<address1>, I<address2>, I<city>, I<state>,
60 I<zip>, I<payinfo> and I<paydate> are also available.  Any of these options,
61 if set, will override the value from the customer record.
62
63 I<description> is a free-text field passed to the gateway.  It defaults to
64 the value defined by the business-onlinepayment-description configuration
65 option, or "Internet services" if that is unset.
66
67 If an I<invnum> is specified, this payment (if successful) is applied to the
68 specified invoice.
69
70 I<apply> will automatically apply a resulting payment.
71
72 I<quiet> can be set true to suppress email decline notices.
73
74 I<paynum_ref> can be set to a scalar reference.  It will be filled in with the
75 resulting paynum, if any.
76
77 I<payunique> is a unique identifier for this payment.
78
79 I<session_id> is a session identifier associated with this payment.
80
81 I<depend_jobnum> allows payment capture to unlock export jobs
82
83 =cut
84
85 sub realtime_collect {
86   my( $self, %options ) = @_;
87
88   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
89
90   if ( $DEBUG ) {
91     warn "$me realtime_collect:\n";
92     warn "  $_ => $options{$_}\n" foreach keys %options;
93   }
94
95   $options{amount} = $self->balance unless exists( $options{amount} );
96   $options{method} = FS::payby->payby2bop($self->payby)
97     unless exists( $options{method} );
98
99   return $self->realtime_bop({%options});
100
101 }
102
103 =item realtime_bop { [ ARG => VALUE ... ] }
104
105 Runs a realtime credit card, ACH (electronic check) or phone bill transaction
106 via a Business::OnlinePayment realtime gateway.  See
107 L<http://420.am/business-onlinepayment> for supported gateways.
108
109 Required arguments in the hashref are I<method>, and I<amount>
110
111 Available methods are: I<CC>, I<ECHECK> and I<LEC>
112
113 Available optional arguments are: I<description>, I<invnum>, I<apply>, I<quiet>, I<paynum_ref>, I<payunique>, I<session_id>
114
115 The additional options I<payname>, I<address1>, I<address2>, I<city>, I<state>,
116 I<zip>, I<payinfo> and I<paydate> are also available.  Any of these options,
117 if set, will override the value from the customer record.
118
119 I<description> is a free-text field passed to the gateway.  It defaults to
120 the value defined by the business-onlinepayment-description configuration
121 option, or "Internet services" if that is unset.
122
123 If an I<invnum> is specified, this payment (if successful) is applied to the
124 specified invoice.  If the customer has exactly one open invoice, that 
125 invoice number will be assumed.  If you don't specify an I<invnum> you might 
126 want to call the B<apply_payments> method or set the I<apply> option.
127
128 I<apply> can be set to true to apply a resulting payment.
129
130 I<quiet> can be set true to surpress email decline notices.
131
132 I<paynum_ref> can be set to a scalar reference.  It will be filled in with the
133 resulting paynum, if any.
134
135 I<payunique> is a unique identifier for this payment.
136
137 I<session_id> is a session identifier associated with this payment.
138
139 I<depend_jobnum> allows payment capture to unlock export jobs
140
141 I<discount_term> attempts to take a discount by prepaying for discount_term
142
143 A direct (Business::OnlinePayment) transaction will return nothing on success,
144 or an error message on failure.
145
146 A third-party transaction will return a hashref containing:
147
148 - popup_url: the URL to which a browser should be redirected to complete 
149   the transaction.
150 - collectitems: an arrayref of name-value pairs to be posted to popup_url.
151 - reference: a reference ID for the transaction, to show the customer.
152
153 (moved from cust_bill) (probably should get realtime_{card,ach,lec} here too)
154
155 =cut
156
157 # some helper routines
158 sub _bop_recurring_billing {
159   my( $self, %opt ) = @_;
160
161   my $method = scalar($conf->config('credit_card-recurring_billing_flag'));
162
163   if ( defined($method) && $method eq 'transaction_is_recur' ) {
164
165     return 1 if $opt{'trans_is_recur'};
166
167   } else {
168
169     my %hash = ( 'custnum' => $self->custnum,
170                  'payby'   => 'CARD',
171                );
172
173     return 1 
174       if qsearch('cust_pay', { %hash, 'payinfo' => $opt{'payinfo'} } )
175       || qsearch('cust_pay', { %hash, 'paymask' => $self->mask_payinfo('CARD',
176                                                                $opt{'payinfo'} )
177                              } );
178
179   }
180
181   return 0;
182
183 }
184
185 sub _payment_gateway {
186   my ($self, $options) = @_;
187
188   if ( $options->{'selfservice'} ) {
189     my $gatewaynum = FS::Conf->new->config('selfservice-payment_gateway');
190     if ( $gatewaynum ) {
191       return $options->{payment_gateway} ||= 
192           qsearchs('payment_gateway', { gatewaynum => $gatewaynum });
193     }
194   }
195
196   if ( $options->{'fake_gatewaynum'} ) {
197         $options->{payment_gateway} =
198             qsearchs('payment_gateway',
199                       { 'gatewaynum' => $options->{'fake_gatewaynum'}, }
200                     );
201   }
202
203   $options->{payment_gateway} = $self->agent->payment_gateway( %$options )
204     unless exists($options->{payment_gateway});
205
206   $options->{payment_gateway};
207 }
208
209 sub _bop_auth {
210   my ($self, $options) = @_;
211
212   (
213     'login'    => $options->{payment_gateway}->gateway_username,
214     'password' => $options->{payment_gateway}->gateway_password,
215   );
216 }
217
218 sub _bop_options {
219   my ($self, $options) = @_;
220
221   $options->{payment_gateway}->gatewaynum
222     ? $options->{payment_gateway}->options
223     : @{ $options->{payment_gateway}->get('options') };
224
225 }
226
227 sub _bop_defaults {
228   my ($self, $options) = @_;
229
230   unless ( $options->{'description'} ) {
231     if ( $conf->exists('business-onlinepayment-description') ) {
232       my $dtempl = $conf->config('business-onlinepayment-description');
233
234       my $agent = $self->agent->agent;
235       #$pkgs... not here
236       $options->{'description'} = eval qq("$dtempl");
237     } else {
238       $options->{'description'} = 'Internet services';
239     }
240   }
241
242   $options->{payinfo} = $self->payinfo unless exists( $options->{payinfo} );
243
244   # Default invoice number if the customer has exactly one open invoice.
245   if( ! $options->{'invnum'} ) {
246     $options->{'invnum'} = '';
247     my @open = $self->open_cust_bill;
248     $options->{'invnum'} = $open[0]->invnum if scalar(@open) == 1;
249   }
250
251   $options->{payname} = $self->payname unless exists( $options->{payname} );
252 }
253
254 sub _bop_content {
255   my ($self, $options) = @_;
256   my %content = ();
257
258   my $payip = exists($options->{'payip'}) ? $options->{'payip'} : $self->payip;
259   $content{customer_ip} = $payip if length($payip);
260
261   $content{invoice_number} = $options->{'invnum'}
262     if exists($options->{'invnum'}) && length($options->{'invnum'});
263
264   $content{email_customer} = 
265     (    $conf->exists('business-onlinepayment-email_customer')
266       || $conf->exists('business-onlinepayment-email-override') );
267       
268   my ($payname, $payfirst, $paylast);
269   if ( $options->{payname} && $options->{method} ne 'ECHECK' ) {
270     ($payname = $options->{payname}) =~
271       /^\s*([\w \,\.\-\']*)?\s+([\w\,\.\-\']+)\s*$/
272       or return "Illegal payname $payname";
273     ($payfirst, $paylast) = ($1, $2);
274   } else {
275     $payfirst = $self->getfield('first');
276     $paylast = $self->getfield('last');
277     $payname = "$payfirst $paylast";
278   }
279
280   $content{last_name} = $paylast;
281   $content{first_name} = $payfirst;
282
283   $content{name} = $payname;
284
285   $content{address} = exists($options->{'address1'})
286                         ? $options->{'address1'}
287                         : $self->address1;
288   my $address2 = exists($options->{'address2'})
289                    ? $options->{'address2'}
290                    : $self->address2;
291   $content{address} .= ", ". $address2 if length($address2);
292
293   $content{city} = exists($options->{city})
294                      ? $options->{city}
295                      : $self->city;
296   $content{state} = exists($options->{state})
297                       ? $options->{state}
298                       : $self->state;
299   $content{zip} = exists($options->{zip})
300                     ? $options->{'zip'}
301                     : $self->zip;
302   $content{country} = exists($options->{country})
303                         ? $options->{country}
304                         : $self->country;
305
306   $content{referer} = 'http://cleanwhisker.420.am/'; #XXX fix referer :/
307   $content{phone} = $self->daytime || $self->night;
308
309   \%content;
310 }
311
312 my %bop_method2payby = (
313   'CC'     => 'CARD',
314   'ECHECK' => 'CHEK',
315   'LEC'    => 'LECB',
316 );
317
318 sub realtime_bop {
319   my $self = shift;
320
321   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
322  
323   my %options = ();
324   if (ref($_[0]) eq 'HASH') {
325     %options = %{$_[0]};
326   } else {
327     my ( $method, $amount ) = ( shift, shift );
328     %options = @_;
329     $options{method} = $method;
330     $options{amount} = $amount;
331   }
332
333
334   ### 
335   # optional credit card surcharge
336   ###
337
338   my $cc_surcharge = 0;
339   my $cc_surcharge_pct = 0;
340   $cc_surcharge_pct = $conf->config('credit-card-surcharge-percentage') 
341     if $conf->config('credit-card-surcharge-percentage');
342   
343   # always add cc surcharge if called from event 
344   if($options{'cc_surcharge_from_event'} && $cc_surcharge_pct > 0) {
345       $cc_surcharge = $options{'amount'} * $cc_surcharge_pct / 100;
346       $options{'amount'} += $cc_surcharge;
347       $options{'amount'} = sprintf("%.2f", $options{'amount'}); # round (again)?
348   }
349   elsif($cc_surcharge_pct > 0) { # we're called not from event (i.e. from a 
350                                  # payment screen), so consider the given 
351                                  # amount as post-surcharge
352     $cc_surcharge = $options{'amount'} - ($options{'amount'} / ( 1 + $cc_surcharge_pct/100 ));
353   }
354   
355   $cc_surcharge = sprintf("%.2f",$cc_surcharge) if $cc_surcharge > 0;
356   $options{'cc_surcharge'} = $cc_surcharge;
357
358
359   if ( $DEBUG ) {
360     warn "$me realtime_bop (new): $options{method} $options{amount}\n";
361     warn " cc_surcharge = $cc_surcharge\n";
362     warn "  $_ => $options{$_}\n" foreach keys %options;
363   }
364
365   return $self->fake_bop(\%options) if $options{'fake'};
366
367   $self->_bop_defaults(\%options);
368
369   ###
370   # set trans_is_recur based on invnum if there is one
371   ###
372
373   my $trans_is_recur = 0;
374   if ( $options{'invnum'} ) {
375
376     my $cust_bill = qsearchs('cust_bill', { 'invnum' => $options{'invnum'} } );
377     die "invnum ". $options{'invnum'}. " not found" unless $cust_bill;
378
379     my @part_pkg =
380       map  { $_->part_pkg }
381       grep { $_ }
382       map  { $_->cust_pkg }
383       $cust_bill->cust_bill_pkg;
384
385     $trans_is_recur = 1
386       if grep { $_->freq ne '0' } @part_pkg;
387
388   }
389
390   ###
391   # select a gateway
392   ###
393
394   my $payment_gateway =  $self->_payment_gateway( \%options );
395   my $namespace = $payment_gateway->gateway_namespace;
396
397   eval "use $namespace";  
398   die $@ if $@;
399
400   ###
401   # check for banned credit card/ACH
402   ###
403
404   my $ban = qsearchs('banned_pay', {
405     'payby'   => $bop_method2payby{$options{method}},
406     'payinfo' => md5_base64($options{payinfo}),
407   } );
408   return "Banned credit card" if $ban;
409
410   ###
411   # massage data
412   ###
413
414   my $bop_content = $self->_bop_content(\%options);
415   return $bop_content unless ref($bop_content);
416
417   my @invoicing_list = $self->invoicing_list_emailonly;
418   if ( $conf->exists('emailinvoiceautoalways')
419        || $conf->exists('emailinvoiceauto') && ! @invoicing_list
420        || ( $conf->exists('emailinvoiceonly') && ! @invoicing_list ) ) {
421     push @invoicing_list, $self->all_emails;
422   }
423
424   my $email = ($conf->exists('business-onlinepayment-email-override'))
425               ? $conf->config('business-onlinepayment-email-override')
426               : $invoicing_list[0];
427
428   my $paydate = '';
429   my %content = ();
430   if ( $namespace eq 'Business::OnlinePayment' && $options{method} eq 'CC' ) {
431
432     $content{card_number} = $options{payinfo};
433     $paydate = exists($options{'paydate'})
434                     ? $options{'paydate'}
435                     : $self->paydate;
436     $paydate =~ /^\d{2}(\d{2})[\/\-](\d+)[\/\-]\d+$/;
437     $content{expiration} = "$2/$1";
438
439     my $paycvv = exists($options{'paycvv'})
440                    ? $options{'paycvv'}
441                    : $self->paycvv;
442     $content{cvv2} = $paycvv
443       if length($paycvv);
444
445     my $paystart_month = exists($options{'paystart_month'})
446                            ? $options{'paystart_month'}
447                            : $self->paystart_month;
448
449     my $paystart_year  = exists($options{'paystart_year'})
450                            ? $options{'paystart_year'}
451                            : $self->paystart_year;
452
453     $content{card_start} = "$paystart_month/$paystart_year"
454       if $paystart_month && $paystart_year;
455
456     my $payissue       = exists($options{'payissue'})
457                            ? $options{'payissue'}
458                            : $self->payissue;
459     $content{issue_number} = $payissue if $payissue;
460
461     if ( $self->_bop_recurring_billing( 'payinfo'        => $options{'payinfo'},
462                                         'trans_is_recur' => $trans_is_recur,
463                                       )
464        )
465     {
466       $content{recurring_billing} = 'YES';
467       $content{acct_code} = 'rebill'
468         if $conf->exists('credit_card-recurring_billing_acct_code');
469     }
470
471   } elsif ( $namespace eq 'Business::OnlinePayment' && $options{method} eq 'ECHECK' ){
472     ( $content{account_number}, $content{routing_code} ) =
473       split('@', $options{payinfo});
474     $content{bank_name} = $options{payname};
475     $content{bank_state} = exists($options{'paystate'})
476                              ? $options{'paystate'}
477                              : $self->getfield('paystate');
478     $content{account_type}= (exists($options{'paytype'}) && $options{'paytype'})
479                                ? uc($options{'paytype'})
480                                : uc($self->getfield('paytype')) || 'PERSONAL CHECKING';
481     $content{account_name} = $self->getfield('first'). ' '.
482                              $self->getfield('last');
483
484     $content{customer_org} = $self->company ? 'B' : 'I';
485     $content{state_id}       = exists($options{'stateid'})
486                                  ? $options{'stateid'}
487                                  : $self->getfield('stateid');
488     $content{state_id_state} = exists($options{'stateid_state'})
489                                  ? $options{'stateid_state'}
490                                  : $self->getfield('stateid_state');
491     $content{customer_ssn} = exists($options{'ss'})
492                                ? $options{'ss'}
493                                : $self->ss;
494   } elsif ( $namespace eq 'Business::OnlinePayment' && $options{method} eq 'LEC' ) {
495     $content{phone} = $options{payinfo};
496   } elsif ( $namespace eq 'Business::OnlineThirdPartyPayment' ) {
497     #move along
498   } else {
499     #die an evil death
500   }
501
502   ###
503   # run transaction(s)
504   ###
505
506   my $balance = exists( $options{'balance'} )
507                   ? $options{'balance'}
508                   : $self->balance;
509
510   $self->select_for_update; #mutex ... just until we get our pending record in
511
512   #the checks here are intended to catch concurrent payments
513   #double-form-submission prevention is taken care of in cust_pay_pending::check
514
515   #check the balance
516   return "The customer's balance has changed; $options{method} transaction aborted."
517     if $self->balance < $balance;
518
519   #also check and make sure there aren't *other* pending payments for this cust
520
521   my @pending = qsearch('cust_pay_pending', {
522     'custnum' => $self->custnum,
523     'status'  => { op=>'!=', value=>'done' } 
524   });
525   # This is a problem.  A self-service third party payment that fails somehow 
526   # can't be retried, EVER, until someone manually clears it.  Totally 
527   # arbitrary fix: if the existing payment is more than two minutes old, 
528   # kill it.  This doesn't limit how long it can take the pending payment 
529   # to complete, only how long it will obstruct new payments.
530   my @still_pending;
531   foreach (@pending) {
532     if ( time - $_->_date > 120 ) {
533       my $error = $_->delete;
534       warn "error deleting stale pending payment ".$_->paypendingnum.": $error"
535         if $error; # not fatal, it will fail anyway
536     }
537     else {
538       push @still_pending, $_;
539     }
540   }
541   @pending = @still_pending;
542
543   return "A payment is already being processed for this customer (".
544          join(', ', map 'paypendingnum '. $_->paypendingnum, @pending ).
545          "); $options{method} transaction aborted."
546     if scalar(@pending);
547
548   #okay, good to go, if we're a duplicate, cust_pay_pending will kick us out
549
550   my $cust_pay_pending = new FS::cust_pay_pending {
551     'custnum'           => $self->custnum,
552     'paid'              => $options{amount},
553     '_date'             => '',
554     'payby'             => $bop_method2payby{$options{method}},
555     'payinfo'           => $options{payinfo},
556     'paydate'           => $paydate,
557     'recurring_billing' => $content{recurring_billing},
558     'pkgnum'            => $options{'pkgnum'},
559     'status'            => 'new',
560     'gatewaynum'        => $payment_gateway->gatewaynum || '',
561     'session_id'        => $options{session_id} || '',
562     'jobnum'            => $options{depend_jobnum} || '',
563   };
564   $cust_pay_pending->payunique( $options{payunique} )
565     if defined($options{payunique}) && length($options{payunique});
566   my $cpp_new_err = $cust_pay_pending->insert; #mutex lost when this is inserted
567   return $cpp_new_err if $cpp_new_err;
568
569   my( $action1, $action2 ) =
570     split( /\s*\,\s*/, $payment_gateway->gateway_action );
571
572   my $transaction = new $namespace( $payment_gateway->gateway_module,
573                                     $self->_bop_options(\%options),
574                                   );
575
576   $transaction->content(
577     'type'           => $options{method},
578     $self->_bop_auth(\%options),          
579     'action'         => $action1,
580     'description'    => $options{'description'},
581     'amount'         => $options{amount},
582     #'invoice_number' => $options{'invnum'},
583     'customer_id'    => $self->custnum,
584     %$bop_content,
585     'reference'      => $cust_pay_pending->paypendingnum, #for now
586     'callback_url'   => $payment_gateway->gateway_callback_url,
587     'email'          => $email,
588     %content, #after
589   );
590
591   $cust_pay_pending->status('pending');
592   my $cpp_pending_err = $cust_pay_pending->replace;
593   return $cpp_pending_err if $cpp_pending_err;
594
595   #config?
596   my $BOP_TESTING = 0;
597   my $BOP_TESTING_SUCCESS = 1;
598
599   unless ( $BOP_TESTING ) {
600     $transaction->test_transaction(1)
601       if $conf->exists('business-onlinepayment-test_transaction');
602     $transaction->submit();
603   } else {
604     if ( $BOP_TESTING_SUCCESS ) {
605       $transaction->is_success(1);
606       $transaction->authorization('fake auth');
607     } else {
608       $transaction->is_success(0);
609       $transaction->error_message('fake failure');
610     }
611   }
612
613   if ( $transaction->is_success() && $namespace eq 'Business::OnlineThirdPartyPayment' ) {
614
615     return { reference => $cust_pay_pending->paypendingnum,
616              map { $_ => $transaction->$_ } qw ( popup_url collectitems ) };
617
618   } elsif ( $transaction->is_success() && $action2 ) {
619
620     $cust_pay_pending->status('authorized');
621     my $cpp_authorized_err = $cust_pay_pending->replace;
622     return $cpp_authorized_err if $cpp_authorized_err;
623
624     my $auth = $transaction->authorization;
625     my $ordernum = $transaction->can('order_number')
626                    ? $transaction->order_number
627                    : '';
628
629     my $capture =
630       new Business::OnlinePayment( $payment_gateway->gateway_module,
631                                    $self->_bop_options(\%options),
632                                  );
633
634     my %capture = (
635       %content,
636       type           => $options{method},
637       action         => $action2,
638       $self->_bop_auth(\%options),          
639       order_number   => $ordernum,
640       amount         => $options{amount},
641       authorization  => $auth,
642       description    => $options{'description'},
643     );
644
645     foreach my $field (qw( authorization_source_code returned_ACI
646                            transaction_identifier validation_code           
647                            transaction_sequence_num local_transaction_date    
648                            local_transaction_time AVS_result_code          )) {
649       $capture{$field} = $transaction->$field() if $transaction->can($field);
650     }
651
652     $capture->content( %capture );
653
654     $capture->test_transaction(1)
655       if $conf->exists('business-onlinepayment-test_transaction');
656     $capture->submit();
657
658     unless ( $capture->is_success ) {
659       my $e = "Authorization successful but capture failed, custnum #".
660               $self->custnum. ': '.  $capture->result_code.
661               ": ". $capture->error_message;
662       warn $e;
663       return $e;
664     }
665
666   }
667
668   ###
669   # remove paycvv after initial transaction
670   ###
671
672   #false laziness w/misc/process/payment.cgi - check both to make sure working
673   # correctly
674   if ( length($self->paycvv)
675        && ! grep { $_ eq cardtype($options{payinfo}) } $conf->config('cvv-save')
676   ) {
677     my $error = $self->remove_cvv;
678     if ( $error ) {
679       warn "WARNING: error removing cvv: $error\n";
680     }
681   }
682
683   ###
684   # Tokenize
685   ###
686
687
688   if ( $transaction->can('card_token') && $transaction->card_token ) {
689
690     $self->card_token($transaction->card_token);
691
692     if ( $options{'payinfo'} eq $self->payinfo ) {
693       $self->payinfo($transaction->card_token);
694       my $error = $self->replace;
695       if ( $error ) {
696         warn "WARNING: error storing token: $error, but proceeding anyway\n";
697       }
698     }
699
700   }
701
702   ###
703   # result handling
704   ###
705
706   $self->_realtime_bop_result( $cust_pay_pending, $transaction, %options );
707
708 }
709
710 =item fake_bop
711
712 =cut
713
714 sub fake_bop {
715   my $self = shift;
716
717   my %options = ();
718   if (ref($_[0]) eq 'HASH') {
719     %options = %{$_[0]};
720   } else {
721     my ( $method, $amount ) = ( shift, shift );
722     %options = @_;
723     $options{method} = $method;
724     $options{amount} = $amount;
725   }
726   
727   if ( $options{'fake_failure'} ) {
728      return "Error: No error; test failure requested with fake_failure";
729   }
730
731   #my $paybatch = '';
732   #if ( $payment_gateway->gatewaynum ) { # agent override
733   #  $paybatch = $payment_gateway->gatewaynum. '-';
734   #}
735   #
736   #$paybatch .= "$processor:". $transaction->authorization;
737   #
738   #$paybatch .= ':'. $transaction->order_number
739   #  if $transaction->can('order_number')
740   #  && length($transaction->order_number);
741
742   my $paybatch = 'FakeProcessor:54:32';
743
744   my $cust_pay = new FS::cust_pay ( {
745      'custnum'  => $self->custnum,
746      'invnum'   => $options{'invnum'},
747      'paid'     => $options{amount},
748      '_date'    => '',
749      'payby'    => $bop_method2payby{$options{method}},
750      #'payinfo'  => $payinfo,
751      'payinfo'  => '4111111111111111',
752      'paybatch' => $paybatch,
753      #'paydate'  => $paydate,
754      'paydate'  => '2012-05-01',
755   } );
756   $cust_pay->payunique( $options{payunique} ) if length($options{payunique});
757
758   if ( $DEBUG ) {
759       warn "fake_bop\n cust_pay: ". Dumper($cust_pay) . "\n options: ";
760       warn "  $_ => $options{$_}\n" foreach keys %options;
761   }
762
763   my $error = $cust_pay->insert($options{'manual'} ? ( 'manual' => 1 ) : () );
764
765   if ( $error ) {
766     $cust_pay->invnum(''); #try again with no specific invnum
767     my $error2 = $cust_pay->insert( $options{'manual'} ?
768                                     ( 'manual' => 1 ) : ()
769                                   );
770     if ( $error2 ) {
771       # gah, even with transactions.
772       my $e = 'WARNING: Card/ACH debited but database not updated - '.
773               "error inserting (fake!) payment: $error2".
774               " (previously tried insert with invnum #$options{'invnum'}" .
775               ": $error )";
776       warn $e;
777       return $e;
778     }
779   }
780
781   if ( $options{'paynum_ref'} ) {
782     ${ $options{'paynum_ref'} } = $cust_pay->paynum;
783   }
784
785   return ''; #no error
786
787 }
788
789
790 # item _realtime_bop_result CUST_PAY_PENDING, BOP_OBJECT [ OPTION => VALUE ... ]
791
792 # Wraps up processing of a realtime credit card, ACH (electronic check) or
793 # phone bill transaction.
794
795 sub _realtime_bop_result {
796   my( $self, $cust_pay_pending, $transaction, %options ) = @_;
797
798   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
799
800   if ( $DEBUG ) {
801     warn "$me _realtime_bop_result: pending transaction ".
802       $cust_pay_pending->paypendingnum. "\n";
803     warn "  $_ => $options{$_}\n" foreach keys %options;
804   }
805
806   my $payment_gateway = $options{payment_gateway}
807     or return "no payment gateway in arguments to _realtime_bop_result";
808
809   $cust_pay_pending->status($transaction->is_success() ? 'captured' : 'declined');
810   my $cpp_captured_err = $cust_pay_pending->replace;
811   return $cpp_captured_err if $cpp_captured_err;
812
813   if ( $transaction->is_success() ) {
814
815     my $paybatch = '';
816     if ( $payment_gateway->gatewaynum ) { # agent override
817       $paybatch = $payment_gateway->gatewaynum. '-';
818     }
819
820     $paybatch .= $payment_gateway->gateway_module. ":".
821       $transaction->authorization;
822
823     $paybatch .= ':'. $transaction->order_number
824       if $transaction->can('order_number')
825       && length($transaction->order_number);
826
827     my $cust_pay = new FS::cust_pay ( {
828        'custnum'  => $self->custnum,
829        'invnum'   => $options{'invnum'},
830        'paid'     => $cust_pay_pending->paid,
831        '_date'    => '',
832        'payby'    => $cust_pay_pending->payby,
833        'payinfo'  => $options{'payinfo'},
834        'paybatch' => $paybatch,
835        'paydate'  => $cust_pay_pending->paydate,
836        'pkgnum'   => $cust_pay_pending->pkgnum,
837        'discount_term' => $options{'discount_term'},
838     } );
839     #doesn't hurt to know, even though the dup check is in cust_pay_pending now
840     $cust_pay->payunique( $options{payunique} )
841       if defined($options{payunique}) && length($options{payunique});
842
843     my $oldAutoCommit = $FS::UID::AutoCommit;
844     local $FS::UID::AutoCommit = 0;
845     my $dbh = dbh;
846
847     #start a transaction, insert the cust_pay and set cust_pay_pending.status to done in a single transction
848
849     my $error = $cust_pay->insert($options{'manual'} ? ( 'manual' => 1 ) : () );
850
851     if ( $error ) {
852       $cust_pay->invnum(''); #try again with no specific invnum
853       my $error2 = $cust_pay->insert( $options{'manual'} ?
854                                       ( 'manual' => 1 ) : ()
855                                     );
856       if ( $error2 ) {
857         # gah.  but at least we have a record of the state we had to abort in
858         # from cust_pay_pending now.
859         $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
860         my $e = "WARNING: $options{method} captured but payment not recorded -".
861                 " error inserting payment (". $payment_gateway->gateway_module.
862                 "): $error2".
863                 " (previously tried insert with invnum #$options{'invnum'}" .
864                 ": $error ) - pending payment saved as paypendingnum ".
865                 $cust_pay_pending->paypendingnum. "\n";
866         warn $e;
867         return $e;
868       }
869     }
870
871     my $jobnum = $cust_pay_pending->jobnum;
872     if ( $jobnum ) {
873        my $placeholder = qsearchs( 'queue', { 'jobnum' => $jobnum } );
874       
875        unless ( $placeholder ) {
876          $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
877          my $e = "WARNING: $options{method} captured but job $jobnum not ".
878              "found for paypendingnum ". $cust_pay_pending->paypendingnum. "\n";
879          warn $e;
880          return $e;
881        }
882
883        $error = $placeholder->delete;
884
885        if ( $error ) {
886          $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
887          my $e = "WARNING: $options{method} captured but could not delete ".
888               "job $jobnum for paypendingnum ".
889               $cust_pay_pending->paypendingnum. ": $error\n";
890          warn $e;
891          return $e;
892        }
893
894     }
895     
896     if ( $options{'paynum_ref'} ) {
897       ${ $options{'paynum_ref'} } = $cust_pay->paynum;
898     }
899
900     $cust_pay_pending->status('done');
901     $cust_pay_pending->statustext('captured');
902     $cust_pay_pending->paynum($cust_pay->paynum);
903     my $cpp_done_err = $cust_pay_pending->replace;
904
905     if ( $cpp_done_err ) {
906
907       $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
908       my $e = "WARNING: $options{method} captured but payment not recorded - ".
909               "error updating status for paypendingnum ".
910               $cust_pay_pending->paypendingnum. ": $cpp_done_err \n";
911       warn $e;
912       return $e;
913
914     } else {
915
916       $dbh->commit or die $dbh->errstr if $oldAutoCommit;
917
918       if ( $options{'apply'} ) {
919         my $apply_error = $self->apply_payments_and_credits;
920         if ( $apply_error ) {
921           warn "WARNING: error applying payment: $apply_error\n";
922           #but we still should return no error cause the payment otherwise went
923           #through...
924         }
925       }
926
927       # have a CC surcharge portion --> one-time charge
928       if ( $options{'cc_surcharge'} > 0 ) { 
929             # XXX: this whole block needs to be in a transaction?
930
931           my $invnum;
932           $invnum = $options{'invnum'} if $options{'invnum'};
933           unless ( $invnum ) { # probably from a payment screen
934              # do we have any open invoices? pick earliest
935              # uses the fact that cust_main->cust_bill sorts by date ascending
936              my @open = $self->open_cust_bill;
937              $invnum = $open[0]->invnum if scalar(@open);
938           }
939             
940           unless ( $invnum ) {  # still nothing? pick last closed invoice
941              # again uses fact that cust_main->cust_bill sorts by date ascending
942              my @closed = $self->cust_bill;
943              $invnum = $closed[$#closed]->invnum if scalar(@closed);
944           }
945
946           unless ( $invnum ) {
947             # XXX: unlikely case - pre-paying before any invoices generated
948             # what it should do is create a new invoice and pick it
949                 warn 'CC SURCHARGE AND NO INVOICES PICKED TO APPLY IT!';
950                 return '';
951           }
952
953           my $cust_pkg;
954           my $charge_error = $self->charge({
955                                     'amount'    => $options{'cc_surcharge'},
956                                     'pkg'       => 'Credit Card Surcharge',
957                                     'setuptax'  => 'Y',
958                                     'cust_pkg_ref' => \$cust_pkg,
959                                 });
960           if($charge_error) {
961                 warn 'Unable to add CC surcharge cust_pkg';
962                 return '';
963           }
964
965           $cust_pkg->setup(time);
966           my $cp_error = $cust_pkg->replace;
967           if($cp_error) {
968               warn 'Unable to set setup time on cust_pkg for cc surcharge';
969             # but keep going...
970           }
971                                     
972           my $cust_bill = qsearchs('cust_bill', { 'invnum' => $invnum });
973           unless ( $cust_bill ) {
974               warn "race condition + invoice deletion just happened";
975               return '';
976           }
977
978           my $grand_error = 
979             $cust_bill->add_cc_surcharge($cust_pkg->pkgnum,$options{'cc_surcharge'});
980
981           warn "cannot add CC surcharge to invoice #$invnum: $grand_error"
982             if $grand_error;
983       }
984
985       return ''; #no error
986
987     }
988
989   } else {
990
991     my $perror = $payment_gateway->gateway_module. " error: ".
992       $transaction->error_message;
993
994     my $jobnum = $cust_pay_pending->jobnum;
995     if ( $jobnum ) {
996        my $placeholder = qsearchs( 'queue', { 'jobnum' => $jobnum } );
997       
998        if ( $placeholder ) {
999          my $error = $placeholder->depended_delete;
1000          $error ||= $placeholder->delete;
1001          warn "error removing provisioning jobs after declined paypendingnum ".
1002            $cust_pay_pending->paypendingnum. ": $error\n";
1003        } else {
1004          my $e = "error finding job $jobnum for declined paypendingnum ".
1005               $cust_pay_pending->paypendingnum. "\n";
1006          warn $e;
1007        }
1008
1009     }
1010     
1011     unless ( $transaction->error_message ) {
1012
1013       my $t_response;
1014       if ( $transaction->can('response_page') ) {
1015         $t_response = {
1016                         'page'    => ( $transaction->can('response_page')
1017                                          ? $transaction->response_page
1018                                          : ''
1019                                      ),
1020                         'code'    => ( $transaction->can('response_code')
1021                                          ? $transaction->response_code
1022                                          : ''
1023                                      ),
1024                         'headers' => ( $transaction->can('response_headers')
1025                                          ? $transaction->response_headers
1026                                          : ''
1027                                      ),
1028                       };
1029       } else {
1030         $t_response .=
1031           "No additional debugging information available for ".
1032             $payment_gateway->gateway_module;
1033       }
1034
1035       $perror .= "No error_message returned from ".
1036                    $payment_gateway->gateway_module. " -- ".
1037                  ( ref($t_response) ? Dumper($t_response) : $t_response );
1038
1039     }
1040
1041     if ( !$options{'quiet'} && !$realtime_bop_decline_quiet
1042          && $conf->exists('emaildecline', $self->agentnum)
1043          && grep { $_ ne 'POST' } $self->invoicing_list
1044          && ! grep { $transaction->error_message =~ /$_/ }
1045                    $conf->config('emaildecline-exclude', $self->agentnum)
1046     ) {
1047
1048       # Send a decline alert to the customer.
1049       my $msgnum = $conf->config('decline_msgnum', $self->agentnum);
1050       my $error = '';
1051       if ( $msgnum ) {
1052         # include the raw error message in the transaction state
1053         $cust_pay_pending->setfield('error', $transaction->error_message);
1054         my $msg_template = qsearchs('msg_template', { msgnum => $msgnum });
1055         $error = $msg_template->send( 'cust_main' => $self,
1056                                       'object'    => $cust_pay_pending );
1057       }
1058       else { #!$msgnum
1059
1060         my @templ = $conf->config('declinetemplate');
1061         my $template = new Text::Template (
1062           TYPE   => 'ARRAY',
1063           SOURCE => [ map "$_\n", @templ ],
1064         ) or return "($perror) can't create template: $Text::Template::ERROR";
1065         $template->compile()
1066           or return "($perror) can't compile template: $Text::Template::ERROR";
1067
1068         my $templ_hash = {
1069           'company_name'    =>
1070             scalar( $conf->config('company_name', $self->agentnum ) ),
1071           'company_address' =>
1072             join("\n", $conf->config('company_address', $self->agentnum ) ),
1073           'error'           => $transaction->error_message,
1074         };
1075
1076         my $error = send_email(
1077           'from'    => $conf->config('invoice_from', $self->agentnum ),
1078           'to'      => [ grep { $_ ne 'POST' } $self->invoicing_list ],
1079           'subject' => 'Your payment could not be processed',
1080           'body'    => [ $template->fill_in(HASH => $templ_hash) ],
1081         );
1082       }
1083
1084       $perror .= " (also received error sending decline notification: $error)"
1085         if $error;
1086
1087     }
1088
1089     $cust_pay_pending->status('done');
1090     $cust_pay_pending->statustext("declined: $perror");
1091     my $cpp_done_err = $cust_pay_pending->replace;
1092     if ( $cpp_done_err ) {
1093       my $e = "WARNING: $options{method} declined but pending payment not ".
1094               "resolved - error updating status for paypendingnum ".
1095               $cust_pay_pending->paypendingnum. ": $cpp_done_err \n";
1096       warn $e;
1097       $perror = "$e ($perror)";
1098     }
1099
1100     return $perror;
1101   }
1102
1103 }
1104
1105 =item realtime_botpp_capture CUST_PAY_PENDING [ OPTION => VALUE ... ]
1106
1107 Verifies successful third party processing of a realtime credit card,
1108 ACH (electronic check) or phone bill transaction via a
1109 Business::OnlineThirdPartyPayment realtime gateway.  See
1110 L<http://420.am/business-onlinethirdpartypayment> for supported gateways.
1111
1112 Available options are: I<description>, I<invnum>, I<quiet>, I<paynum_ref>, I<payunique>
1113
1114 The additional options I<payname>, I<city>, I<state>,
1115 I<zip>, I<payinfo> and I<paydate> are also available.  Any of these options,
1116 if set, will override the value from the customer record.
1117
1118 I<description> is a free-text field passed to the gateway.  It defaults to
1119 "Internet services".
1120
1121 If an I<invnum> is specified, this payment (if successful) is applied to the
1122 specified invoice.  If you don't specify an I<invnum> you might want to
1123 call the B<apply_payments> method.
1124
1125 I<quiet> can be set true to surpress email decline notices.
1126
1127 I<paynum_ref> can be set to a scalar reference.  It will be filled in with the
1128 resulting paynum, if any.
1129
1130 I<payunique> is a unique identifier for this payment.
1131
1132 Returns a hashref containing elements bill_error (which will be undefined
1133 upon success) and session_id of any associated session.
1134
1135 =cut
1136
1137 sub realtime_botpp_capture {
1138   my( $self, $cust_pay_pending, %options ) = @_;
1139
1140   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
1141
1142   if ( $DEBUG ) {
1143     warn "$me realtime_botpp_capture: pending transaction $cust_pay_pending\n";
1144     warn "  $_ => $options{$_}\n" foreach keys %options;
1145   }
1146
1147   eval "use Business::OnlineThirdPartyPayment";  
1148   die $@ if $@;
1149
1150   ###
1151   # select the gateway
1152   ###
1153
1154   my $method = FS::payby->payby2bop($cust_pay_pending->payby);
1155
1156   my $payment_gateway;
1157   my $gatewaynum = $cust_pay_pending->getfield('gatewaynum');
1158   $payment_gateway = $gatewaynum ? qsearchs( 'payment_gateway',
1159                 { gatewaynum => $gatewaynum }
1160               )
1161     : $self->agent->payment_gateway( 'method' => $method,
1162                                      # 'invnum'  => $cust_pay_pending->invnum,
1163                                      # 'payinfo' => $cust_pay_pending->payinfo,
1164                                    );
1165
1166   $options{payment_gateway} = $payment_gateway; # for the helper subs
1167
1168   ###
1169   # massage data
1170   ###
1171
1172   my @invoicing_list = $self->invoicing_list_emailonly;
1173   if ( $conf->exists('emailinvoiceautoalways')
1174        || $conf->exists('emailinvoiceauto') && ! @invoicing_list
1175        || ( $conf->exists('emailinvoiceonly') && ! @invoicing_list ) ) {
1176     push @invoicing_list, $self->all_emails;
1177   }
1178
1179   my $email = ($conf->exists('business-onlinepayment-email-override'))
1180               ? $conf->config('business-onlinepayment-email-override')
1181               : $invoicing_list[0];
1182
1183   my %content = ();
1184
1185   $content{email_customer} = 
1186     (    $conf->exists('business-onlinepayment-email_customer')
1187       || $conf->exists('business-onlinepayment-email-override') );
1188       
1189   ###
1190   # run transaction(s)
1191   ###
1192
1193   my $transaction =
1194     new Business::OnlineThirdPartyPayment( $payment_gateway->gateway_module,
1195                                            $self->_bop_options(\%options),
1196                                          );
1197
1198   $transaction->reference({ %options }); 
1199
1200   $transaction->content(
1201     'type'           => $method,
1202     $self->_bop_auth(\%options),
1203     'action'         => 'Post Authorization',
1204     'description'    => $options{'description'},
1205     'amount'         => $cust_pay_pending->paid,
1206     #'invoice_number' => $options{'invnum'},
1207     'customer_id'    => $self->custnum,
1208     'referer'        => 'http://cleanwhisker.420.am/',
1209     'reference'      => $cust_pay_pending->paypendingnum,
1210     'email'          => $email,
1211     'phone'          => $self->daytime || $self->night,
1212     %content, #after
1213     # plus whatever is required for bogus capture avoidance
1214   );
1215
1216   $transaction->submit();
1217
1218   my $error =
1219     $self->_realtime_bop_result( $cust_pay_pending, $transaction, %options );
1220
1221   if ( $options{'apply'} ) {
1222     my $apply_error = $self->apply_payments_and_credits;
1223     if ( $apply_error ) {
1224       warn "WARNING: error applying payment: $apply_error\n";
1225     }
1226   }
1227
1228   return {
1229     bill_error => $error,
1230     session_id => $cust_pay_pending->session_id,
1231   }
1232
1233 }
1234
1235 =item default_payment_gateway
1236
1237 DEPRECATED -- use agent->payment_gateway
1238
1239 =cut
1240
1241 sub default_payment_gateway {
1242   my( $self, $method ) = @_;
1243
1244   die "Real-time processing not enabled\n"
1245     unless $conf->exists('business-onlinepayment');
1246
1247   #warn "default_payment_gateway deprecated -- use agent->payment_gateway\n";
1248
1249   #load up config
1250   my $bop_config = 'business-onlinepayment';
1251   $bop_config .= '-ach'
1252     if $method =~ /^(ECHECK|CHEK)$/ && $conf->exists($bop_config. '-ach');
1253   my ( $processor, $login, $password, $action, @bop_options ) =
1254     $conf->config($bop_config);
1255   $action ||= 'normal authorization';
1256   pop @bop_options if scalar(@bop_options) % 2 && $bop_options[-1] =~ /^\s*$/;
1257   die "No real-time processor is enabled - ".
1258       "did you set the business-onlinepayment configuration value?\n"
1259     unless $processor;
1260
1261   ( $processor, $login, $password, $action, @bop_options )
1262 }
1263
1264 =item realtime_refund_bop METHOD [ OPTION => VALUE ... ]
1265
1266 Refunds a realtime credit card, ACH (electronic check) or phone bill transaction
1267 via a Business::OnlinePayment realtime gateway.  See
1268 L<http://420.am/business-onlinepayment> for supported gateways.
1269
1270 Available methods are: I<CC>, I<ECHECK> and I<LEC>
1271
1272 Available options are: I<amount>, I<reason>, I<paynum>, I<paydate>
1273
1274 Most gateways require a reference to an original payment transaction to refund,
1275 so you probably need to specify a I<paynum>.
1276
1277 I<amount> defaults to the original amount of the payment if not specified.
1278
1279 I<reason> specifies a reason for the refund.
1280
1281 I<paydate> specifies the expiration date for a credit card overriding the
1282 value from the customer record or the payment record. Specified as yyyy-mm-dd
1283
1284 Implementation note: If I<amount> is unspecified or equal to the amount of the
1285 orignal payment, first an attempt is made to "void" the transaction via
1286 the gateway (to cancel a not-yet settled transaction) and then if that fails,
1287 the normal attempt is made to "refund" ("credit") the transaction via the
1288 gateway is attempted.
1289
1290 #The additional options I<payname>, I<address1>, I<address2>, I<city>, I<state>,
1291 #I<zip>, I<payinfo> and I<paydate> are also available.  Any of these options,
1292 #if set, will override the value from the customer record.
1293
1294 #If an I<invnum> is specified, this payment (if successful) is applied to the
1295 #specified invoice.  If you don't specify an I<invnum> you might want to
1296 #call the B<apply_payments> method.
1297
1298 =cut
1299
1300 #some false laziness w/realtime_bop, not enough to make it worth merging
1301 #but some useful small subs should be pulled out
1302 sub realtime_refund_bop {
1303   my $self = shift;
1304
1305   local($DEBUG) = $FS::cust_main::DEBUG if $FS::cust_main::DEBUG > $DEBUG;
1306
1307   my %options = ();
1308   if (ref($_[0]) eq 'HASH') {
1309     %options = %{$_[0]};
1310   } else {
1311     my $method = shift;
1312     %options = @_;
1313     $options{method} = $method;
1314   }
1315
1316   if ( $DEBUG ) {
1317     warn "$me realtime_refund_bop (new): $options{method} refund\n";
1318     warn "  $_ => $options{$_}\n" foreach keys %options;
1319   }
1320
1321   ###
1322   # look up the original payment and optionally a gateway for that payment
1323   ###
1324
1325   my $cust_pay = '';
1326   my $amount = $options{'amount'};
1327
1328   my( $processor, $login, $password, @bop_options, $namespace ) ;
1329   my( $auth, $order_number ) = ( '', '', '' );
1330
1331   if ( $options{'paynum'} ) {
1332
1333     warn "  paynum: $options{paynum}\n" if $DEBUG > 1;
1334     $cust_pay = qsearchs('cust_pay', { paynum=>$options{'paynum'} } )
1335       or return "Unknown paynum $options{'paynum'}";
1336     $amount ||= $cust_pay->paid;
1337
1338     $cust_pay->paybatch =~ /^((\d+)\-)?(\w+):\s*([\w\-\/ ]*)(:([\w\-]+))?$/
1339       or return "Can't parse paybatch for paynum $options{'paynum'}: ".
1340                 $cust_pay->paybatch;
1341     my $gatewaynum = '';
1342     ( $gatewaynum, $processor, $auth, $order_number ) = ( $2, $3, $4, $6 );
1343
1344     if ( $gatewaynum ) { #gateway for the payment to be refunded
1345
1346       my $payment_gateway =
1347         qsearchs('payment_gateway', { 'gatewaynum' => $gatewaynum } );
1348       die "payment gateway $gatewaynum not found"
1349         unless $payment_gateway;
1350
1351       $processor   = $payment_gateway->gateway_module;
1352       $login       = $payment_gateway->gateway_username;
1353       $password    = $payment_gateway->gateway_password;
1354       $namespace   = $payment_gateway->gateway_namespace;
1355       @bop_options = $payment_gateway->options;
1356
1357     } else { #try the default gateway
1358
1359       my $conf_processor;
1360       my $payment_gateway =
1361         $self->agent->payment_gateway('method' => $options{method});
1362
1363       ( $conf_processor, $login, $password, $namespace ) =
1364         map { my $method = "gateway_$_"; $payment_gateway->$method }
1365           qw( module username password namespace );
1366
1367       @bop_options = $payment_gateway->gatewaynum
1368                        ? $payment_gateway->options
1369                        : @{ $payment_gateway->get('options') };
1370
1371       return "processor of payment $options{'paynum'} $processor does not".
1372              " match default processor $conf_processor"
1373         unless $processor eq $conf_processor;
1374
1375     }
1376
1377
1378   } else { # didn't specify a paynum, so look for agent gateway overrides
1379            # like a normal transaction 
1380  
1381     my $payment_gateway =
1382       $self->agent->payment_gateway( 'method'  => $options{method},
1383                                      #'payinfo' => $payinfo,
1384                                    );
1385     my( $processor, $login, $password, $namespace ) =
1386       map { my $method = "gateway_$_"; $payment_gateway->$method }
1387         qw( module username password namespace );
1388
1389     my @bop_options = $payment_gateway->gatewaynum
1390                         ? $payment_gateway->options
1391                         : @{ $payment_gateway->get('options') };
1392
1393   }
1394   return "neither amount nor paynum specified" unless $amount;
1395
1396   eval "use $namespace";  
1397   die $@ if $@;
1398
1399   my %content = (
1400     'type'           => $options{method},
1401     'login'          => $login,
1402     'password'       => $password,
1403     'order_number'   => $order_number,
1404     'amount'         => $amount,
1405     'referer'        => 'http://cleanwhisker.420.am/', #XXX fix referer :/
1406   );
1407   $content{authorization} = $auth
1408     if length($auth); #echeck/ACH transactions have an order # but no auth
1409                       #(at least with authorize.net)
1410
1411   my $disable_void_after;
1412   if ($conf->exists('disable_void_after')
1413       && $conf->config('disable_void_after') =~ /^(\d+)$/) {
1414     $disable_void_after = $1;
1415   }
1416
1417   #first try void if applicable
1418   if ( $cust_pay && $cust_pay->paid == $amount
1419     && (
1420       ( not defined($disable_void_after) )
1421       || ( time < ($cust_pay->_date + $disable_void_after ) )
1422     )
1423   ) {
1424     warn "  attempting void\n" if $DEBUG > 1;
1425     my $void = new Business::OnlinePayment( $processor, @bop_options );
1426     if ( $void->can('info') ) {
1427       if ( $cust_pay->payby eq 'CARD'
1428            && $void->info('CC_void_requires_card') )
1429       {
1430         $content{'card_number'} = $cust_pay->payinfo;
1431       } elsif ( $cust_pay->payby eq 'CHEK'
1432                 && $void->info('ECHECK_void_requires_account') )
1433       {
1434         ( $content{'account_number'}, $content{'routing_code'} ) =
1435           split('@', $cust_pay->payinfo);
1436         $content{'name'} = $self->get('first'). ' '. $self->get('last');
1437       }
1438     }
1439     $void->content( 'action' => 'void', %content );
1440     $void->test_transaction(1)
1441       if $conf->exists('business-onlinepayment-test_transaction');
1442     $void->submit();
1443     if ( $void->is_success ) {
1444       my $error = $cust_pay->void($options{'reason'});
1445       if ( $error ) {
1446         # gah, even with transactions.
1447         my $e = 'WARNING: Card/ACH voided but database not updated - '.
1448                 "error voiding payment: $error";
1449         warn $e;
1450         return $e;
1451       }
1452       warn "  void successful\n" if $DEBUG > 1;
1453       return '';
1454     }
1455   }
1456
1457   warn "  void unsuccessful, trying refund\n"
1458     if $DEBUG > 1;
1459
1460   #massage data
1461   my $address = $self->address1;
1462   $address .= ", ". $self->address2 if $self->address2;
1463
1464   my($payname, $payfirst, $paylast);
1465   if ( $self->payname && $options{method} ne 'ECHECK' ) {
1466     $payname = $self->payname;
1467     $payname =~ /^\s*([\w \,\.\-\']*)?\s+([\w\,\.\-\']+)\s*$/
1468       or return "Illegal payname $payname";
1469     ($payfirst, $paylast) = ($1, $2);
1470   } else {
1471     $payfirst = $self->getfield('first');
1472     $paylast = $self->getfield('last');
1473     $payname =  "$payfirst $paylast";
1474   }
1475
1476   my @invoicing_list = $self->invoicing_list_emailonly;
1477   if ( $conf->exists('emailinvoiceautoalways')
1478        || $conf->exists('emailinvoiceauto') && ! @invoicing_list
1479        || ( $conf->exists('emailinvoiceonly') && ! @invoicing_list ) ) {
1480     push @invoicing_list, $self->all_emails;
1481   }
1482
1483   my $email = ($conf->exists('business-onlinepayment-email-override'))
1484               ? $conf->config('business-onlinepayment-email-override')
1485               : $invoicing_list[0];
1486
1487   my $payip = exists($options{'payip'})
1488                 ? $options{'payip'}
1489                 : $self->payip;
1490   $content{customer_ip} = $payip
1491     if length($payip);
1492
1493   my $payinfo = '';
1494   if ( $options{method} eq 'CC' ) {
1495
1496     if ( $cust_pay ) {
1497       $content{card_number} = $payinfo = $cust_pay->payinfo;
1498       (exists($options{'paydate'}) ? $options{'paydate'} : $cust_pay->paydate)
1499         =~ /^\d{2}(\d{2})[\/\-](\d+)[\/\-]\d+$/ &&
1500         ($content{expiration} = "$2/$1");  # where available
1501     } else {
1502       $content{card_number} = $payinfo = $self->payinfo;
1503       (exists($options{'paydate'}) ? $options{'paydate'} : $self->paydate)
1504         =~ /^\d{2}(\d{2})[\/\-](\d+)[\/\-]\d+$/;
1505       $content{expiration} = "$2/$1";
1506     }
1507
1508   } elsif ( $options{method} eq 'ECHECK' ) {
1509
1510     if ( $cust_pay ) {
1511       $payinfo = $cust_pay->payinfo;
1512     } else {
1513       $payinfo = $self->payinfo;
1514     } 
1515     ( $content{account_number}, $content{routing_code} )= split('@', $payinfo );
1516     $content{bank_name} = $self->payname;
1517     $content{account_type} = 'CHECKING';
1518     $content{account_name} = $payname;
1519     $content{customer_org} = $self->company ? 'B' : 'I';
1520     $content{customer_ssn} = $self->ss;
1521   } elsif ( $options{method} eq 'LEC' ) {
1522     $content{phone} = $payinfo = $self->payinfo;
1523   }
1524
1525   #then try refund
1526   my $refund = new Business::OnlinePayment( $processor, @bop_options );
1527   my %sub_content = $refund->content(
1528     'action'         => 'credit',
1529     'customer_id'    => $self->custnum,
1530     'last_name'      => $paylast,
1531     'first_name'     => $payfirst,
1532     'name'           => $payname,
1533     'address'        => $address,
1534     'city'           => $self->city,
1535     'state'          => $self->state,
1536     'zip'            => $self->zip,
1537     'country'        => $self->country,
1538     'email'          => $email,
1539     'phone'          => $self->daytime || $self->night,
1540     %content, #after
1541   );
1542   warn join('', map { "  $_ => $sub_content{$_}\n" } keys %sub_content )
1543     if $DEBUG > 1;
1544   $refund->test_transaction(1)
1545     if $conf->exists('business-onlinepayment-test_transaction');
1546   $refund->submit();
1547
1548   return "$processor error: ". $refund->error_message
1549     unless $refund->is_success();
1550
1551   my $paybatch = "$processor:". $refund->authorization;
1552   $paybatch .= ':'. $refund->order_number
1553     if $refund->can('order_number') && $refund->order_number;
1554
1555   while ( $cust_pay && $cust_pay->unapplied < $amount ) {
1556     my @cust_bill_pay = $cust_pay->cust_bill_pay;
1557     last unless @cust_bill_pay;
1558     my $cust_bill_pay = pop @cust_bill_pay;
1559     my $error = $cust_bill_pay->delete;
1560     last if $error;
1561   }
1562
1563   my $cust_refund = new FS::cust_refund ( {
1564     'custnum'  => $self->custnum,
1565     'paynum'   => $options{'paynum'},
1566     'refund'   => $amount,
1567     '_date'    => '',
1568     'payby'    => $bop_method2payby{$options{method}},
1569     'payinfo'  => $payinfo,
1570     'paybatch' => $paybatch,
1571     'reason'   => $options{'reason'} || 'card or ACH refund',
1572   } );
1573   my $error = $cust_refund->insert;
1574   if ( $error ) {
1575     $cust_refund->paynum(''); #try again with no specific paynum
1576     my $error2 = $cust_refund->insert;
1577     if ( $error2 ) {
1578       # gah, even with transactions.
1579       my $e = 'WARNING: Card/ACH refunded but database not updated - '.
1580               "error inserting refund ($processor): $error2".
1581               " (previously tried insert with paynum #$options{'paynum'}" .
1582               ": $error )";
1583       warn $e;
1584       return $e;
1585     }
1586   }
1587
1588   ''; #no error
1589
1590 }
1591
1592 =back
1593
1594 =head1 BUGS
1595
1596 Not autoloaded.
1597
1598 =head1 SEE ALSO
1599
1600 L<FS::cust_main>, L<FS::cust_main::Billing>
1601
1602 =cut
1603
1604 1;