Added VICIDIAL_rebuild_list_statuses.pl script, designed to scan all leads marked NOUSE and set them to their proper status, called_count and last_local_call_time according to the logs. Ability to restrict new list_id and old list_id as well.
git-svn-id: svn://192.168.202.10@1968 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
@@ -0,0 +1,329 @@
|
||||
#!/usr/bin/perl
|
||||
#
|
||||
# VICIDIAL_rebuild_lead_statuses.pl version 2.6
|
||||
#
|
||||
# DESCRIPTION:
|
||||
# resets the status in vicidial_list for leads marked in status NOUSE
|
||||
# Very useful if you manually mess up the list statuses with a SQL query
|
||||
#
|
||||
# Copyright (C) 2013 Matt Florell <vicidial@gmail.com> LICENSE: AGPLv2
|
||||
#
|
||||
# CHANGES
|
||||
# 130422-0905 - first build
|
||||
#
|
||||
|
||||
$secX = time();
|
||||
|
||||
($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
|
||||
$year = ($year + 1900);
|
||||
$mon++;
|
||||
if ($hour < 10) {$hour = "0$hour";}
|
||||
if ($min < 10) {$min = "0$min";}
|
||||
if ($sec < 10) {$sec = "0$sec";}
|
||||
if ($mon < 10) {$mon = "0$mon";}
|
||||
if ($mday < 10) {$mday = "0$mday";}
|
||||
$pulldate0 = "$year-$mon-$mday $hour:$min:$sec";
|
||||
$inSD = $pulldate0;
|
||||
$dsec = ( ( ($hour * 3600) + ($min * 60) ) + $sec );
|
||||
|
||||
|
||||
|
||||
# default path to astguiclient configuration file:
|
||||
$PATHconf = '/etc/astguiclient.conf';
|
||||
|
||||
open(conf, "$PATHconf") || die "can't open $PATHconf: $!\n";
|
||||
@conf = <conf>;
|
||||
close(conf);
|
||||
$i=0;
|
||||
foreach(@conf)
|
||||
{
|
||||
$line = $conf[$i];
|
||||
$line =~ s/ |>|\n|\r|\t|\#.*|;.*//gi;
|
||||
if ( ($line =~ /^PATHhome/) && ($CLIhome < 1) )
|
||||
{$PATHhome = $line; $PATHhome =~ s/.*=//gi;}
|
||||
if ( ($line =~ /^PATHlogs/) && ($CLIlogs < 1) )
|
||||
{$PATHlogs = $line; $PATHlogs =~ s/.*=//gi;}
|
||||
if ( ($line =~ /^PATHagi/) && ($CLIagi < 1) )
|
||||
{$PATHagi = $line; $PATHagi =~ s/.*=//gi;}
|
||||
if ( ($line =~ /^PATHweb/) && ($CLIweb < 1) )
|
||||
{$PATHweb = $line; $PATHweb =~ s/.*=//gi;}
|
||||
if ( ($line =~ /^PATHsounds/) && ($CLIsounds < 1) )
|
||||
{$PATHsounds = $line; $PATHsounds =~ s/.*=//gi;}
|
||||
if ( ($line =~ /^PATHmonitor/) && ($CLImonitor < 1) )
|
||||
{$PATHmonitor = $line; $PATHmonitor =~ s/.*=//gi;}
|
||||
if ( ($line =~ /^VARserver_ip/) && ($CLIserver_ip < 1) )
|
||||
{$VARserver_ip = $line; $VARserver_ip =~ s/.*=//gi;}
|
||||
if ( ($line =~ /^VARDB_server/) && ($CLIDB_server < 1) )
|
||||
{$VARDB_server = $line; $VARDB_server =~ s/.*=//gi;}
|
||||
if ( ($line =~ /^VARDB_database/) && ($CLIDB_database < 1) )
|
||||
{$VARDB_database = $line; $VARDB_database =~ s/.*=//gi;}
|
||||
if ( ($line =~ /^VARDB_user/) && ($CLIDB_user < 1) )
|
||||
{$VARDB_user = $line; $VARDB_user =~ s/.*=//gi;}
|
||||
if ( ($line =~ /^VARDB_pass/) && ($CLIDB_pass < 1) )
|
||||
{$VARDB_pass = $line; $VARDB_pass =~ s/.*=//gi;}
|
||||
if ( ($line =~ /^VARDB_port/) && ($CLIDB_port < 1) )
|
||||
{$VARDB_port = $line; $VARDB_port =~ s/.*=//gi;}
|
||||
$i++;
|
||||
}
|
||||
|
||||
if (!$VDHLOGfile) {$VDHLOGfile = "$PATHlogs/dupleads.$year-$mon-$mday";}
|
||||
|
||||
print "\n\n\n\n\n\n\n\n\n\n\n\n-- VICIDIAL_rebuild_list_statuses.pl --\n\n";
|
||||
print "This program is designed to scan all leads marked NOUSE and set them to their proper status, called_count and last_local_call_time according to the logs. \n\n";
|
||||
|
||||
|
||||
$oldlistidSQL='';
|
||||
$newlistidSQL='';
|
||||
|
||||
### begin parsing run-time options ###
|
||||
if (length($ARGV[0])>1)
|
||||
{
|
||||
$i=0;
|
||||
while ($#ARGV >= $i)
|
||||
{
|
||||
$args = "$args $ARGV[$i]";
|
||||
$i++;
|
||||
}
|
||||
|
||||
if ($args =~ /--help/i)
|
||||
{
|
||||
print "allowed run time options:\n";
|
||||
print " [--quiet] = quiet\n";
|
||||
print " [--test] = test\n";
|
||||
print " [--debug] = debugging enabled\n";
|
||||
print " [--debugX] = extra debugging enabled\n";
|
||||
print " [--oldlistid=1234] = restrict log search to this list_id\n";
|
||||
print " [--newlistid=1234] = restrict updates to this list_id\n";
|
||||
print " [--help] = this help screen\n\n";
|
||||
print "\n";
|
||||
|
||||
exit;
|
||||
}
|
||||
else
|
||||
{
|
||||
if ($args =~ /-debug/i)
|
||||
{
|
||||
$DB=1;
|
||||
print "\n-----DEBUGGING -----\n\n";
|
||||
}
|
||||
if ($args =~ /-debugX/i)
|
||||
{
|
||||
$DBX=1;
|
||||
print "\n----- SUPER-DUPER DEBUGGING -----\n\n";
|
||||
}
|
||||
if ($args =~ /-quiet/i)
|
||||
{
|
||||
$q=1;
|
||||
}
|
||||
if ($args =~ /-test/i)
|
||||
{
|
||||
$T=1;
|
||||
$TEST=1;
|
||||
print "\n----- TESTING -----\n\n";
|
||||
}
|
||||
if ($args =~ /-oldlistid=/i)
|
||||
{
|
||||
@data_in = split(/-oldlistid=/,$args);
|
||||
$oldlistid = $data_in[1];
|
||||
$oldlistid =~ s/ .*//gi;
|
||||
if ($q < 1) {print "\n----- OLD list_id RESTRICTION: $oldlistid -----\n\n";}
|
||||
if (length($oldlistid)>1)
|
||||
{$oldlistidSQL = "and list_id='$oldlistid'";}
|
||||
}
|
||||
if ($args =~ /-newlistid=/i)
|
||||
{
|
||||
@data_in = split(/-newlistid=/,$args);
|
||||
$newlistid = $data_in[1];
|
||||
$newlistid =~ s/ .*//gi;
|
||||
if ($q < 1) {print "\n----- NEW list_id RESTRICTION: $newlistid -----\n\n";}
|
||||
if (length($newlistid)>1)
|
||||
{$newlistidSQL = "and list_id='$newlistid'";}
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
print "no command line options set\n";
|
||||
$args = "";
|
||||
$i=0;
|
||||
$campdup = '';
|
||||
$liveupdate=0;
|
||||
$duplicatelist = '998';
|
||||
}
|
||||
### end parsing run-time options ###
|
||||
|
||||
$US = '_';
|
||||
$phone_list = '|';
|
||||
$MT[0]='';
|
||||
|
||||
|
||||
# Customized Variables
|
||||
$server_ip = $VARserver_ip; # Asterisk server IP
|
||||
|
||||
if (!$VARDB_port) {$VARDB_port='3306';}
|
||||
|
||||
use DBI;
|
||||
|
||||
$dbhA = DBI->connect("DBI:mysql:$VARDB_database:$VARDB_server:$VARDB_port", "$VARDB_user", "$VARDB_pass")
|
||||
or die "Couldn't connect to database: " . DBI->errstr;
|
||||
|
||||
$DB=1;
|
||||
|
||||
$liveupdate=0;
|
||||
|
||||
|
||||
$stmtA = "select lead_id,phone_number,alt_phone from vicidial_list where status='NOUSE' $newlistidSQL;";
|
||||
if($DBX){print STDERR "\n|$stmtA|\n";}
|
||||
$sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr;
|
||||
$sthA->execute or die "executing: $stmtA ", $dbhA->errstr;
|
||||
$sthArows=$sthA->rows;
|
||||
$i=0;
|
||||
$nonDUP='0';
|
||||
while ( ($sthArows > $i) && ($nonDUP=='0') )
|
||||
{
|
||||
@aryA = $sthA->fetchrow_array;
|
||||
if ($aryA[0] > 1)
|
||||
{
|
||||
$lead_id[$i] = $aryA[0];
|
||||
$phone_number[$i] = $aryA[1];
|
||||
$alt_phone[$i] = $aryA[2];
|
||||
}
|
||||
$i++;
|
||||
}
|
||||
$sthA->finish();
|
||||
|
||||
$found_count=0;
|
||||
$not_found_count=0;
|
||||
$b=0;
|
||||
foreach(@lead_id)
|
||||
{
|
||||
$Nstatus='';
|
||||
$Nepoch=0;
|
||||
$Nlead_id='';
|
||||
$Ncall_date='';
|
||||
$Cstatus='';
|
||||
$Cepoch=0;
|
||||
$Clead_id='';
|
||||
$Ccall_date='';
|
||||
$NEWstatus='';
|
||||
$OLDlead_id='';
|
||||
$NEWcall_date='';
|
||||
$LEADfound=0;
|
||||
$stmtA = "SELECT status,start_epoch,lead_id,call_date from vicidial_log where phone_number='$phone_number[$b]' $oldlistidSQL order by call_date desc LIMIT 1;";
|
||||
if($DBX){print STDERR "\n|$stmtA|\n";}
|
||||
$sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr;
|
||||
$sthA->execute or die "executing: $stmtA ", $dbhA->errstr;
|
||||
$sthArows=$sthA->rows;
|
||||
if ($sthArows > 0)
|
||||
{
|
||||
@aryA = $sthA->fetchrow_array;
|
||||
$Nstatus = $aryA[0];
|
||||
$Nepoch = $aryA[1];
|
||||
$Nlead_id = $aryA[2];
|
||||
$Ncall_date = $aryA[3];
|
||||
$LEADfound++;
|
||||
}
|
||||
$sthA->finish();
|
||||
|
||||
$stmtA = "SELECT status,start_epoch,lead_id,call_date from vicidial_closer_log where phone_number='$phone_number[$b]' $oldlistidSQL order by closecallid desc LIMIT 1;";
|
||||
if($DBX){print STDERR "\n|$stmtA|\n";}
|
||||
$sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr;
|
||||
$sthA->execute or die "executing: $stmtA ", $dbhA->errstr;
|
||||
$sthArows=$sthA->rows;
|
||||
if ($sthArows > 0)
|
||||
{
|
||||
@aryA = $sthA->fetchrow_array;
|
||||
$Cstatus = $aryA[0];
|
||||
$Cepoch = $aryA[1];
|
||||
$Clead_id = $aryA[2];
|
||||
$Ccall_date = $aryA[3];
|
||||
$LEADfound++;
|
||||
}
|
||||
$sthA->finish();
|
||||
|
||||
if ($LEADfound < 1)
|
||||
{
|
||||
$stmtA = "SELECT status,start_epoch,lead_id,call_date from vicidial_log where phone_number='$alt_phone[$b]' $oldlistidSQL order by call_date desc LIMIT 1;";
|
||||
if($DBX){print STDERR "\n|$stmtA|\n";}
|
||||
$sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr;
|
||||
$sthA->execute or die "executing: $stmtA ", $dbhA->errstr;
|
||||
$sthArows=$sthA->rows;
|
||||
if ($sthArows > 0)
|
||||
{
|
||||
@aryA = $sthA->fetchrow_array;
|
||||
$Nstatus = $aryA[0];
|
||||
$Nepoch = $aryA[1];
|
||||
$Nlead_id = $aryA[2];
|
||||
$Ncall_date = $aryA[3];
|
||||
$LEADfound++;
|
||||
}
|
||||
$sthA->finish();
|
||||
}
|
||||
|
||||
if ($LEADfound > 0)
|
||||
{
|
||||
if ($Cepoch > $Nepoch)
|
||||
{
|
||||
$NEWstatus = $Cstatus;
|
||||
$OLDlead_id = $Clead_id;
|
||||
$NEWcall_date = $Ccall_date;
|
||||
}
|
||||
else
|
||||
{
|
||||
$NEWstatus = $Nstatus;
|
||||
$OLDlead_id = $Nlead_id;
|
||||
$NEWcall_date = $Ncall_date;
|
||||
}
|
||||
|
||||
$stmtA = "SELECT count(*) from vicidial_log where lead_id='$OLDlead_id' $oldlistidSQL;";
|
||||
if($DBX){print STDERR "\n|$stmtA|\n";}
|
||||
$sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr;
|
||||
$sthA->execute or die "executing: $stmtA ", $dbhA->errstr;
|
||||
$sthArows=$sthA->rows;
|
||||
if ($sthArows > 0)
|
||||
{
|
||||
@aryA = $sthA->fetchrow_array;
|
||||
$NEWcount = $aryA[0];
|
||||
}
|
||||
$sthA->finish();
|
||||
|
||||
|
||||
$stmtA = "UPDATE vicidial_list set status='$NEWstatus',called_count='$NEWcount',last_local_call_time='$NEWcall_date' where lead_id='$lead_id[$b]';";
|
||||
if ($TEST < 1)
|
||||
{$affected_rows = $dbhA->do($stmtA);} # or die "Couldn't execute query:|$stmtA|\n";
|
||||
if($DB){print STDERR "|$b|$lead_id[$b]|$Nstatus|$Cstatus|$phone_number[$b]| |$affected_rows|$stmtA|\n";}
|
||||
$found_count++;
|
||||
}
|
||||
else
|
||||
{
|
||||
$not_found_count++;
|
||||
if($DB){print STDERR "NOT FOUND: |$b|$lead_id[$b]|$phone_number[$b]|\n";}
|
||||
}
|
||||
$b++;
|
||||
|
||||
if ($b =~ /10$/i) {print STDERR " * $b\r";}
|
||||
if ($b =~ /20$/i) {print STDERR " * $b\r";}
|
||||
if ($b =~ /30$/i) {print STDERR " * $b\r";}
|
||||
if ($b =~ /40$/i) {print STDERR " * $b\r";}
|
||||
if ($b =~ /50$/i) {print STDERR " * $b\r";}
|
||||
if ($b =~ /60$/i) {print STDERR " * $b\r";}
|
||||
if ($b =~ /70$/i) {print STDERR " * $b\r";}
|
||||
if ($b =~ /80$/i) {print STDERR " * $b\r";}
|
||||
if ($b =~ /90$/i) {print STDERR " * $b\r";}
|
||||
if ($b =~ /00$/i) {print STDERR " * $b\r";}
|
||||
if ($b =~ /00$/i) {print " |$b|$found_count|$not_found_count| |$lead_id[$b]|$OLDlead_id|$Nstatus|$Cstatus|$list_id[$b]|\n";}
|
||||
}
|
||||
|
||||
$dbhA->disconnect();
|
||||
|
||||
|
||||
### calculate time to run script ###
|
||||
$secY = time();
|
||||
$secZ = ($secY - $secX);
|
||||
$secZm = ($secZ /60);
|
||||
|
||||
print "DONE: |$b|$found_count|$not_found_count|\n";
|
||||
print "script execution time in seconds: $secZ minutes: $secZm\n";
|
||||
|
||||
exit;
|
||||
|
||||
Reference in New Issue
Block a user