3 # Comparador de fecha para los archivos de llamada
5 ($year1,$mon1,$day1,$hr1,$min1) = $a =~ /([0-9]{4})([0-9]{2})([0-9]{2})([0-9]{2})([0-9]{2})/;
6 ($year2,$mon2,$day2,$hr2,$min2) = $b =~ /([0-9]{4})([0-9]{2})([0-9]{2})([0-9]{2})([0-9]{2})/;
9 if ($year1 > $year2) { return 1; }
10 elsif ($year1 < $year2) { return -1; }
13 if ($mon1 > $mon2) { return 1; }
14 elsif ($mon1 < $mon2) { return -1; }
16 # Calculo minutos de lo restante
17 $totalmin1 = ($day1 * 24 * 60) + ($hr1 * 60) + $min1;
18 $totalmin2 = ($day2 * 24 * 60) + ($hr2 * 60) + $min2;
19 if ($totalmin1 > $totalmin2) { return 1; }
20 elsif ($totalmin1 < $totalmin2) { return -1; }
24 # Devuelve un listado de archivos de llamada y ordenado por fecha ASC
26 # Obtengo listado de archivos de llamadas y lo ordeno por fecha
28 opendir($DIR,"$data_dir/enproceso") or die 'Could not open dir';
29 # Valido solo fisicamente, lo logico ya valido afimonio..
30 @files = grep {/[0-9]{12}\.[0-9]{4}$/ && -f "$data_dir/enproceso/$_"}
32 @sortedfiles = sort byDate @files;
37 # Levanta una variable del archivo AFINSTAL.CONF
41 open(CONFIGFILE) or die "No se pudo abrir el archivo $CONFIGFILE";
42 do { $line = <CONFIGFILE> } until $. == $linenumber;
45 ($confvar = $line) =~ s/^.*= (.*)/$1/;
49 # Agrega un log entry al logfile del antifraude.pl
53 $log = "$CONFDATA{logdir}/$CONFDATA{logfile}";
54 # Fetch date and Format it
55 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) = gmtime(time);
56 $year += 1900; $year = sprintf("%02d", $year % 100); ++$mon;
57 $user = getlogin || "Unidentified";
58 $commonstring = "[$mday/$mon/$year $hour:$min:$sec|$user|antifraude]";
60 open(LOGFILE,">>$log") or die "No se pudo abrir el archivo de log";
62 print LOGFILE "$commonstring - $logentry\n";
65 if ($consoleout) { print("$logentry\n"); }
71 logEntry("El siguiente registro de llamada tiene formato invalido\n$callreg",0);
72 print("El registro numero $numreg tiene formato invalido\n");
75 # --------- MAIN CODE -------- #
76 # En la version final, recibo por param el directorio del .conf, por ahora
77 # recibo un dir donde tengo archivos de llamadas
78 if ((!$ARGV[0]) || (! -d $ARGV[0])) {
79 print("No se ha ingresado un directorio fuente de llamadas\n");
83 $CONFDATA{logdir} = getConfVar("$CONFDIR/afinstal.conf",12);
84 $CONFDATA{logfile} = getConfVar("$CONFDIR/afinstal.conf",13);
85 $CONFDATA{logsize} = getConfVar("$CONFDIR/afinstal.conf",14);
86 $CONFDATA{datadir} = getConfVar("$CONFDIR/afinstal.conf",15);
89 print("\nLogdir: $CONFDATA{logdir}\n");
90 print("Logfile: $CONFDATA{logfile}\n");
91 print("Logsize: $CONFDATA{logsize}\n");
92 print("Datadir: $CONFDATA{datadir}\n\n");
94 # Proceso los archivos de llamadas
95 @archivos = getCallFiles($CONFDATA{datadir});
96 FILE: foreach $filename (@archivos) {
98 $CALLFILE = "$CONFDATA{datadir}/enproceso/$filename";
99 logEntry("Inicio proceso de: $filename",1);
101 open(CALLFILE) or ((warn "No se pudo abrir archivo $filename"),next FILE);
102 REG: foreach $callreg (<CALLFILE>) {
103 logEntry("Procesando Reg: $regnum | Archivo: $filename",1);
105 $fieldcount = split(';',$callreg);
107 if ($fieldcount != 8) { badCall($callreg,$regnum); next REG; }
108 } continue { ++$regnum }
111 logEntry("Fin proceso de: $filename",1);