622f15f6b4e658ccdf229fa3945262db75edf34c
[freeside.git] / FS / FS / Cron / notify.pm
1 package FS::Cron::notify;
2
3 use strict;
4 use vars qw( @ISA @EXPORT_OK $DEBUG );
5 use Exporter;
6 use FS::UID qw( dbh );
7 use FS::Record qw(qsearch);
8 use FS::cust_main;
9 use FS::cust_pkg;
10
11 @ISA = qw( Exporter );
12 @EXPORT_OK = qw ( notify_flat_delay );
13 $DEBUG = 0;
14
15 sub notify_flat_delay {
16
17   my %opt = @_;
18
19   my $oldAutoCommit = $FS::UID::AutoCommit;
20   $DEBUG = 1 if $opt{'v'};
21   
22   #we're at now now (and later).
23   my($time) = $^T;
24
25   # select * from cust_pkg where
26   my $where_pkg = <<"END";
27     where ( cancel is null or cancel = 0 )
28       and ( bill > 0 )
29       and
30       0 < ( select count(*) from part_pkg
31               where cust_pkg.pkgpart = part_pkg.pkgpart
32                 and part_pkg.plan = 'flat_delayed'
33                 and 0 < ( select count (*) from part_pkg_option
34                             where part_pkg.pkgpart = part_pkg_option.pkgpart
35                               and part_pkg_option.optionname = 'recur_notify'
36                               and part_pkg_option.optionvalue > 0
37                               and 0 <= $time
38                                 + cast(part_pkg_option.optionvalue as integer)
39                                   * 86400
40                                 - cust_pkg.bill
41                               and ( cust_pkg.expire is null
42                                 or  cust_pkg.expire > $time
43                                   + cast(part_pkg_option.optionvalue as integer)
44                                     * 86400
45 /*                            and ( cust_pkg.adjourn is null
46                                 or  cust_pkg.adjourn > $time
47 -- Should notify suspended ones   + cast(part_pkg_option.optionvalue as integer)
48                                     * 86400
49 */
50                                   )
51                         )
52           )
53       and
54       0 = ( select count(*) from cust_pkg_option
55               where cust_pkg.pkgnum = cust_pkg_option.pkgnum
56                 and cust_pkg_option.optionname = 'impending_recur_notification_sent'
57                 and cust_pkg_option.optionvalue = 1
58           )
59 END
60   
61   if ($opt{a}) {
62     $where_pkg .= <<END;
63       and 0 < ( select count(*) from cust_main
64                   where cust_pkg.custnum = cust_main.custnum
65                     and cust_main.agentnum = $opt{a}
66               )
67 END
68   }
69   
70   my @cust_pkg;
71   if ( @ARGV ) {
72     $where_pkg .= "and ( " . join( "OR ", map { "custnum = $_" } @ARGV) . " )";
73   } 
74
75   my $orderby = "order by custnum, bill";
76
77   my $extra_sql = "$where_pkg $orderby";
78
79   @cust_pkg = qsearch('cust_pkg', {}, '', $extra_sql );
80   
81   my @packages = ();
82   my @recurdates = ();
83   my @cust_pkgs = ();
84   while ( scalar(@cust_pkg) ) {
85     my $cust_main = $cust_pkg[0]->cust_main;
86     my $custnum = $cust_pkg[0]->custnum;
87     warn "working on $custnum" if $DEBUG;
88     while (scalar(@cust_pkg)){
89       last if ($cust_pkg[0]->custnum != $custnum);
90       warn "storing information on " . $cust_pkg[0]->pkgnum if $DEBUG;
91       push @packages, $cust_pkg[0]->part_pkg->pkg;
92       push @recurdates, $cust_pkg[0]->bill;
93       push @cust_pkgs, $cust_pkg[0];
94       shift @cust_pkg;
95     }
96     my $error = 
97       $cust_main->notify( 'impending_recur_template',
98                           'extra_fields' => { 'packages'   => \@packages,
99                                               'recurdates' => \@recurdates,
100                                               'package'    => $packages[0],
101                                               'recurdate'  => $recurdates[0],
102                                             },
103                         );
104     warn "Error notifying, custnum ". $cust_main->custnum. ": $error" if $error;
105
106     unless ($error) { 
107       local $SIG{HUP} = 'IGNORE';
108       local $SIG{INT} = 'IGNORE';
109       local $SIG{QUIT} = 'IGNORE';
110       local $SIG{TERM} = 'IGNORE';
111       local $SIG{TSTP} = 'IGNORE';
112
113       my $oldAutoCommit = $FS::UID::AutoCommit;
114       local $FS::UID::AutoCommit = 0;
115       my $dbh = dbh;
116
117       for (@cust_pkgs) {
118         my %options = ($_->options,  'impending_recur_notification_sent' => 1 );
119         $error = $_->replace( $_, options => \%options );
120         if ($error){
121           $dbh->rollback or die $dbh->errstr if $oldAutoCommit;
122           die "Error updating package options for customer". $cust_main->custnum.
123                ": $error" if $error;
124         }
125       }
126
127       $dbh->commit or die $dbh->errstr if $oldAutoCommit;
128
129     }
130
131     @packages = ();
132     @recurdates = ();
133     @cust_pkgs = ();
134   
135   }
136
137   dbh->commit or die dbh->errstr if $oldAutoCommit;
138
139 }
140
141 1;