CDR rewriting and included-calls feature, #16271
[freeside.git] / FS / bin / freeside-cdrrewrited
1 #!/usr/bin/perl -w
2
3 use strict;
4 use vars qw( $conf );
5 use FS::Daemon ':all'; #daemonize1 drop_root daemonize2 myexit logfile sig*
6 use FS::UID qw( adminsuidsetup );
7 use FS::Record qw( qsearch qsearchs );
8 #use FS::cdr;
9 #use FS::cust_pkg;
10 #use FS::queue;
11
12 my $user = shift or die &usage;
13
14 #daemonize1('freeside-sprepaidd', $user); #keep unique pid files w/multi installs
15 daemonize1('freeside-cdrrewrited');
16
17 drop_root();
18
19 adminsuidsetup($user);
20
21 logfile( "%%%FREESIDE_LOG%%%/cdrrewrited-log.". $FS::UID::datasrc );
22
23 daemonize2();
24
25 $conf = new FS::Conf;
26
27 die "not running; cdr-asterisk_forward_rewrite, cdr-charged_party_rewrite ".
28     " and cdr-taqua-accountcode_rewrite conf options are all off\n"
29   unless _shouldrun();
30
31 #--
32
33 my %accountcode_unmatch = ();
34 my $accountcode_retry = 4 * 60 * 60; # 4 hours
35 my $accountcode_giveup = 4 * 24 * 60 * 60; # 4 days
36
37 my %cdr_type = map { lc($_->cdrtypename) => $_->cdrtypenum } 
38   qsearch('cdr_type',{});
39
40 while (1) {
41
42   #hmm... don't want to do an expensive search with an ever-growing bunch
43   # of unprocessed CDRs during the month... better to mark them all as
44   # rewritten "skipped", i.e. why we're a daemon in the first place
45   # instead of just doing this search like normal CDRs
46
47   #hmm :/
48   my @recent = grep { ($accountcode_unmatch{$_} + $accountcode_retry) > time }
49                  keys %accountcode_unmatch;
50   my $extra_sql = scalar(@recent)
51                     ? ' AND acctid NOT IN ('. join(',', @recent). ') '
52                     : '';
53
54   my $found = 0;
55   my %skip = ();
56   my %warning = ();
57
58   foreach my $cdr ( 
59     qsearch( {
60       'table'     => 'cdr',
61       'extra_sql' => 'FOR UPDATE',
62       'hashref'   => {},
63       'extra_sql' => 'WHERE freesidestatus IS NULL '.
64                      ' AND freesiderewritestatus IS NULL '.
65                      $extra_sql.
66                      ' LIMIT 1024', #arbitrary, but don't eat too much memory
67     } )
68   ) {
69
70     next if $skip{$cdr->acctid};
71
72     $found = 1;
73     my @status = ();
74
75     if ( $conf->exists('cdr-asterisk_forward_rewrite')
76          && $cdr->dstchannel =~ /^Local\/(\d+)/i && $1 ne $cdr->dst
77        )
78     {
79
80       my $dst = $1;
81
82       warn "dst ". $cdr->dst. " does not match dstchannel $dst ".
83            "(". $cdr->dstchannel. "); rewriting CDR as a forwarded call";
84
85       $cdr->charged_party($cdr->dst);
86       $cdr->dst($dst);
87       $cdr->amaflags(2);
88
89       push @status, 'asterisk_forward';
90
91     }
92
93     # XXX weird special case stuff--can we modularize this somehow?
94     # reference RT#16271
95     if ( $conf->exists('cdr-asterisk_australia_rewrite') and
96          $cdr->disposition eq 'ANSWERED' ) {
97       my $dst = $cdr->dst;
98       my $type;
99       if ( $dst =~ /^0?(12|13|1800|1900|0055)/ ) {
100         # toll free or smart numbers, any length
101         $type = 'tollfree';
102         $cdr->charged_party($dst);
103       }
104       elsif ( $dst =~ /^(11|0011)/ ) {
105         # will be followed by country code
106         $type = 'international';
107         $dst =~ s/^$1/0011/; #standardize
108         $cdr->dst($dst);
109       }
110       elsif ( length($dst) == 10 and$dst =~ /^04/ ) {
111         $type = 'mobile';
112       }
113       elsif ( length($dst) == 10 and $dst =~ /^02|03|07|08/ ) {
114         $type = 'domestic';
115       }
116       elsif ( length($dst) == 8 ) {
117         # local call, no area code
118         $type = 'domestic';
119       }
120       else {
121         $type = 'other';
122       }
123       if ( $type and exists($cdr_type{$type}) ) {
124         $cdr->cdrtypenum($cdr_type{$type});
125         push @status, 'asterisk_australia';
126       }
127       else {
128         $warning{"no CDR type defined for $type calls"}++;
129       }
130     }
131
132     if ( $conf->exists('cdr-charged_party_rewrite') && ! $cdr->charged_party ) {
133
134       $cdr->set_charged_party;
135       push @status, 'charged_party';
136
137     }
138
139     if ( $conf->exists('cdr-taqua-accountcode_rewrite')
140          && $cdr->lastapp eq 'acctcode' && $cdr->cdrtypenum == 1
141        )
142     {
143
144       #find the matching CDR
145       my $primary = qsearchs('cdr', {
146         'sessionnum'  => $cdr->sessionnum,
147         'src'         => $cdr->subscriber,
148         #'accountcode' => '',
149       });
150
151       unless ( $primary ) {
152
153         my $cantfind = "can't find primary CDR with session ". $cdr->sessionnum.
154                        ", src ". $cdr->subscriber;
155         if ( $cdr->calldate_unix + $accountcode_giveup < time ) {
156           warn "ERROR: $cantfind; giving up\n";
157           push @status, 'taqua-accountcode-NOTFOUND';
158           $cdr->status('done'); #so it doesn't try to rate
159           delete $accountcode_unmatch{$cdr->acctid}; #so it doesn't suck mem
160         } else {
161           warn "WARNING: $cantfind; will keep trying\n";
162           $accountcode_unmatch{$cdr->acctid} = time;
163           next;
164         }
165
166       } else {
167
168         $primary->accountcode( $cdr->lastdata );
169         #$primary->freesiderewritestatus( 'taqua-accountcode-primary' );
170         my $error = $primary->replace;
171         if ( $error ) {
172           warn "WARNING: error rewriting primary CDR (will retry): $error\n";
173           next;
174         }
175         $skip{$primary->acctid} = 1;
176
177         push @status, 'taqua-accountcode';
178         $cdr->status('done'); #so it doesn't try to rate
179
180       }
181
182     }
183
184     $cdr->freesiderewritestatus(
185       scalar(@status) ? join('/', @status) : 'skipped'
186     );
187
188     my $error = $cdr->replace;
189
190     if ( $error ) {
191       warn "WARNING: error rewriting CDR (will retry in 30 seconds):".
192            " $error\n";
193       sleep 30; #i dunno, wait and see if the database comes back?
194     }
195
196     last if sigterm() || sigint();
197
198   }
199
200   foreach (sort keys %warning) {
201     warn "WARNING: $_ (x $warning{$_})\n";
202   }
203   %warning = ();
204
205   myexit() if sigterm() || sigint();
206   #sleep 1 unless $found;
207   sleep 5 unless $found;
208
209 }
210
211 #--
212
213 sub _shouldrun {
214      $conf->exists('cdr-asterisk_forward_rewrite')
215   || $conf->exists('cdr-asterisk_australia_rewrite')
216   || $conf->exists('cdr-charged_party_rewrite')
217   || $conf->exists('cdr-taqua-accountcode_rewrite');
218 }
219
220 sub usage { 
221   die "Usage:\n\n  freeside-cdrrewrited user\n";
222 }
223
224 =head1 NAME
225
226 freeside-cdrrewrited - Real-time daemon for CDR rewriting
227
228 =head1 SYNOPSIS
229
230   freeside-cdrrewrited
231
232 =head1 DESCRIPTION
233
234 Runs continuously, searches for CDRs and does forwarded-call rewriting if any
235 of the "cdr-asterisk_forward_rewrite", "cdr-charged_party_rewrite" or
236 "cdr-taqua-accountcode_rewrite" config options are enabled.
237
238 =head1 SEE ALSO
239
240 =cut
241
242 1;