new bill script,
[freeside.git] / FS / bin / freeside-bill
1 #!/usr/bin/perl -Tw
2
3 use strict;
4 use Fcntl qw(:flock);
5 use Date::Parse;
6 use Getopt::Std;
7 use FS::UID qw(adminsuidsetup swapuid);
8 use FS::Record qw(qsearch qsearchs);
9 use FS::cust_main;
10
11 &untaint_argv;  #what it sounds like  (eww)
12 use vars qw($opt_a $opt_c $opt_i $opt_d);
13 getopts("acid:");
14 my $user = shift or die &usage;
15
16 adminsuidsetup $user;
17
18 my %bill_only = map { $_ => 1 } (
19   @ARGV ? @ARGV : ( map $_->custnum, qsearch('cust_main', {} ) )
20 );
21
22 #we're at now now (and later).
23 my($time)= $main::opt_d ? str2time($main::opt_d) : $^T;
24
25 # find packages w/ bill < time && cancel != '', and create corresponding
26 # customer objects
27
28 my($cust_main,%saw);
29 foreach $cust_main (
30   map {
31     if (
32       ( $main::opt_a || ( ( $_->getfield('bill') || 0 ) <= $time ) )
33       && $bill_only{ $_->custnum }
34       && !$saw{ $_->custnum }++
35     ) {
36       qsearchs('cust_main',{'custnum'=> $_->custnum } );
37     } else {
38       ();
39     }
40   } ( qsearch('cust_pkg', { 'cancel' => '' }),
41       qsearch('cust_pkg', { 'cancel' => 0  }),
42     )
43 ) {
44
45   # and bill them
46
47   print "Billing customer #" . $cust_main->getfield('custnum') . "\n";
48   next;
49
50   my($error);
51
52   $error=$cust_main->bill('time'=>$time);
53   warn "Error billing,  customer #" . $cust_main->getfield('custnum') . 
54     ":" . $error if $error;
55
56   if ($main::opt_c) {
57     $error=$cust_main->collect('invoice_time'=>$time,
58                                'batch_card' => $main::opt_i ? 'no' : 'yes',
59                               );
60     warn "Error collecting customer #" . $cust_main->getfield('custnum') .
61       ":" . $error if $error;
62
63   #sleep 1;
64
65   }
66
67 }
68
69 # subroutines
70
71 sub untaint_argv {
72   foreach $_ ( $[ .. $#ARGV ) { #untaint @ARGV
73     $ARGV[$_] =~ /^([\w\-\/]*)$/ || die "Illegal arguement \"$ARGV[$_]\"";
74     $ARGV[$_]=$1;
75   }
76 }
77
78 sub usage {
79   die "Usage:\n\n  bill [ -c [ i ] ] [ -d 'date' ] [ -b ] user\n";
80 }
81
82 =head1 NAME
83
84 freeside-bill - Command line (crontab, script) interface to customer billing.
85
86 =head1 SYNOPSIS
87
88   freeside-bill [ -c [ -a ] [ -i ] ] [ -d 'date' ] user [ custnum custnum ... ]
89
90 =head1 DESCRIPTION
91
92 Bills customers.  Searches for customers who are due for billing and calls
93 the bill and collect methods of a cust_main object.  See L<FS::cust_main>.
94
95   -c: Turn on collecting (you probably want this).
96
97   -a: Call collect even if there isn't a new invoice (probably a bad idea for
98       daily use)
99
100   -i: real-time billing (as opposed to batch billing).  only relevant
101       for credit cards.
102
103   -d: Pretent it's 'date'.  Date is in any format Date::Parse is happy with,
104       but be careful.
105
106 user: From the mapsecrets file - see config.html from the base documentation
107
108 custnum: if one or more customer numbers are specified, only bills those
109 customers.  Otherwise, bills all customers.
110
111 =head1 VERSION
112
113 $Id: freeside-bill,v 1.1 1999-08-11 20:41:27 ivan Exp $
114
115 =head1 BUGS
116
117 =head1 SEE ALSO
118
119 L<FS::cust_main>, config.html from the base documentation
120
121 =cut
122