X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2Fbin%2Ffreeside-cdrrewrited;h=af06d5d76c586387e3de8c1ac637d0d3f2f33513;hb=fbd3dfdb6a0e9cd2a72819b935803e2945d3218a;hp=0b7f6883fbcd1b47eef43a56ea0a53a6c1c018ba;hpb=624b2d44625f69d71175c3348cae635d580c890b;p=freeside.git diff --git a/FS/bin/freeside-cdrrewrited b/FS/bin/freeside-cdrrewrited index 0b7f6883f..af06d5d76 100644 --- a/FS/bin/freeside-cdrrewrited +++ b/FS/bin/freeside-cdrrewrited @@ -4,7 +4,7 @@ use strict; use vars qw( $conf ); use FS::Daemon ':all'; #daemonize1 drop_root daemonize2 myexit logfile sig* use FS::UID qw( adminsuidsetup ); -use FS::Record qw( qsearch ); #qsearchs); +use FS::Record qw( qsearch qsearchs ); #use FS::cdr; #use FS::cust_pkg; #use FS::queue; @@ -24,8 +24,8 @@ daemonize2(); $conf = new FS::Conf; -die "not running; cdr-asterisk_forward_rewrite and cdr-charged_party_rewrite ". - " conf options are both off\n" +die "not running; cdr-asterisk_forward_rewrite, cdr-charged_party_rewrite ". + " and cdr-taqua-accountcode_rewrite conf options are all off\n" unless _shouldrun(); #-- @@ -77,6 +77,36 @@ while (1) { } + if ( $conf->exists('cdr-taqua-accountcode_rewrite') + && $cdr->lastapp eq 'acctcode' && $cdr->cdrtypenum == 1 + ) + { + + #find the matching CDR + my $primary = qsearchs('cdr', { + 'sessionnum' => $cdr->sessionnum, + 'src' => $cdr->subscriber, + #'accountcode' => '', + }); + + unless ( $primary ) { + warn "WARNING: can't find primary CDR with session ". $cdr->sessionnum. + ", src ". $cdr->subscriber. "; will keep trying\n"; + next; + } + + $primary->accountcode( $cdr->lastdata ); + #$primary->freesiderewritestatus( 'taqua-accountcode-primary' ); + my $error = $primary->replace; + if ( $error ) { + warn "WARNING: error rewriting primary CDR (will retry): $error\n"; + next; + } + + push @status, 'taqua-accountcode'; + $cdr->status('done'); #so it doesn't try to rate + } + $cdr->freesiderewritestatus( scalar(@status) ? join('/', @status) : 'skipped' ); @@ -89,6 +119,8 @@ while (1) { sleep 30; #i dunno, wait and see if the database comes back? } + last if sigterm() || sigint(); + } myexit() if sigterm() || sigint(); @@ -101,7 +133,8 @@ while (1) { sub _shouldrun { $conf->exists('cdr-asterisk_forward_rewrite') - || $conf->exists('cdr-charged_party_rewrite'); + || $conf->exists('cdr-charged_party_rewrite') + || $conf->exists('cdr-taqua-accountcode_rewrite'); } sub usage { @@ -118,9 +151,9 @@ freeside-cdrrewrited - Real-time daemon for CDR rewriting =head1 DESCRIPTION -Runs continuously, searches for CDRs and does forwarded-call rewriting if the -"cdr-asterisk_forward_rewrite" or "cdr-charged_party_rewrite" config option is -enabled. +Runs continuously, searches for CDRs and does forwarded-call rewriting if any +of the "cdr-asterisk_forward_rewrite", "cdr-charged_party_rewrite" or +"cdr-taqua-accountcode_rewrite" config options are enabled. =head1 SEE ALSO