4 if ( -e "$ENV{'HOME'}/.antifraude/lock/antifraude.pid" ) {
13 unlink ("$ENV{'HOME'}/.antifraude/lock/antifraude.pid");
18 local $lfile = "$ENV{'HOME'}/.antifraude/lock/antifraude.pid";
19 open(LOCKFILE,">>$lfile");
27 # Comparador de fecha para los archivos de llamada
29 ($year1,$mon1,$day1,$hr1,$min1) = $a =~ /([0-9]{4})([0-9]{2})([0-9]{2})([0-9]{2})([0-9]{2})/;
30 ($year2,$mon2,$day2,$hr2,$min2) = $b =~ /([0-9]{4})([0-9]{2})([0-9]{2})([0-9]{2})([0-9]{2})/;
33 if ($year1 > $year2) { return 1; }
34 elsif ($year1 < $year2) { return -1; }
37 if ($mon1 > $mon2) { return 1; }
38 elsif ($mon1 < $mon2) { return -1; }
40 # Calculo minutos de lo restante
41 $totalmin1 = ($day1 * 24 * 60) + ($hr1 * 60) + $min1;
42 $totalmin2 = ($day2 * 24 * 60) + ($hr2 * 60) + $min2;
43 if ($totalmin1 > $totalmin2) { return 1; }
44 elsif ($totalmin1 < $totalmin2) { return -1; }
48 # Devuelve un listado de archivos de llamada y ordenado por fecha ASC
50 # Obtengo listado de archivos de llamadas y lo ordeno por fecha
51 opendir($DIR,"$CONFDATA{datadir}/enproceso") or die 'Could not open dir';
52 # Valido solo fisicamente, lo logico ya valido afimonio..
53 @files = grep {/[0-9]{12}\.[0-9]{4}$/ && -f "$CONFDATA{datadir}/enproceso/$_"} readdir($DIR);
54 @sortedfiles = sort byDate @files;
59 # Levanta una variable del archivo AFINSTAL.CONF
61 $CONFIGFILE = shift(@_);
62 my $linenumber = shift(@_);
63 open(CONFIGFILE) or die "No se pudo abrir el archivo $CONFIGFILE";
64 do { $line = <CONFIGFILE> } until $. == $linenumber;
67 ($confvar = $line) =~ s/^.*= (.*)/$1/;
71 # Agrega un log entry al logfile del antifraude.pl
73 my $logentry = shift(@_);
74 my $consoleout = shift(@_);
75 my $log = "$CONFDATA{logdir}/$CONFDATA{logfile}";
76 # Fetch date and Format it
77 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
78 $year += 1900; $year = sprintf("%02d", $year % 100); ++$mon;
79 $user = getlogin || "Unidentified";
80 $commonstring = "[$mday/$mon/$year $hour:$min:$sec|$user|antifraude]";
82 open(LOGFILE,">>$log") or die "No se pudo abrir el archivo de log";
84 print LOGFILE "$commonstring - $logentry\n";
87 if ($consoleout) { print("$logentry\n"); }
91 my $callreg = shift(@_);
92 my $numreg = shift(@_);
93 logEntry("El siguiente registro de llamada tiene formato invalido\n$callreg",0);
94 print("Warning: El registro de llamada $numreg tiene formato invalido\n");
99 local(*callfields) = $_[0];
100 my $callsfile = $_[1];
101 print("Callfields: @callfields\n");
102 print("Callfile: $callsfile\n");
103 my $matchedUmbral = 0;
106 while (($i <= $#UMBRALES) && ($matchedUmbral == 0)) {
107 $umbral = $UMBRALES[$i];
109 ($regid,$phoneline,$oridest,$type,$state) = split(';',$umbral);
110 if (($state eq 'A') && ($callfields[0] == $phoneline) &&
111 ($callfields[4] eq $type)) {
112 # Si es Saliente y coincide el Destino con el Ori/Dest del umbral
113 if (($type eq 'S') && ($callfields[5] eq $oridest)) {
114 $matchedUmbral = $regid;
116 if (($type eq 'E') && ($callfields[6] eq $oridest)) {
117 $matchedUmbral = $regid;
123 # Si se matcheo un umbral, grabo una alarma y aviso por consola
124 if ($matchedUmbral > 0) {
125 # Obtengo algunos datos
126 ($central = $callsfile) =~ s/^.*\.//;
127 $user = getlogin || 'Unidentified';
129 # Fetch date and Format it
130 ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
131 $year += 1900; ++$mon;
132 $date = "$year$mon$mday";
133 $time = "$hour$min$sec";
135 # Preparo el registro de alarma
136 $alarmEntry = "$callfields[7];$central;$callfields[0];$callfields[1];$regid;$callfields[2];$callfields[3];$user;$date;$time";
138 # Grabamos el registro en el archivo de alarmas
139 $alarmlog = "$CONFDATA{datadir}/alarmas/alarmas.txt";
140 open(ALARMFILE,">>$alarmlog") or die 'No se pudo abrir el archivo de alarmas';
142 print ALARMFILE "$alarmEntry\n";
145 # Logeo por consola y logfile que hubo una alarma
146 logEntry("Alarma: Se ha matcheado el registro procesado con el umbral nro $matchedUmbral",1);
150 # --------- MAIN CODE -------- #
151 # En la version final, recibo por param el directorio del .conf, por ahora
152 # recibo un dir donde tengo archivos de llamadas
153 if ((!$ARGV[0]) || (! -d $ARGV[0])) {
154 print("No se ha ingresado un directorio fuente de llamadas\n");
159 if (is_lock()) { exit 1; }
162 # Defino some GLOBALS
164 $CONFDATA{logdir} = getConfVar("$CONFDIR/afinstal.conf",12);
165 $CONFDATA{logfile} = getConfVar("$CONFDIR/afinstal.conf",13);
166 $CONFDATA{logsize} = getConfVar("$CONFDIR/afinstal.conf",14);
167 $CONFDATA{datadir} = getConfVar("$CONFDIR/afinstal.conf",15);
168 $CONFDATA{alarmlog} = "$CONFDIR/alarmas/alarmas.txt";
170 # Cargo los UMBRALES en memoria
171 open(PARAMFILE,"$CONFDIR/umbrales.param") or die "No se pudo abrir el archivo de umbrales";
172 @UMBRALES = <PARAMFILE>;
176 print("\nLogdir: $CONFDATA{logdir}\n");
177 print("Logfile: $CONFDATA{logfile}\n");
178 print("Logsize: $CONFDATA{logsize}\n");
179 print("Datadir: $CONFDATA{datadir}\n\n");
181 # Proceso los archivos de llamadas
182 @archivos = getCallFiles();
183 FILE: foreach $filename (@archivos) {
185 $CALLFILE = "$CONFDATA{datadir}/enproceso/$filename";
186 logEntry("Inicio proceso de: $filename",1);
188 open(CALLFILE) or ((warn "No se pudo abrir archivo $filename"),next FILE);
189 REG: foreach $callreg (<CALLFILE>) {
190 logEntry("Procesando Reg: $regnum | Archivo: $filename",1);
192 $fieldcount = split(';',$callreg);
194 # Si no tengo 8 campos exactamente, invalido
195 if ($fieldcount != 8) { badCall($callreg,$regnum); next REG; }
196 # Si la linea no es un numero, invalido
197 $fields[0] =~ s/^\s*(\w*)\s*$/$1/;
198 if (!($fields[0] =~ /^\d+$/)) { badCall($callreg,$regnum); next REG; }
199 # Si tipo llamada ! E|S o no se informa Origen o Destino, invalido
200 if (($fields[4] ne 'E') && ($fields[4] ne 'S')) {
201 badCall($callreg,$regnum); next REG;
203 if (($fields[4] eq 'E') && ($fields[6] eq "")) {
204 badCall($callreg,$regnum); next REG;
206 if (($fields[4] eq 'S') && ($fields[5] eq "")) {
207 badCall($callreg,$regnum); next REG;
210 # Ya pase todas las validaciones, ahora busco si exite un umbral
211 checkUmbrales(*fields,$filename);
212 } continue { ++$regnum }
215 # La muevo al directorio de procesadas
216 rename $CALLFILE,"$CONFDATA{datadir}/procesadas/$filename";
218 logEntry("Fin proceso de: $filename",1);