record and show batch payment status info, #21117
[freeside.git] / FS / FS / cust_pay_batch.pm
1 package FS::cust_pay_batch;
2
3 use strict;
4 use vars qw( @ISA $DEBUG );
5 use Carp qw( confess );
6 use Business::CreditCard 0.28;
7 use FS::Record qw(dbh qsearch qsearchs);
8 use FS::payinfo_Mixin;
9 use FS::cust_main;
10 use FS::cust_bill;
11
12 @ISA = qw( FS::payinfo_Mixin FS::cust_main_Mixin FS::Record );
13
14 # 1 is mostly method/subroutine entry and options
15 # 2 traces progress of some operations
16 # 3 is even more information including possibly sensitive data
17 $DEBUG = 0;
18
19 =head1 NAME
20
21 FS::cust_pay_batch - Object methods for batch cards
22
23 =head1 SYNOPSIS
24
25   use FS::cust_pay_batch;
26
27   $record = new FS::cust_pay_batch \%hash;
28   $record = new FS::cust_pay_batch { 'column' => 'value' };
29
30   $error = $record->insert;
31
32   $error = $new_record->replace($old_record);
33
34   $error = $record->delete;
35
36   $error = $record->check;
37
38   #deprecated# $error = $record->retriable;
39
40 =head1 DESCRIPTION
41
42 An FS::cust_pay_batch object represents a credit card transaction ready to be
43 batched (sent to a processor).  FS::cust_pay_batch inherits from FS::Record.  
44 Typically called by the collect method of an FS::cust_main object.  The
45 following fields are currently supported:
46
47 =over 4
48
49 =item paybatchnum - primary key (automatically assigned)
50
51 =item batchnum - indentifies group in batch
52
53 =item payby - CARD/CHEK/LECB/BILL/COMP
54
55 =item payinfo
56
57 =item exp - card expiration 
58
59 =item amount 
60
61 =item invnum - invoice
62
63 =item custnum - customer 
64
65 =item payname - name on card 
66
67 =item first - name 
68
69 =item last - name 
70
71 =item address1 
72
73 =item address2 
74
75 =item city 
76
77 =item state 
78
79 =item zip 
80
81 =item country 
82
83 =item status - 'Approved' or 'Declined'
84
85 =item error_message - the error returned by the gateway if any
86
87 =back
88
89 =head1 METHODS
90
91 =over 4
92
93 =item new HASHREF
94
95 Creates a new record.  To add the record to the database, see L<"insert">.
96
97 Note that this stores the hash reference, not a distinct copy of the hash it
98 points to.  You can ask the object for a copy with the I<hash> method.
99
100 =cut
101
102 sub table { 'cust_pay_batch'; }
103
104 =item insert
105
106 Adds this record to the database.  If there is an error, returns the error,
107 otherwise returns false.
108
109 =item delete
110
111 Delete this record from the database.  If there is an error, returns the error,
112 otherwise returns false.
113
114 =item replace OLD_RECORD
115
116 Replaces the OLD_RECORD with this one in the database.  If there is an error,
117 returns the error, otherwise returns false.
118
119 =item check
120
121 Checks all fields to make sure this is a valid transaction.  If there is
122 an error, returns the error, otherwise returns false.  Called by the insert
123 and replace methods.
124
125 =cut
126
127 sub check {
128   my $self = shift;
129
130   my $error = 
131       $self->ut_numbern('paybatchnum')
132     || $self->ut_numbern('trancode') #deprecated
133     || $self->ut_money('amount')
134     || $self->ut_number('invnum')
135     || $self->ut_number('custnum')
136     || $self->ut_text('address1')
137     || $self->ut_textn('address2')
138     || $self->ut_text('city')
139     || $self->ut_textn('state')
140   ;
141
142   return $error if $error;
143
144   $self->getfield('last') =~ /^([\w \,\.\-\']+)$/ or return "Illegal last name";
145   $self->setfield('last',$1);
146
147   $self->first =~ /^([\w \,\.\-\']+)$/ or return "Illegal first name";
148   $self->first($1);
149
150   $error = $self->payinfo_check();
151   return $error if $error;
152
153   if ( $self->exp eq '' ) {
154     return "Expiration date required"
155       unless $self->payby =~ /^(CHEK|DCHK|LECB|WEST)$/;
156     $self->exp('');
157   } else {
158     if ( $self->exp =~ /^(\d{4})[\/\-](\d{1,2})[\/\-](\d{1,2})$/ ) {
159       $self->exp("$1-$2-$3");
160     } elsif ( $self->exp =~ /^(\d{1,2})[\/\-](\d{2}(\d{2})?)$/ ) {
161       if ( length($2) == 4 ) {
162         $self->exp("$2-$1-01");
163       } elsif ( $2 > 98 ) { #should pry change to check for "this year"
164         $self->exp("19$2-$1-01");
165       } else {
166         $self->exp("20$2-$1-01");
167       }
168     } else {
169       return "Illegal expiration date";
170     }
171   }
172
173   if ( $self->payname eq '' ) {
174     $self->payname( $self->first. " ". $self->getfield('last') );
175   } else {
176     $self->payname =~ /^([\w \,\.\-\']+)$/
177       or return "Illegal billing name";
178     $self->payname($1);
179   }
180
181   #we have lots of old zips in there... don't hork up batch results cause of em
182   $self->zip =~ /^\s*(\w[\w\-\s]{2,8}\w)\s*$/
183     or return "Illegal zip: ". $self->zip;
184   $self->zip($1);
185
186   $self->country =~ /^(\w\w)$/ or return "Illegal country: ". $self->country;
187   $self->country($1);
188
189   #$error = $self->ut_zip('zip', $self->country);
190   #return $error if $error;
191
192   #check invnum, custnum, ?
193
194   $self->SUPER::check;
195 }
196
197 =item cust_main
198
199 Returns the customer (see L<FS::cust_main>) for this batched credit card
200 payment.
201
202 =cut
203
204 sub cust_main {
205   my $self = shift;
206   qsearchs( 'cust_main', { 'custnum' => $self->custnum } );
207 }
208
209 #you know what, screw this in the new world of events.  we should be able to
210 #get the event defs to retry (remove once.pm condition, add every.pm) without
211 #mucking about with statuses of previous cust_event records.  right?
212 #
213 #=item retriable
214 #
215 #Marks the corresponding event (see L<FS::cust_bill_event>) for this batched
216 #credit card payment as retriable.  Useful if the corresponding financial
217 #institution account was declined for temporary reasons and/or a manual 
218 #retry is desired.
219 #
220 #Implementation details: For the named customer's invoice, changes the
221 #statustext of the 'done' (without statustext) event to 'retriable.'
222 #
223 #=cut
224
225 sub retriable {
226
227   confess "deprecated method cust_pay_batch->retriable called; try removing ".
228           "the once condition and adding an every condition?";
229
230   my $self = shift;
231
232   local $SIG{HUP} = 'IGNORE';        #Hmm
233   local $SIG{INT} = 'IGNORE';
234   local $SIG{QUIT} = 'IGNORE';
235   local $SIG{TERM} = 'IGNORE';
236   local $SIG{TSTP} = 'IGNORE';
237   local $SIG{PIPE} = 'IGNORE';
238
239   my $oldAutoCommit = $FS::UID::AutoCommit;
240   local $FS::UID::AutoCommit = 0;
241   my $dbh = dbh;
242
243   my $cust_bill = qsearchs('cust_bill', { 'invnum' => $self->invnum } )
244     or return "event $self->eventnum references nonexistant invoice $self->invnum";
245
246   warn "cust_pay_batch->retriable working with self of " . $self->paybatchnum . " and invnum of " . $self->invnum;
247   my @cust_bill_event =
248     sort { $a->part_bill_event->seconds <=> $b->part_bill_event->seconds }
249       grep {
250         $_->part_bill_event->eventcode =~ /\$cust_bill->batch_card/
251           && $_->status eq 'done'
252           && ! $_->statustext
253         }
254       $cust_bill->cust_bill_event;
255   # complain loudly if scalar(@cust_bill_event) > 1 ?
256   my $error = $cust_bill_event[0]->retriable;
257   if ($error ) {
258     # gah, even with transactions.
259     $dbh->commit if $oldAutoCommit; #well.
260     return "error marking invoice event retriable: $error";
261   }
262   '';
263 }
264
265 =item approve PAYBATCH
266
267 Approve this payment.  This will replace the existing record with the 
268 same paybatchnum, set its status to 'Approved', and generate a payment 
269 record (L<FS::cust_pay>).  This should only be called from the batch 
270 import process.
271
272 =cut
273
274 sub approve {
275   # to break up the Big Wall of Code that is import_results
276   my $new = shift;
277   my $paybatch = shift;
278   my $paybatchnum = $new->paybatchnum;
279   my $old = qsearchs('cust_pay_batch', { paybatchnum => $paybatchnum })
280     or return "paybatchnum $paybatchnum not found";
281   return "paybatchnum $paybatchnum already resolved ('".$old->status."')" 
282     if $old->status;
283   $new->status('Approved');
284   my $error = $new->replace($old);
285   if ( $error ) {
286     return "error updating status of paybatchnum $paybatchnum: $error\n";
287   }
288   my $cust_pay = new FS::cust_pay ( {
289       'custnum'   => $new->custnum,
290       'payby'     => $new->payby,
291       'paybatch'  => $paybatch,
292       'payinfo'   => $new->payinfo || $old->payinfo,
293       'paid'      => $new->paid,
294       '_date'     => $new->_date,
295       'usernum'   => $new->usernum,
296       'batchnum'  => $new->batchnum,
297     } );
298   $error = $cust_pay->insert;
299   if ( $error ) {
300     return "error inserting payment for paybatchnum $paybatchnum: $error\n";
301   }
302   $cust_pay->cust_main->apply_payments;
303   return;
304 }
305
306 =item decline [ REASON ]
307
308 Decline this payment.  This will replace the existing record with the 
309 same paybatchnum, set its status to 'Declined', and run collection events
310 as appropriate.  This should only be called from the batch import process.
311
312 REASON is a string description of the decline reason, defaulting to 
313 'Returned payment'.
314
315 =cut
316
317 sub decline {
318   my $new = shift;
319   my $reason = shift || 'Returned payment';
320   #my $conf = new FS::Conf;
321
322   my $paybatchnum = $new->paybatchnum;
323   my $old = qsearchs('cust_pay_batch', { paybatchnum => $paybatchnum })
324     or return "paybatchnum $paybatchnum not found";
325   if ( $old->status ) {
326     # Handle the case where payments are rejected after the batch has been 
327     # approved.  FS::pay_batch::import_results won't allow results to be 
328     # imported to a closed batch unless batch-manual_approval is enabled, 
329     # so we don't check it here.
330 #    if ( $conf->exists('batch-manual_approval') and
331     if ( lc($old->status) eq 'approved' ) {
332       # Void the payment
333       my $cust_pay = qsearchs('cust_pay', { 
334           custnum  => $new->custnum,
335           paybatch => $new->batchnum
336         });
337       if ( !$cust_pay ) {
338         # should never happen...
339         return "failed to revoke paybatchnum $paybatchnum, payment not found";
340       }
341       $cust_pay->void($reason);
342     }
343     else {
344       # normal case: refuse to do anything
345       return "paybatchnum $paybatchnum already resolved ('".$old->status."')";
346     }
347   } # !$old->status
348   $new->status('Declined');
349   $new->error_message($reason);
350   my $error = $new->replace($old);
351   if ( $error ) {
352     return "error updating status of paybatchnum $paybatchnum: $error\n";
353   }
354   my $due_cust_event = $new->cust_main->due_cust_event(
355     'eventtable'  => 'cust_pay_batch',
356     'objects'     => [ $new ],
357   );
358   if ( !ref($due_cust_event) ) {
359     return $due_cust_event;
360   }
361   # XXX breaks transaction integrity
362   foreach my $cust_event (@$due_cust_event) {
363     next unless $cust_event->test_conditions;
364     if ( my $error = $cust_event->do_event() ) {
365       return $error;
366     }
367   }
368   return;
369 }
370
371 =back
372
373 =head1 BUGS
374
375 There should probably be a configuration file with a list of allowed credit
376 card types.
377
378 =head1 SEE ALSO
379
380 L<FS::cust_main>, L<FS::Record>
381
382 =cut
383
384 1;
385