added Cepstral name playing for outbound survey campaigns
git-svn-id: svn://192.168.202.10@1095 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
+683
-655
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,339 @@
|
|||||||
|
#!/usr/bin/perl
|
||||||
|
#
|
||||||
|
# cepstral_generate.pl version 2.2.0
|
||||||
|
#
|
||||||
|
# Text-To-Speech files will be cached for later use.
|
||||||
|
#
|
||||||
|
# Call this script like this:
|
||||||
|
# /var/lib/asterisk/agi-bin/cepstral_generate.pl --debug --voice=Allison-8kHz --dialog=Hello\ There
|
||||||
|
#
|
||||||
|
# Copyright (C) 2009 Matt Florell, Mike Cargile <vicidial@gmail.com> LICENSE: AGPLv2
|
||||||
|
#
|
||||||
|
# CHANGES:
|
||||||
|
# 90406-1058 - First Build
|
||||||
|
# 90410-1458 - Fixed generate bug, added conf path variables
|
||||||
|
#
|
||||||
|
|
||||||
|
# Cepstral paths
|
||||||
|
$PATHvoices = '/tmp/swift_voices';
|
||||||
|
$PATHswift = '/opt/swift/bin/swift';
|
||||||
|
|
||||||
|
# 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 =~ /^PATHagi/) && ($CLIagi < 1) )
|
||||||
|
{$PATHagi = $line; $PATHagi =~ s/.*=//gi;}
|
||||||
|
if ( ($line =~ /^PATHsounds/) && ($CLIsounds < 1) )
|
||||||
|
{$PATHsounds = $line; $PATHsounds =~ s/.*=//gi;}
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
### 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 " [-t] = test\n";
|
||||||
|
print " [-debug] = verbose debug messages\n";
|
||||||
|
print " [-debugX] = Extra-verbose debug messages\n";
|
||||||
|
print " [-voice=Allison-8kHz] = Cepstral voice to use(Allison-8kHz is default)\n\n";
|
||||||
|
print " [-dialog=Hello] = Message to generate\n\n";
|
||||||
|
print " (This must be the LAST option)\n\n";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if ($args =~ /-debug/i)
|
||||||
|
{
|
||||||
|
$DB=1; # Debug flag
|
||||||
|
}
|
||||||
|
if ($args =~ /--debugX/i)
|
||||||
|
{
|
||||||
|
$DBX=1;
|
||||||
|
print "\n----- SUPER-DUPER DEBUGGING -----\n\n";
|
||||||
|
}
|
||||||
|
if ($args =~ /-t/i)
|
||||||
|
{
|
||||||
|
$TEST=1;
|
||||||
|
$T=1;
|
||||||
|
}
|
||||||
|
if ($args =~ /-voice=/i)
|
||||||
|
{
|
||||||
|
@data_in = split(/-voice=/,$args);
|
||||||
|
$voice = $data_in[1];
|
||||||
|
$voice =~ s/ .*//gi;
|
||||||
|
if ($DBX > 0) {print "\n----- VOICE: $voice -----\n\n";}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{$voice = 'Allison-8kHz';}
|
||||||
|
if ($args =~ /-dialog=/i)
|
||||||
|
{
|
||||||
|
@data_in = split(/-dialog=/,$args);
|
||||||
|
$dialog = $data_in[1];
|
||||||
|
$dialog =~ s/\n|\r|\l|\t//gi;
|
||||||
|
if ($DBX > 0) {print "\n----- DIALOG: $dialog -----\n\n";}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{$dialog = '';}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
# print "no command line options set\n";
|
||||||
|
}
|
||||||
|
### end parsing run-time options ###
|
||||||
|
|
||||||
|
($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";}
|
||||||
|
$SQL_date = "$year-$mon-$mday $hour:$min:$sec";
|
||||||
|
|
||||||
|
use Digest::MD5 qw(md5_hex);
|
||||||
|
use Asterisk::AGI;
|
||||||
|
$AGI = new Asterisk::AGI;
|
||||||
|
|
||||||
|
#my @voice = &get_cep_voice(2);
|
||||||
|
|
||||||
|
if (length($dialog) > 1)
|
||||||
|
{
|
||||||
|
$enc = md5_hex("$dialog-$voice"); # the hash
|
||||||
|
$enc_ftl = substr($enc, 0, 2); # first letter of hash
|
||||||
|
$enc_file = "tts/" . $enc_ftl . "/tts-" . $enc . ".wav";
|
||||||
|
|
||||||
|
if ($DB > 0)
|
||||||
|
{print "$SQL_date - Creating $dialog - $voice file: $enc_file\n";}
|
||||||
|
# &say_cepstral("$dialog","$voice");
|
||||||
|
&gen_cepstral("$dialog","$voice");
|
||||||
|
}
|
||||||
|
|
||||||
|
exit;
|
||||||
|
|
||||||
|
# EXAMPLES
|
||||||
|
#&say_cepstral("Four score and seven years ago our fathers brought forth on this continent, a new nation, conceived in Liberty, and dedicated to the proposition that all men are created equal. Now we are engaged in a great civil war, testing whether that nation, or any nation so conceived and so dedicated, can long endure. We are met on a great battle-field of that war. We have come to dedicate a portion of that field, as a final resting place for those who here gave their lives that that nation might live. It is altogether fitting and proper that we should do this. But, in a larger sense, we can not dedicate -- we can not consecrate -- we can not hallow -- this ground. The brave men, living and dead, who struggled here, have consecrated it, far above our poor power to add or detract. The world will little note, nor long remember what we say here, but it can never forget what they did here. It is for us the living, rather, to be dedicated here to the unfinished work which they who fought here have thus far so nobly advanced. It is rather for us to be here dedicated to the great task remaining before us -- that from these honored dead we take increased devotion to that cause for which they gave the last full measure of devotion -- that we here highly resolve that these dead shall not have died in vain -- that this nation, under God, shall have a new birth of freedom -- and that government of the people, by the people, for the people, shall not perish from the earth.",$voice[0]);
|
||||||
|
#&say_cepstral("Welcome to the VEECHEE DIAL open source call center suite",$voice[0]);
|
||||||
|
|
||||||
|
# function to get a voice that is currently installed
|
||||||
|
# takes and integer
|
||||||
|
# the integer needs to be greater than 0
|
||||||
|
# returns an array with the following info in this order
|
||||||
|
# Voice
|
||||||
|
# Version
|
||||||
|
# Lic?
|
||||||
|
# Gender
|
||||||
|
# Age
|
||||||
|
# Language
|
||||||
|
# Sample Rate
|
||||||
|
sub get_cep_voice {
|
||||||
|
my $number = $_[0];
|
||||||
|
if ($number <= 0) {
|
||||||
|
return 0; # failure
|
||||||
|
}
|
||||||
|
|
||||||
|
my $cepstral_app = "$PATHswift";
|
||||||
|
|
||||||
|
my $command = $cepstral_app.' --voices | tail +8 | tr -d " " > '.$PATHvoices;
|
||||||
|
|
||||||
|
system( $command ); # Ask swift for the voices
|
||||||
|
|
||||||
|
my @voice;
|
||||||
|
my @voice_lines;
|
||||||
|
my $voice_count;
|
||||||
|
|
||||||
|
open(VFILE,"$PATHvoices"); # read in the file with the voices
|
||||||
|
@voice_lines = <VFILE>;
|
||||||
|
close(VFILE);
|
||||||
|
#unlink("/tmp/swift_vioces"); # delete the file with the voices
|
||||||
|
|
||||||
|
# find the correct voice
|
||||||
|
foreach my $voice_line(@voice_lines) {
|
||||||
|
chomp($voice_line);
|
||||||
|
$voice_count++;
|
||||||
|
if ($voice_count == $number) {
|
||||||
|
@voice = split(/\|/,$voice_line);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# return it
|
||||||
|
return @voice;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function to return the number of voices that are installed
|
||||||
|
# Returns an int
|
||||||
|
sub get_cep_num_voices {
|
||||||
|
my $cepstral_app = "$PATHswift";
|
||||||
|
|
||||||
|
my $command = $cepstral_app.' --voices | tail +8 | tr -d " " > '.$PATHvoices;
|
||||||
|
|
||||||
|
system( $command ); # Ask swift for the voices
|
||||||
|
|
||||||
|
my @voice_lines;
|
||||||
|
my $number = 0;
|
||||||
|
|
||||||
|
# read in the file with the voices
|
||||||
|
open(VFILE,"$PATHvoices");
|
||||||
|
@voice_lines = <VFILE>;
|
||||||
|
close(VFILE);
|
||||||
|
#unlink("/tmp/swift_vioces"); # delete it
|
||||||
|
|
||||||
|
foreach (@voice_lines) {
|
||||||
|
$number++;
|
||||||
|
}
|
||||||
|
|
||||||
|
return $number;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function to pregenerate TTS file
|
||||||
|
# First option is the text
|
||||||
|
# Second option is the voice
|
||||||
|
sub gen_cepstral {
|
||||||
|
my $text = $_[0]; # the text to play
|
||||||
|
my $voice = $_[1]; # voice to use
|
||||||
|
|
||||||
|
# hash of the text
|
||||||
|
my $hash = md5_hex("$text-$voice"); # the hash
|
||||||
|
my $hash_ftl = substr($hash, 0, 2); # first two letters of hash
|
||||||
|
|
||||||
|
# Directories that hold everything
|
||||||
|
my $astsounddir = $PATHsounds; # asterisk sound directory
|
||||||
|
my $ttssounddir = $astsounddir."/tts";
|
||||||
|
my $astsubdir = "tts/".$hash_ftl; # sub directory that holds the file
|
||||||
|
my $sounddir = $astsounddir . "/" . $astsubdir; # full path to the directory
|
||||||
|
|
||||||
|
# Wave File to play
|
||||||
|
my $wavefile = "tts-".$hash; # wave file without the .wav at the end
|
||||||
|
my $wavepath = $sounddir."/".$wavefile.".wav"; # full path to the wavefile
|
||||||
|
my $astwavpath = $astsubdir."/".$wavefile; # asterisk path to .wav file without .wav
|
||||||
|
|
||||||
|
# text file of words to say
|
||||||
|
my $textfile = "tts-text-".$hash.".txt"; # file to hold the words to say
|
||||||
|
my $textpath = $sounddir."/".$textfile; # full path to the text file
|
||||||
|
|
||||||
|
# generate the tts
|
||||||
|
if (!(&real_gen_cepstral($text, $voice, $ttssounddir, $sounddir, $wavepath, $textpath))) {
|
||||||
|
#TODO print an error message somewhere
|
||||||
|
return 0; # failure
|
||||||
|
}
|
||||||
|
|
||||||
|
return 1; # success
|
||||||
|
}
|
||||||
|
|
||||||
|
# Function to play TTS file
|
||||||
|
# Will generate TTS file if it is not pregenerated
|
||||||
|
# First option is the text
|
||||||
|
# Second option is the voice
|
||||||
|
sub say_cepstral {
|
||||||
|
my $text = $_[0]; # the text to play
|
||||||
|
my $voice = $_[1]; # voice to use
|
||||||
|
|
||||||
|
my %input = $AGI->ReadParse();
|
||||||
|
|
||||||
|
# hash of the text
|
||||||
|
my $hash = md5_hex("$text-$voice"); # the hash
|
||||||
|
my $hash_ftl = substr($hash, 0, 2); # first letter of hash
|
||||||
|
|
||||||
|
# Directories that hold everything
|
||||||
|
my $astsounddir = $PATHsounds; # asterisk sound directory
|
||||||
|
my $ttssounddir = $astsounddir."/tts";
|
||||||
|
my $astsubdir = "tts/".$hash_ftl; # sub directory that holds the file
|
||||||
|
my $sounddir = $astsounddir."/".$astsubdir; # full path to the directory
|
||||||
|
|
||||||
|
# Wave File to play
|
||||||
|
my $wavefile = "tts-".$hash; # wave file without the .wav at the end
|
||||||
|
my $wavepath = $sounddir."/".$wavefile.".wav"; # full path to the wavefile
|
||||||
|
my $astwavpath = $astsubdir."/".$wavefile; # asterisk path to .wav file without .wav
|
||||||
|
|
||||||
|
# text file of words to say
|
||||||
|
my $textfile = "tts-text-".$hash.".txt"; # file to hold the words to say
|
||||||
|
my $textpath = $sounddir."/".$textfile; # full path to the text file
|
||||||
|
|
||||||
|
# generate the tts
|
||||||
|
if (!(&real_gen_cepstral($text, $voice, $ttssounddir, $sounddir, $wavepath, $textpath))) {
|
||||||
|
#TODO print an error message somewhere
|
||||||
|
return 0; # failure
|
||||||
|
}
|
||||||
|
# wait up to a second
|
||||||
|
# for the sound file to appear
|
||||||
|
# and the textfile to be deleted
|
||||||
|
# This is for concurrency issues
|
||||||
|
my $i = 0;
|
||||||
|
while ( ($i < 100) && !(-f $wavepath) && (-f $textpath) ) {
|
||||||
|
usleep(10000);
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
|
||||||
|
$AGI->stream_file($astwavpath); # play the tts
|
||||||
|
|
||||||
|
return 1; # success
|
||||||
|
}
|
||||||
|
|
||||||
|
# This is a helper function do not call it directly
|
||||||
|
sub real_gen_cepstral {
|
||||||
|
my $text = $_[0];
|
||||||
|
my $voice = $_[1];
|
||||||
|
my $ttssounddir = $_[2];
|
||||||
|
my $sounddir = $_[3];
|
||||||
|
my $wavepath = $_[4];
|
||||||
|
my $textpath = $_[5];
|
||||||
|
|
||||||
|
|
||||||
|
# Cepstral commnad and options
|
||||||
|
my $cepstral_app = "$PATHswift"; # the executable
|
||||||
|
my $cepstral_opt = "-p speech/rate=140"; # the command line options
|
||||||
|
|
||||||
|
|
||||||
|
# Make sure the tts directory is there
|
||||||
|
if (!(-d $ttssounddir)) {
|
||||||
|
if (!(mkdir($ttssounddir))) {
|
||||||
|
#TODO print an error message somewhere
|
||||||
|
return 0; # failure - cannot make the tts directory
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# Make sure the sub directory is there
|
||||||
|
if (!(-d $sounddir)) {
|
||||||
|
if (!(mkdir($sounddir))) {
|
||||||
|
#TODO print an error message somewhere
|
||||||
|
return 0; # failure - cannot make the sub directory
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
# check if both the wav file and the text file do not exists
|
||||||
|
if (!( -f $wavepath ) && !( -f $textpath )) {
|
||||||
|
# write to the text file whats to be said
|
||||||
|
open(fileOUT, ">$textpath");
|
||||||
|
print fileOUT "$text";
|
||||||
|
close(fileOUT);
|
||||||
|
|
||||||
|
# build the command to call cepstral and give it the text file to generate
|
||||||
|
my $command=$cepstral_app." ".$cepstral_opt." -n ".$voice." -o ".$wavepath." -f ".$textpath." > /dev/null";
|
||||||
|
|
||||||
|
# execute the command
|
||||||
|
system($command);
|
||||||
|
|
||||||
|
# delete the text file
|
||||||
|
unlink($textpath);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 1; # success
|
||||||
|
}
|
||||||
@@ -495,6 +495,13 @@ exten => 8373,5,AGI(agi-VDAD_ALL_outbound.agi,SURVEYCAMP-----LB)
|
|||||||
exten => 8373,6,AGI(agi-VDAD_ALL_outbound.agi,SURVEYCAMP-----LB)
|
exten => 8373,6,AGI(agi-VDAD_ALL_outbound.agi,SURVEYCAMP-----LB)
|
||||||
exten => 8373,7,Hangup
|
exten => 8373,7,Hangup
|
||||||
|
|
||||||
|
; VICIDIAL SURVEY transfer script with Cepstral names:
|
||||||
|
exten => 8374,1,Playback(sip-silence)
|
||||||
|
exten => 8374,2,AGI(agi://127.0.0.1:4577/call_log)
|
||||||
|
exten => 8374,3,AGI(agi-VDAD_ALL_outbound.agi,SURVEYCAMPCEP-----LB)
|
||||||
|
exten => 8374,4,AGI(agi-VDAD_ALL_outbound.agi,SURVEYCAMPCEP-----LB)
|
||||||
|
exten => 8374,5,Hangup
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -495,6 +495,13 @@ exten => 8373,5,AGI(agi-VDAD_ALL_outbound.agi,SURVEYCAMP-----LB)
|
|||||||
exten => 8373,6,AGI(agi-VDAD_ALL_outbound.agi,SURVEYCAMP-----LB)
|
exten => 8373,6,AGI(agi-VDAD_ALL_outbound.agi,SURVEYCAMP-----LB)
|
||||||
exten => 8373,7,Hangup
|
exten => 8373,7,Hangup
|
||||||
|
|
||||||
|
; VICIDIAL SURVEY transfer script with Cepstral names:
|
||||||
|
exten => 8374,1,Playback(sip-silence)
|
||||||
|
exten => 8374,2,AGI(agi://127.0.0.1:4577/call_log)
|
||||||
|
exten => 8374,3,AGI(agi-VDAD_ALL_outbound.agi,SURVEYCAMPCEP-----LB)
|
||||||
|
exten => 8374,4,AGI(agi-VDAD_ALL_outbound.agi,SURVEYCAMPCEP-----LB)
|
||||||
|
exten => 8374,5,Hangup
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+16
-3
@@ -1672,6 +1672,7 @@ $dialplan_entry = ereg_replace(";","",$dialplan_entry);
|
|||||||
# 90320-0424 - Fixed several small bugs conf records group alias and permissions
|
# 90320-0424 - Fixed several small bugs conf records group alias and permissions
|
||||||
# 90322-0122 - Added ability to delete from the DNC lists
|
# 90322-0122 - Added ability to delete from the DNC lists
|
||||||
# 90322-1105 - Added new status settings and vtiger options
|
# 90322-1105 - Added new status settings and vtiger options
|
||||||
|
# 90409-2133 - Fixed special characters in SCRIPTS
|
||||||
#
|
#
|
||||||
# make sure you have added a user to the vicidial_users MySQL table with at least user_level 8 to access this page the first time
|
# make sure you have added a user to the vicidial_users MySQL table with at least user_level 8 to access this page the first time
|
||||||
|
|
||||||
@@ -5960,6 +5961,7 @@ if ($ADD==1111111)
|
|||||||
|
|
||||||
echo "<br>ADD NEW SCRIPT<form name=scriptForm action=$PHP_SELF method=POST>\n";
|
echo "<br>ADD NEW SCRIPT<form name=scriptForm action=$PHP_SELF method=POST>\n";
|
||||||
echo "<input type=hidden name=ADD value=2111111>\n";
|
echo "<input type=hidden name=ADD value=2111111>\n";
|
||||||
|
echo "<input type=hidden name=DB value=\"$DB\">\n";
|
||||||
echo "<center><TABLE width=$section_width cellspacing=3>\n";
|
echo "<center><TABLE width=$section_width cellspacing=3>\n";
|
||||||
echo "<tr bgcolor=#B6D3FC><td align=right>Script ID: </td><td align=left><input type=text name=script_id size=12 maxlength=10> (no spaces or punctuation)$NWB#vicidial_scripts-script_id$NWE</td></tr>\n";
|
echo "<tr bgcolor=#B6D3FC><td align=right>Script ID: </td><td align=left><input type=text name=script_id size=12 maxlength=10> (no spaces or punctuation)$NWB#vicidial_scripts-script_id$NWE</td></tr>\n";
|
||||||
echo "<tr bgcolor=#B6D3FC><td align=right>Script Name: </td><td align=left><input type=text name=script_name size=40 maxlength=50> (title of the script)$NWB#vicidial_scripts-script_name$NWE</td></tr>\n";
|
echo "<tr bgcolor=#B6D3FC><td align=right>Script Name: </td><td align=left><input type=text name=script_name size=40 maxlength=50> (title of the script)$NWB#vicidial_scripts-script_name$NWE</td></tr>\n";
|
||||||
@@ -7780,7 +7782,7 @@ if ($ADD==2111111)
|
|||||||
{
|
{
|
||||||
$stmt="INSERT INTO vicidial_scripts values('$script_id','$script_name','$script_comments','$script_text','$active');";
|
$stmt="INSERT INTO vicidial_scripts values('$script_id','$script_name','$script_comments','$script_text','$active');";
|
||||||
$rslt=mysql_query($stmt, $link);
|
$rslt=mysql_query($stmt, $link);
|
||||||
|
if ($DB > 0) {echo "|$stmt|";}
|
||||||
echo "<br><B>SCRIPT ADDED: $script_id</B>\n";
|
echo "<br><B>SCRIPT ADDED: $script_id</B>\n";
|
||||||
|
|
||||||
### LOG INSERTION Admin Log Table ###
|
### LOG INSERTION Admin Log Table ###
|
||||||
@@ -7820,6 +7822,7 @@ if ($ADD==21111111)
|
|||||||
$stmt="INSERT INTO vicidial_lead_filters SET lead_filter_id='$lead_filter_id',lead_filter_name='$lead_filter_name',lead_filter_comments='$lead_filter_comments',lead_filter_sql='$lead_filter_sql';";
|
$stmt="INSERT INTO vicidial_lead_filters SET lead_filter_id='$lead_filter_id',lead_filter_name='$lead_filter_name',lead_filter_comments='$lead_filter_comments',lead_filter_sql='$lead_filter_sql';";
|
||||||
$rslt=mysql_query($stmt, $link);
|
$rslt=mysql_query($stmt, $link);
|
||||||
|
|
||||||
|
if ($DB > 0) {echo "|$stmt|";}
|
||||||
echo "<br><B>FILTER ADDED: $lead_filter_id</B>\n";
|
echo "<br><B>FILTER ADDED: $lead_filter_id</B>\n";
|
||||||
|
|
||||||
### LOG INSERTION Admin Log Table ###
|
### LOG INSERTION Admin Log Table ###
|
||||||
@@ -7858,6 +7861,7 @@ if ($ADD==211111111)
|
|||||||
{
|
{
|
||||||
$stmt="INSERT INTO vicidial_call_times SET call_time_id='$call_time_id',call_time_name='$call_time_name',call_time_comments='$call_time_comments';";
|
$stmt="INSERT INTO vicidial_call_times SET call_time_id='$call_time_id',call_time_name='$call_time_name',call_time_comments='$call_time_comments';";
|
||||||
$rslt=mysql_query($stmt, $link);
|
$rslt=mysql_query($stmt, $link);
|
||||||
|
if ($DB > 0) {echo "|$stmt|";}
|
||||||
|
|
||||||
echo "<br><B>CALL TIME ADDED: $call_time_id</B>\n";
|
echo "<br><B>CALL TIME ADDED: $call_time_id</B>\n";
|
||||||
|
|
||||||
@@ -7897,6 +7901,7 @@ if ($ADD==2111111111)
|
|||||||
{
|
{
|
||||||
$stmt="INSERT INTO vicidial_state_call_times SET state_call_time_id='$call_time_id',state_call_time_name='$call_time_name',state_call_time_comments='$call_time_comments',state_call_time_state='$state_call_time_state';";
|
$stmt="INSERT INTO vicidial_state_call_times SET state_call_time_id='$call_time_id',state_call_time_name='$call_time_name',state_call_time_comments='$call_time_comments',state_call_time_state='$state_call_time_state';";
|
||||||
$rslt=mysql_query($stmt, $link);
|
$rslt=mysql_query($stmt, $link);
|
||||||
|
if ($DB > 0) {echo "|$stmt|";}
|
||||||
|
|
||||||
echo "<br><B>STATE CALL TIME ADDED: $call_time_id</B>\n";
|
echo "<br><B>STATE CALL TIME ADDED: $call_time_id</B>\n";
|
||||||
|
|
||||||
@@ -7946,6 +7951,7 @@ if ($ADD==231111111)
|
|||||||
}
|
}
|
||||||
$stmt="INSERT INTO vicidial_shifts SET shift_id='$shift_id',shift_name='$shift_name',shift_start_time='$shift_start_time',shift_length='$shift_length',shift_weekdays='$SHIFT_weekdays';";
|
$stmt="INSERT INTO vicidial_shifts SET shift_id='$shift_id',shift_name='$shift_name',shift_start_time='$shift_start_time',shift_length='$shift_length',shift_weekdays='$SHIFT_weekdays';";
|
||||||
$rslt=mysql_query($stmt, $link);
|
$rslt=mysql_query($stmt, $link);
|
||||||
|
if ($DB > 0) {echo "|$stmt|";}
|
||||||
|
|
||||||
echo "<br><B>SHIFT ADDED: $shift_id</B>\n";
|
echo "<br><B>SHIFT ADDED: $shift_id</B>\n";
|
||||||
|
|
||||||
@@ -10373,7 +10379,7 @@ if ($ADD==4111111)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$stmt="UPDATE vicidial_scripts set script_name='$script_name', script_comments='$script_comments', script_text='$script_text', active='$active' where script_id='$script_id';";
|
$stmt="UPDATE vicidial_scripts set script_name='$script_name', script_comments='$script_comments', script_text='" . mysql_real_escape_string($script_text) . "', active='$active' where script_id='$script_id';";
|
||||||
$rslt=mysql_query($stmt, $link);
|
$rslt=mysql_query($stmt, $link);
|
||||||
|
|
||||||
echo "<br><B>SCRIPT MODIFIED</B>\n";
|
echo "<br><B>SCRIPT MODIFIED</B>\n";
|
||||||
@@ -10404,6 +10410,8 @@ if ($ADD==41111111)
|
|||||||
{
|
{
|
||||||
if ($LOGmodify_filters==1)
|
if ($LOGmodify_filters==1)
|
||||||
{
|
{
|
||||||
|
echo "<!-- $lead_filter_sql -->\n";
|
||||||
|
echo "<!--" . mysql_real_escape_string($lead_filter_sql) . " -->\n";
|
||||||
echo "<FONT FACE=\"ARIAL,HELVETICA\" COLOR=BLACK SIZE=2>";
|
echo "<FONT FACE=\"ARIAL,HELVETICA\" COLOR=BLACK SIZE=2>";
|
||||||
|
|
||||||
if ( (strlen($lead_filter_id) < 2) or (strlen($lead_filter_name) < 2) or (strlen($lead_filter_sql) < 2) )
|
if ( (strlen($lead_filter_id) < 2) or (strlen($lead_filter_name) < 2) or (strlen($lead_filter_sql) < 2) )
|
||||||
@@ -10413,7 +10421,7 @@ if ($ADD==41111111)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$stmt="UPDATE vicidial_lead_filters set lead_filter_name='$lead_filter_name', lead_filter_comments='$lead_filter_comments', lead_filter_sql='$lead_filter_sql' where lead_filter_id='$lead_filter_id';";
|
$stmt="UPDATE vicidial_lead_filters set lead_filter_name='$lead_filter_name', lead_filter_comments='$lead_filter_comments', lead_filter_sql='" . mysql_real_escape_string($lead_filter_sql) . "' where lead_filter_id='$lead_filter_id';";
|
||||||
$rslt=mysql_query($stmt, $link);
|
$rslt=mysql_query($stmt, $link);
|
||||||
|
|
||||||
echo "<br><B>FILTER MODIFIED</B>\n";
|
echo "<br><B>FILTER MODIFIED</B>\n";
|
||||||
@@ -16563,6 +16571,7 @@ if ($ADD==3111111)
|
|||||||
|
|
||||||
echo "<br>MODIFY A SCRIPT<form name=scriptForm action=$PHP_SELF method=POST>\n";
|
echo "<br>MODIFY A SCRIPT<form name=scriptForm action=$PHP_SELF method=POST>\n";
|
||||||
echo "<input type=hidden name=ADD value=4111111>\n";
|
echo "<input type=hidden name=ADD value=4111111>\n";
|
||||||
|
echo "<input type=hidden name=DB value=\"$DB\">\n";
|
||||||
echo "<input type=hidden name=script_id value=\"$script_id\">\n";
|
echo "<input type=hidden name=script_id value=\"$script_id\">\n";
|
||||||
echo "<tr bgcolor=#B6D3FC><td align=right>Script ID: </td><td align=left><B>$script_id</B>$NWB#vicidial_scripts-script_name$NWE</td></tr>\n";
|
echo "<tr bgcolor=#B6D3FC><td align=right>Script ID: </td><td align=left><B>$script_id</B>$NWB#vicidial_scripts-script_name$NWE</td></tr>\n";
|
||||||
echo "<tr bgcolor=#B6D3FC><td align=right>Script Name: </td><td align=left><input type=text name=script_name size=40 maxlength=50 value=\"$script_name\"> (title of the script)$NWB#vicidial_scripts-script_name$NWE</td></tr>\n";
|
echo "<tr bgcolor=#B6D3FC><td align=right>Script Name: </td><td align=left><input type=text name=script_name size=40 maxlength=50 value=\"$script_name\"> (title of the script)$NWB#vicidial_scripts-script_name$NWE</td></tr>\n";
|
||||||
@@ -16653,6 +16662,7 @@ if ($ADD==31111111)
|
|||||||
|
|
||||||
echo "<br>MODIFY A FILTER<form action=$PHP_SELF method=POST>\n";
|
echo "<br>MODIFY A FILTER<form action=$PHP_SELF method=POST>\n";
|
||||||
echo "<input type=hidden name=ADD value=41111111>\n";
|
echo "<input type=hidden name=ADD value=41111111>\n";
|
||||||
|
echo "<input type=hidden name=DB value=\"$DB\">\n";
|
||||||
echo "<input type=hidden name=lead_filter_id value=\"$lead_filter_id\">\n";
|
echo "<input type=hidden name=lead_filter_id value=\"$lead_filter_id\">\n";
|
||||||
echo "<tr bgcolor=#B6D3FC><td align=right>Filter ID: </td><td align=left><B>$lead_filter_id</B>$NWB#vicidial_lead_filters-lead_filter_id$NWE</td></tr>\n";
|
echo "<tr bgcolor=#B6D3FC><td align=right>Filter ID: </td><td align=left><B>$lead_filter_id</B>$NWB#vicidial_lead_filters-lead_filter_id$NWE</td></tr>\n";
|
||||||
echo "<tr bgcolor=#B6D3FC><td align=right>Filter Name: </td><td align=left><input type=text name=lead_filter_name size=40 maxlength=50 value=\"$lead_filter_name\"> (short description of the filter)$NWB#vicidial_lead_filters-lead_filter_name$NWE</td></tr>\n";
|
echo "<tr bgcolor=#B6D3FC><td align=right>Filter Name: </td><td align=left><input type=text name=lead_filter_name size=40 maxlength=50 value=\"$lead_filter_name\"> (short description of the filter)$NWB#vicidial_lead_filters-lead_filter_name$NWE</td></tr>\n";
|
||||||
@@ -16788,6 +16798,7 @@ echo "<FONT FACE=\"ARIAL,HELVETICA\" COLOR=BLACK SIZE=2>";
|
|||||||
|
|
||||||
echo "<br>MODIFY A CALL TIME<form action=$PHP_SELF method=POST>\n";
|
echo "<br>MODIFY A CALL TIME<form action=$PHP_SELF method=POST>\n";
|
||||||
echo "<input type=hidden name=ADD value=411111111>\n";
|
echo "<input type=hidden name=ADD value=411111111>\n";
|
||||||
|
echo "<input type=hidden name=DB value=\"$DB\">\n";
|
||||||
echo "<input type=hidden name=call_time_id value=\"$call_time_id\">\n";
|
echo "<input type=hidden name=call_time_id value=\"$call_time_id\">\n";
|
||||||
echo "<tr bgcolor=#B6D3FC><td align=right>Call Time ID: </td><td align=left colspan=3><B>$call_time_id</B>$NWB#vicidial_call_times-call_time_id$NWE</td></tr>\n";
|
echo "<tr bgcolor=#B6D3FC><td align=right>Call Time ID: </td><td align=left colspan=3><B>$call_time_id</B>$NWB#vicidial_call_times-call_time_id$NWE</td></tr>\n";
|
||||||
echo "<tr bgcolor=#B6D3FC><td align=right>Call Time Name: </td><td align=left colspan=3><input type=text name=call_time_name size=40 maxlength=50 value=\"$call_time_name\"> (short description of the call time)$NWB#vicidial_call_times-call_time_name$NWE</td></tr>\n";
|
echo "<tr bgcolor=#B6D3FC><td align=right>Call Time Name: </td><td align=left colspan=3><input type=text name=call_time_name size=40 maxlength=50 value=\"$call_time_name\"> (short description of the call time)$NWB#vicidial_call_times-call_time_name$NWE</td></tr>\n";
|
||||||
@@ -16940,6 +16951,7 @@ echo "<FONT FACE=\"ARIAL,HELVETICA\" COLOR=BLACK SIZE=2>";
|
|||||||
|
|
||||||
echo "<br>MODIFY A STATE CALL TIME<form action=$PHP_SELF method=POST>\n";
|
echo "<br>MODIFY A STATE CALL TIME<form action=$PHP_SELF method=POST>\n";
|
||||||
echo "<input type=hidden name=ADD value=4111111111>\n";
|
echo "<input type=hidden name=ADD value=4111111111>\n";
|
||||||
|
echo "<input type=hidden name=DB value=\"$DB\">\n";
|
||||||
echo "<input type=hidden name=call_time_id value=\"$call_time_id\">\n";
|
echo "<input type=hidden name=call_time_id value=\"$call_time_id\">\n";
|
||||||
echo "<tr bgcolor=#B6D3FC><td align=right>Call Time ID: </td><td align=left colspan=3><B>$call_time_id</B>$NWB#vicidial_call_times-call_time_id$NWE</td></tr>\n";
|
echo "<tr bgcolor=#B6D3FC><td align=right>Call Time ID: </td><td align=left colspan=3><B>$call_time_id</B>$NWB#vicidial_call_times-call_time_id$NWE</td></tr>\n";
|
||||||
echo "<tr bgcolor=#B6D3FC><td align=right>State Call Time State: </td><td align=left colspan=3><input type=text name=state_call_time_state size=4 maxlength=2 value=\"$state_call_time_state\"> $NWB#vicidial_call_times-state_call_time_state$NWE</td></tr>\n";
|
echo "<tr bgcolor=#B6D3FC><td align=right>State Call Time State: </td><td align=left colspan=3><input type=text name=state_call_time_state size=4 maxlength=2 value=\"$state_call_time_state\"> $NWB#vicidial_call_times-state_call_time_state$NWE</td></tr>\n";
|
||||||
@@ -17030,6 +17042,7 @@ echo "<FONT FACE=\"ARIAL,HELVETICA\" COLOR=BLACK SIZE=2>";
|
|||||||
|
|
||||||
echo "<br>MODIFY A SHIFT<form action=$PHP_SELF method=POST>\n";
|
echo "<br>MODIFY A SHIFT<form action=$PHP_SELF method=POST>\n";
|
||||||
echo "<input type=hidden name=ADD value=431111111>\n";
|
echo "<input type=hidden name=ADD value=431111111>\n";
|
||||||
|
echo "<input type=hidden name=DB value=\"$DB\">\n";
|
||||||
echo "<input type=hidden name=shift_id value=\"$shift_id\">\n";
|
echo "<input type=hidden name=shift_id value=\"$shift_id\">\n";
|
||||||
echo "<center><TABLE width=$section_width cellspacing=3>\n";
|
echo "<center><TABLE width=$section_width cellspacing=3>\n";
|
||||||
echo "<tr bgcolor=#B6D3FC><td align=right>Shift ID: </td><td align=left><B>$shift_id</B></td></tr>\n";
|
echo "<tr bgcolor=#B6D3FC><td align=right>Shift ID: </td><td align=left><B>$shift_id</B></td></tr>\n";
|
||||||
|
|||||||
Reference in New Issue
Block a user