added AST_DEDUPE_leads.pl to log and optionally move duplicate leads to another list
git-svn-id: svn://192.168.202.10@622 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
@@ -0,0 +1,286 @@
|
||||
#!/usr/bin/perl
|
||||
#
|
||||
# VICIDIAL_DEDUPE_leads.pl version 2.0.4 *DBI-version*
|
||||
#
|
||||
# DESCRIPTION:
|
||||
# moves duplicate leads to another list_id
|
||||
#
|
||||
# Copyright (C) 2007 Matt Florell <vicidial@gmail.com> LICENSE: GPLv2
|
||||
#
|
||||
# /usr/share/astguiclient/VICIDIAL_DEDUPE_leads.pl --debugX --campaign-duplicate=CTF --ignore-list=999
|
||||
#
|
||||
# CHANGES
|
||||
# 70521-1643 - 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++;
|
||||
}
|
||||
|
||||
# Customized Variables
|
||||
$server_ip = $VARserver_ip; # Asterisk server IP
|
||||
|
||||
|
||||
if (!$VDHLOGfile) {$VDHLOGfile = "$PATHlogs/dupleads.$year-$mon-$mday";}
|
||||
|
||||
print "\n\n\n\n\n\n\n\n\n\n\n\n-- VICIDIAL_DEDUPE_leads.pl --\n\n";
|
||||
print "This program is designed to scan all leads for a campaign or entire system that are duplicates and move the newer lead into a different list_id. \n\n";
|
||||
|
||||
### begin parsing run-time options ###
|
||||
if (length($ARGV[0])>1)
|
||||
{
|
||||
$i=0;
|
||||
while ($#ARGV >= $i)
|
||||
{
|
||||
$args = "$args $ARGV[$i]";
|
||||
$i++;
|
||||
}
|
||||
|
||||
if ($args =~ /--help|-h/i)
|
||||
{
|
||||
print "allowed run time options:\n";
|
||||
print " [-q] = quiet\n";
|
||||
print " [-t] = test\n";
|
||||
print " [--system-duplicate] = checks for duplicates in entire database\n";
|
||||
print " [--campaign-duplicate=1234] = duplicate check witin this campaign\n";
|
||||
print " [--ignore-list=999] = ignores the list in duplicate check\n";
|
||||
print " [-h] = 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 =~ /-q/i)
|
||||
{
|
||||
$q=1;
|
||||
}
|
||||
if ($args =~ /-t/i)
|
||||
{
|
||||
$T=1;
|
||||
$TEST=1;
|
||||
print "\n----- TESTING -----\n\n";
|
||||
}
|
||||
if ($args =~ /-system-duplicate/i)
|
||||
{
|
||||
$sysdup=1;
|
||||
print "\n----- ENTIRE SYSTEM DUPLICATE CHECK -----\n\n";
|
||||
}
|
||||
if ($args =~ /-campaign-duplicate=/i)
|
||||
{
|
||||
@data_in = split(/-campaign-duplicate=/,$args);
|
||||
$campdup = $data_in[1];
|
||||
$campdup =~ s/ .*//gi;
|
||||
print "\n----- CAMPAIGN DUPLICATE CHECK: $forcelistid -----\n\n";
|
||||
}
|
||||
else
|
||||
{$campdup = '';}
|
||||
|
||||
if ($args =~ /--ignore-list=/i)
|
||||
{
|
||||
@data_in = split(/--ignore-list=/,$args);
|
||||
$ignorelist = $data_in[1];
|
||||
$ignorelist =~ s/ .*//gi;
|
||||
print "\n----- LISTID IGNORE: $ignorelist -----\n\n";
|
||||
}
|
||||
else
|
||||
{$ignorelist = '';}
|
||||
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
print "no command line options set\n";
|
||||
$args = "";
|
||||
$i=0;
|
||||
$forcelistid = '';
|
||||
}
|
||||
### end parsing run-time options ###
|
||||
|
||||
$US = '_';
|
||||
$phone_list = '|';
|
||||
$MT[0]='';
|
||||
|
||||
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;
|
||||
|
||||
open(out, ">>$VDHLOGfile") || die "Can't open $VDHLOGfile: $!\n";
|
||||
print out "\n\nSTARTED DUPLICATE CHECK: $pulldate0|$sysdup: $sysdup|campdup: $campdup|ignorelist: $ignorelist|\n";
|
||||
close(out);
|
||||
|
||||
$campSQL='';
|
||||
$listSQL='';
|
||||
$where='WHERE';
|
||||
$and='and';
|
||||
if (length($campdup)>0)
|
||||
{
|
||||
$stmtA = "select list_id from vicidial_lists where campaign_id='$campdup';";
|
||||
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;
|
||||
$rec_count=0;
|
||||
while ($sthArows > $rec_count)
|
||||
{
|
||||
@aryA = $sthA->fetchrow_array;
|
||||
$dup_lists .= "'$aryA[0]',";
|
||||
$rec_count++;
|
||||
}
|
||||
$sthA->finish();
|
||||
chop($dup_lists);
|
||||
$campSQL="list_id IN($dup_lists)";
|
||||
if (length($ignorelist)>0)
|
||||
{
|
||||
$listSQL=" and list_id NOT IN('$ignorelist')";
|
||||
}
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
if (length($ignorelist)>0)
|
||||
{
|
||||
$listSQL="list_id NOT IN('$ignorelist')";
|
||||
}
|
||||
else
|
||||
{
|
||||
$where='';
|
||||
$and='';
|
||||
}
|
||||
}
|
||||
|
||||
$stmtA = "select count(*) as tally, phone_number from vicidial_list $where $campSQL $listSQL group by phone_number order by tally desc;";
|
||||
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)
|
||||
{
|
||||
$dup_count[$i] = "$aryA[0]";
|
||||
$dup_list[$i] = "$aryA[1]";
|
||||
}
|
||||
else
|
||||
{
|
||||
$nonDUP++;
|
||||
}
|
||||
$i++;
|
||||
}
|
||||
$sthA->finish();
|
||||
|
||||
$b=0;
|
||||
foreach(@dup_list)
|
||||
{
|
||||
$dup_limit = ($dup_count[$b] - 1);
|
||||
$stmtA = "select lead_id,list_id,entry_date from vicidial_list where phone_number='$dup_list[$b]' $and $campSQL $listSQL order by entry_date desc limit $dup_limit;";
|
||||
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;
|
||||
$rec_count=0;
|
||||
open(out, ">>$VDHLOGfile") || die "Can't open $VDHLOGfile: $!\n";
|
||||
print out "$dup_list[$b]|$dup_count[$b]\n";
|
||||
while ($sthArows > $rec_count)
|
||||
{
|
||||
@aryA = $sthA->fetchrow_array;
|
||||
print out "$aryA[0]|$aryA[1]|$aryA[2]\n";
|
||||
$rec_count++;
|
||||
}
|
||||
close(out);
|
||||
$sthA->finish();
|
||||
|
||||
$b++;
|
||||
|
||||
if ($b =~ /100$/i) {print STDERR "0 $b\r";}
|
||||
if ($b =~ /200$/i) {print STDERR "+ $b\r";}
|
||||
if ($b =~ /300$/i) {print STDERR "| $b\r";}
|
||||
if ($b =~ /400$/i) {print STDERR "\\ $b\r";}
|
||||
if ($b =~ /500$/i) {print STDERR "- $b\r";}
|
||||
if ($b =~ /600$/i) {print STDERR "/ $b\r";}
|
||||
if ($b =~ /700$/i) {print STDERR "| $b\r";}
|
||||
if ($b =~ /800$/i) {print STDERR "+ $b\r";}
|
||||
if ($b =~ /900$/i) {print STDERR "0 $b\r";}
|
||||
if ($b =~ /000$/i) {print "|$b|$phone_number|\n";}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
$dbhA->disconnect();
|
||||
|
||||
### calculate time to run script ###
|
||||
$secY = time();
|
||||
$secZ = ($secY - $secX);
|
||||
$secZm = ($secZ /60);
|
||||
|
||||
print "script execution time in seconds: $secZ minutes: $secZm\n";
|
||||
|
||||
exit;
|
||||
|
||||
Reference in New Issue
Block a user