import torrus 1.0.9
[freeside.git] / FS / FS / cust_event.pm
1 package FS::cust_event;
2
3 use strict;
4 use base qw( FS::cust_main_Mixin FS::Record );
5 use vars qw( @ISA $DEBUG $me );
6 use Carp qw( croak confess );
7 use FS::Record qw( qsearch qsearchs dbdef );
8 use FS::part_event;
9 #for cust_X
10 use FS::cust_main;
11 use FS::cust_pkg;
12 use FS::cust_bill;
13
14 $DEBUG = 0;
15 $me = '[FS::cust_event]';
16
17 =head1 NAME
18
19 FS::cust_event - Object methods for cust_event records
20
21 =head1 SYNOPSIS
22
23   use FS::cust_event;
24
25   $record = new FS::cust_event \%hash;
26   $record = new FS::cust_event { 'column' => 'value' };
27
28   $error = $record->insert;
29
30   $error = $new_record->replace($old_record);
31
32   $error = $record->delete;
33
34   $error = $record->check;
35
36 =head1 DESCRIPTION
37
38 An FS::cust_event object represents an completed event.  FS::cust_event
39 inherits from FS::Record.  The following fields are currently supported:
40
41 =over 4
42
43 =item eventnum - primary key
44
45 =item eventpart - event definition (see L<FS::part_event>)
46
47 =item tablenum - customer, package or invoice, depending on the value of part_event.eventtable (see L<FS::cust_main>, L<FS::cust_pkg>, and L<FS::cust_bill>)
48
49 =item _date - specified as a UNIX timestamp; see L<perlfunc/"time">.  Also see
50 L<Time::Local> and L<Date::Parse> for conversion functions.
51
52 =item status - event status: B<new>, B<locked>, B<done> or B<failed>.  Note: B<done> indicates the event is complete and should not be retried (statustext may still be set to an optional message), while B<failed> indicates the event failed and should be retried.
53
54 =item statustext - additional status detail (i.e. error or progress message)
55
56 =back
57
58 =head1 METHODS
59
60 =over 4
61
62 =item new HASHREF
63
64 Creates a new completed invoice event.  To add the compelted invoice event to
65 the database, see L<"insert">.
66
67 Note that this stores the hash reference, not a distinct copy of the hash it
68 points to.  You can ask the object for a copy with the I<hash> method.
69
70 =cut
71
72 # the new method can be inherited from FS::Record, if a table method is defined
73
74 sub table { 'cust_event'; }
75
76 sub cust_linked { $_[0]->cust_main_custnum; } 
77 sub cust_unlinked_msg {
78   my $self = shift;
79   "WARNING: can't find cust_main.custnum ". $self->custnum;
80   #' (cust_bill.invnum '. $self->invnum. ')';
81 }
82 sub custnum {
83   my $self = shift;
84   $self->cust_main_custnum(@_) || $self->SUPER::custnum(@_);
85 }
86
87 =item insert
88
89 Adds this record to the database.  If there is an error, returns the error,
90 otherwise returns false.
91
92 =cut
93
94 # the insert method can be inherited from FS::Record
95
96 =item delete
97
98 Delete this record from the database.
99
100 =cut
101
102 # the delete method can be inherited from FS::Record
103
104 =item replace OLD_RECORD
105
106 Replaces the OLD_RECORD with this one in the database.  If there is an error,
107 returns the error, otherwise returns false.
108
109 =cut
110
111 # the replace method can be inherited from FS::Record
112
113 =item check
114
115 Checks all fields to make sure this is a valid completed invoice event.  If
116 there is an error, returns the error, otherwise returns false.  Called by the
117 insert and replace methods.
118
119 =cut
120
121 # the check method should currently be supplied - FS::Record contains some
122 # data checking routines
123
124 sub check {
125   my $self = shift;
126
127   my $error = $self->ut_numbern('eventnum')
128     || $self->ut_foreign_key('eventpart', 'part_event', 'eventpart')
129   ;
130   return $error if $error;
131
132   my $eventtable = $self->part_event->eventtable;
133   my $dbdef_eventtable = dbdef->table( $eventtable );
134
135   $error = 
136        $self->ut_foreign_key( 'tablenum',
137                               $eventtable,
138                               $dbdef_eventtable->primary_key
139                             )
140     || $self->ut_number('_date')
141     || $self->ut_enum('status', [qw( new locked done failed )])
142     || $self->ut_anything('statustext')
143   ;
144   return $error if $error;
145
146   $self->SUPER::check;
147 }
148
149 =item part_event
150
151 Returns the event definition (see L<FS::part_event>) for this completed event.
152
153 =cut
154
155 sub part_event {
156   my $self = shift;
157   qsearchs( 'part_event', { 'eventpart' => $self->eventpart } );
158 }
159
160 =item cust_X
161
162 Returns the customer, package, invoice or batched payment (see
163 L<FS::cust_main>, L<FS::cust_pkg>, L<FS::cust_bill> or L<FS::cust_pay_batch>)
164 for this completed invoice event.
165
166 =cut
167
168 sub cust_bill {
169   croak "FS::cust_event::cust_bill called";
170 }
171
172 sub cust_X {
173   my $self = shift;
174   my $eventtable = $self->part_event->eventtable;
175   my $dbdef_table = dbdef->table( $eventtable );
176   my $primary_key = $dbdef_table->primary_key;
177   qsearchs( $eventtable, { $primary_key => $self->tablenum } );
178 }
179
180 =item test_conditions [ OPTION => VALUE ... ]
181
182 Tests conditions for this event, returns true if all conditions are satisfied,
183 false otherwise.
184
185 =cut
186
187 sub test_conditions {
188   my( $self, %opt ) = @_;
189   my $part_event = $self->part_event;
190   my $object = $self->cust_X;
191   my @conditions = $part_event->part_event_condition;
192   $opt{'cust_event'} = $self;
193
194   #no unsatisfied conditions
195   #! grep ! $_->condition( $object, %opt ), @conditions;
196   my @unsatisfied = grep ! $_->condition( $object, %opt ), @conditions;
197
198   if ( $opt{'stats_hashref'} ) {
199     foreach my $unsat (@unsatisfied) {
200       $opt{'stats_hashref'}->{$unsat->conditionname}++;
201     }
202   } 
203
204   ! @unsatisfied;
205 }
206
207 =item do_event
208
209 Runs the event action.
210
211 =cut
212
213 sub do_event {
214   my $self = shift;
215
216   my $part_event = $self->part_event;
217
218   my $object = $self->cust_X;
219   my $obj_pkey = $object->primary_key;
220   my $for = "for ". $object->table. " ". $object->$obj_pkey();
221   warn "running cust_event ". $self->eventnum.
222        " (". $part_event->action. ") $for\n"
223     if $DEBUG;
224
225   my $error;
226   {
227     local $SIG{__DIE__}; # don't want Mason __DIE__ handler active
228     $error = eval { $part_event->do_action($object, $self); };
229   }
230
231   my $status = '';
232   my $statustext = '';
233   if ( $@ ) {
234     $status = 'failed';
235     #$statustext = $@;
236     $statustext = "Error running ". $part_event->action. " action: $@";
237   } elsif ( $error ) {
238     $status = 'done';
239     $statustext = $error;
240   } else {
241     $status = 'done';
242   }
243
244   #replace or add myself
245   $self->_date(time);
246   $self->status($status);
247   $self->statustext($statustext);
248
249   $error = $self->eventnum ? $self->replace : $self->insert;
250   if ( $error ) {
251     #this is why we need that locked state...
252     my $e = 'WARNING: Event run but database not updated - '.
253             'error replacing or inserting cust_event '. $self->eventnum.
254             " $for: $error\n";
255     warn $e;
256     return $e;
257   }
258
259   '';
260
261 }
262
263 =item retry
264
265 Changes the status of this event from B<done> to B<failed>, allowing it to be
266 retried.
267
268 =cut
269
270 sub retry {
271   my $self = shift;
272   return '' unless $self->status eq 'done';
273   my $old = ref($self)->new( { $self->hash } );
274   $self->status('failed');
275   $self->replace($old);
276 }
277
278 #=item retryable
279 #
280 #Changes the statustext of this event to B<retriable>, rendering it 
281 #retriable (should retry be called).
282 #
283 #=cut
284
285 sub retriable {
286   confess "cust_event->retriable called";
287   my $self = shift;
288   return '' unless $self->status eq 'done';
289   my $old = ref($self)->new( { $self->hash } );
290   $self->statustext('retriable');
291   $self->replace($old);
292 }
293
294 =item join_cust_sql
295
296 =cut
297
298 sub join_sql {
299   #my $class = shift;
300
301   "
302        JOIN part_event USING ( eventpart )
303   LEFT JOIN cust_bill ON ( eventtable = 'cust_bill' AND tablenum = invnum  )
304   LEFT JOIN cust_pkg  ON ( eventtable = 'cust_pkg'  AND tablenum = pkgnum  )
305   LEFT JOIN cust_main ON (    ( eventtable = 'cust_main' AND tablenum = cust_main.custnum )
306                            OR ( eventtable = 'cust_bill' AND cust_bill.custnum = cust_main.custnum )
307                            OR ( eventtable = 'cust_pkg'  AND cust_pkg.custnum  = cust_main.custnum )
308                          )
309   ";
310
311 }
312
313 =item search_sql_where HASHREF
314
315 Class method which returns an SQL WHERE fragment to search for parameters
316 specified in HASHREF.  Valid parameters are
317
318 =over 4
319
320 =item agentnum
321
322 =item custnum
323
324 =item invnum
325
326 =item pkgnum
327
328 =item failed
329
330 =item beginning
331
332 =item ending
333
334 =item payby
335
336 =item 
337
338 =back
339
340 =cut
341
342 #Note: validates all passed-in data; i.e. safe to use with unchecked CGI params.
343 #sub 
344
345 sub search_sql_where {
346   my($class, $param) = @_;
347   if ( $DEBUG ) {
348     warn "$me search_sql_where called with params: \n".
349          join("\n", map { "  $_: ". $param->{$_} } keys %$param ). "\n";
350   }
351
352   my @search = $class->cust_search_sql($param);
353
354   #eventpart
355   my @eventpart = ref($param->{'eventpart'})
356                     ? @{ $param->{'eventpart'} }
357                     : split(',', $param->{'eventpart'});
358   @eventpart = grep /^(\d+)$/, @eventpart;
359   if ( @eventpart ) {
360     push @search, 'eventpart IN ('. join(',', @eventpart). ')';
361   }
362
363   if ( $param->{'beginning'} =~ /^(\d+)$/ ) {
364     push @search, "cust_event._date >= $1";
365   }
366   if ( $param->{'ending'} =~ /^(\d+)$/ ) {
367     push @search, "cust_event._date <= $1";
368   }
369
370   if ( $param->{'failed'} ) {
371     push @search, "statustext != ''",
372                   "statustext IS NOT NULL",
373                   "statustext != 'N/A'";
374   }
375
376   if ( $param->{'custnum'} =~ /^(\d+)$/ ) {
377     push @search, "cust_main.custnum = '$1'";
378   }
379
380   if ( $param->{'invnum'} =~ /^(\d+)$/ ) {
381     push @search, "part_event.eventtable = 'cust_bill'",
382                   "tablenum = '$1'";
383   }
384
385   if ( $param->{'pkgnum'} =~ /^(\d+)$/ ) {
386     push @search, "part_event.eventtable = 'cust_pkg'",
387                   "tablenum = '$1'";
388   }
389
390   my $where = 'WHERE '. join(' AND ', @search );
391
392   join(' AND ', @search );
393
394 }
395
396 =back
397
398 =head1 SUBROUTINES
399
400 =over 4
401
402 =item reprint
403
404 =cut
405
406 sub process_reprint {
407   process_re_X('print', @_);
408 }
409
410 =item reemail
411
412 =cut
413
414 sub process_reemail {
415   process_re_X('email', @_);
416 }
417
418 =item refax
419
420 =cut
421
422 sub process_refax {
423   process_re_X('fax', @_);
424 }
425
426 use Storable qw(thaw);
427 use Data::Dumper;
428 use MIME::Base64;
429 sub process_re_X {
430   my( $method, $job ) = ( shift, shift );
431
432   my $param = thaw(decode_base64(shift));
433   warn Dumper($param) if $DEBUG;
434
435   re_X(
436     $method,
437     $param,
438     $job,
439   );
440
441 }
442
443 sub re_X {
444   my($method, $param, $job) = @_;
445
446   my $search_sql = FS::cust_event->search_sql_where($param);
447
448   #maybe not...?  we do want the "re-" action to match the search more closely
449   #            # yuck!  hardcoded *AND* sequential scans!
450   #my $where = " WHERE action LIKE 'cust_bill_send%' ".
451   #           ( $search_sql ? " AND $search_sql" : "" );
452
453   my $where = ( $search_sql ? " WHERE $search_sql" : "" );
454
455   my @cust_event = qsearch({
456     'table'     => 'cust_event',
457     'addl_from' => FS::cust_event->join_sql(),
458     'hashref'   => {},
459     'extra_sql' => $where,
460   });
461
462   warn "$me re_X found ". scalar(@cust_event). " events\n"
463     if $DEBUG;
464
465   my( $num, $last, $min_sec ) = (0, time, 5); #progresbar foo
466   foreach my $cust_event ( @cust_event ) {
467
468     my $cust_X = $cust_event->cust_X; # cust_bill
469     next unless $cust_X->can($method);
470
471     $cust_X->$method( $cust_event->part_event->templatename
472                       || $cust_X->agent_template
473                     );
474
475     if ( $job ) { #progressbar foo
476       $num++;
477       if ( time - $min_sec > $last ) {
478         my $error = $job->update_statustext(
479           int( 100 * $num / scalar(@cust_event) )
480         );
481         die $error if $error;
482         $last = time;
483       }
484     }
485
486   }
487
488   #this doesn't work, but it would be nice
489   #if ( $job ) { #progressbar foo
490   #  my $error = $job->update_statustext(
491   #    scalar(@cust_event). " invoices re-${method}ed"
492   #  );
493   #  die $error if $error;
494   #}
495
496 }
497
498 =back
499
500 =head1 SEE ALSO
501
502 L<FS::part_event>, L<FS::cust_bill>, L<FS::Record>, schema.html from the
503 base documentation.
504
505 =cut
506
507 1;
508