]> git.llucax.com Git - mecon/yatta.git/blob - script/servidores/YATTA_Tacho.php
Agrego documentación sobre el alta de nuevos procesos para futura ejecución.
[mecon/yatta.git] / script / servidores / YATTA_Tacho.php
1 #!/usr/bin/php4 -qC
2 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80 foldmethod=marker:
3 -------------------------------------------------------------------------------
4                              Ministerio de Economía
5                                     YATTA!
6 -------------------------------------------------------------------------------
7 This file is part of YATTA!.
8
9 YATTA! is free software; you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free
11 Software Foundation; either version 2 of the License, or (at your option)
12 any later version.
13
14 YATTA! is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17  
18 You should have received a copy of the GNU General Public License; if not,
19 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
20 Boston, MA  02111-1307  USA
21 -------------------------------------------------------------------------------
22 Creado: jue ene  8 16:53:47 ART 2004
23 Autor:  Martin Marrese <mmarre@mecon.gov.ar>
24 -------------------------------------------------------------------------------
25 $Id$
26 -----------------------------------------------------------------------------*/
27
28
29 //==============================================
30 //TODO FIXME XXX
31 //==============================================
32 //SACAR TODO LO QUE SE PUEDA A LAS CLASES QUE 
33 //CORRESPONDAN
34 //AGREGAR LAS LINEAS DEL LOG
35 //==============================================
36
37
38 //YATTA LOG {{{
39 function yatta_log ($texto) {
40     GLOBAL $YATTA_SERVER;
41     GLOBAL $FH;
42     $linea = strftime("%b %e %H:%M:%S").' '.$YATTA_SERVER['name'].' '.
43         $YATTA_SERVER['script'].'['.$YATTA_SERVER['pid'].']: '. $texto ."\n";
44     fwrite($FH, $linea);
45 }
46 //}}}
47
48 //Leo el archivo de configuracion {{{
49 $CONF = parse_ini_file(dirname(__FILE__) . '/configuracion.ini', true);
50 //}}}
51
52 //ABRO EL ARCHIVO DE LOG {{{
53 //Como root:
54 //# touch /var/log/apache/YATTA_Tacho.log
55 //# chown root.www-data /var/log/apache/YATTA_Tacho.log
56 //# chmod 660 /var/log/apache/YATTA_Tacho.log
57 if (!($FH = fopen ($CONF['tacho']['log'], "a"))) {
58      trigger_error("No se pudo abrir el archivo de log. Se detiene el script.", E_USER_ERROR);
59 }
60 //}}}
61
62 //REQUIRE ONCE {{{
63 require_once 'PEAR.php';
64 require_once 'YATTA/DB.php';
65 require_once 'YATTA/Controlador.php';
66 require_once 'YATTA/Servidor.php';
67 require_once 'YATTA/Archivo.php';
68 require_once 'Date.php';
69 require_once 'Date/Span.php';
70 //}}}
71
72 //CREO UNA CONEXION MYSQL{{{
73 $db = YATTA_DB::connect($CONF['db']);
74 if (DB::isError($db)) {
75      trigger_error($db->getMessage(), E_USER_ERROR);
76 }
77 //}}}
78
79 //CREO LOS OBJETOS NECESARIOS {{{
80 $CONTROLADOR =& new YATTA_Controlador;
81 $SERVIDOR =& new YATTA_Servidor;
82 //}}}
83
84 //OBTENGO LOS DATOS DEL SERVER {{{
85 $YATTA_SERVER['path_tacho'] = $CONF['tacho']['repositorio'];
86 $YATTA_SERVER['script'] = $argv[0];
87 $YATTA_SERVER['pid'] = getmypid();
88 $YATTA_SERVER['name'] = substr(file_get_contents('/etc/hostname'), 0, strpos
89         (file_get_contents('/etc/hostname'), "\n"));
90 $YATTA_SERVER['id'] = $SERVIDOR->obtenerId($db, $YATTA_SERVER['name']);
91 if (PEAR::isError($YATTA_SERVER['id'])) {
92      trigger_error('Error: ' . $YATTA_SERVER['id']->getMessage() . "\n", E_USER_ERROR);
93 }
94 yatta_log ('*************** Comienzo Ejecución ***************');
95 //}}}
96
97 //BORRO LOS ARCHIVOS CON MAS DE N DIAS {{{
98 if ($dh = opendir($YATTA_SERVER['path_tacho'])) {
99     while (false !== ($fh = readdir($dh))) { 
100         if ($fh != '.' && $fh != '..' && !in_array($fh, split(',',
101                         $CONF['tacho']['ignorar']))) {
102             $span =& new Date_Span (
103                     new Date (filemtime($YATTA_SERVER['path_tacho'].$fh)), 
104                     new Date ());
105             if ($span->greater(new Date_Span (
106                             array ($CONF['tacho']['cantidad_dias'],0,0,0)))) {
107                 
108                 $archivo =& new YATTA_Archivo;
109                 $archivo->archivo = $fh;
110                 $res = $archivo->buscar($DB);
111                 if (PEAR::isError($res)) {
112                      trigger_error('Error: ' . $res->getMessage() . "\n",
113                              E_USER_ERROR);
114                 }
115                 $archivo->cargar($res);
116                 $res = $archivo->borrar($res);
117                 if (PEAR::isError($res)) {
118                      trigger_error('Error: ' . $res->getMessage() . "\n",
119                              E_USER_ERROR);
120                 }
121             }
122         }
123     }
124     closedir($dh); 
125 }
126 //}}}
127
128 //VERIFICO LAS CUOTAS DE LOS USUARIOS{{{
129 //OBTENGO LA LISTA DE USUARIOS QUE TIENEN AL MENOS UNA ENTRADA EN EL MYSQL {{{
130 $res = $CONTROLADOR->obtenerListaOwners($db, true);
131 $res = $res->fetchRow(DB_FETCHMODE_ASSOC);
132 if (PEAR::isError($res)) {
133      trigger_error('Error: ' . $res->getMessage() . "\n", E_USER_ERROR);
134 }
135 //}}}
136 //OBTENGO LA LISTA DE USUARIOS CON CUOTAS EXCEPCIONALES {{{
137 $cuotas = $CONTROLADOR->obtenerListaCuotas($db);
138 $cuotas = $cuotas->fetchRow(DB_FETCHMODE_ARRAY);
139 if (PEAR::isError($cuotas)) {
140      trigger_error('Error: ' . $cuotas->getMessage() . "\n", E_USER_ERROR);
141 }
142 //}}}
143 //WHILEO POR USUARIO {{{
144 while ($usuario = $res->fetchRow(DB_FETCHMODE_ASSOC)) {
145     //VEO EL TIPO DE CUOTA DEL USUARIO {{{
146     if (@in_array($usuario['owner'], $cuotas)) {
147         if (PEAR::isError($cuotas)) {
148             trigger_error('Error: ' . $cuotas->getMessage() . "\n", E_USER_ERROR);
149         }
150     }
151     else {
152         $cuota = $CONF['cuota_tamanio'];
153     }
154     //}}}
155     //BUSCO LOS ARCHIVOS, TAMANIO y FECHA DEL USUARIO{{{
156     $archivo =& new YATTA_Archivo;
157     $archivo->owner = $usuario['owner'];
158     $res = $archivo->buscar($DB, MECON_DBO_OR, null, false);
159     if (PEAR::isError($res)) {
160         trigger_error('Error: ' . $res->getMessage() . "\n", E_USER_ERROR);
161     }
162     $tamanio = 0;
163     $contador = 0;
164     while ($archivo->cargar($res)) {
165         if (PEAR::isError($res)) {
166             trigger_error('Error: ' . $res->getMessage() . "\n", E_USER_ERROR);
167         }
168         //Obtengo la fecha, el tamanio de cada archivo.
169         if (file_exists($archivo->archivo)) {
170             $archivos[$contador]['nombre'] = $archivo->archivo;
171             $archivos[$contador]['resultado'] = $archivo->resultado;
172             $archivos[$contador]['tamanio'] = filesize($archivo->archivo);
173             $archivos[$contador]['fecha'] = filemtime($archivo->archivo);
174             $tamanio += $archivos[$archivo->archivo]['tamanio'] ;
175             $contador ++;
176         }
177     }
178     //}}}
179     //HAY MAS DE LA CUOTA {{{
180     if ($cuota <= (($tamanio / 1024) / 1024)) {
181         //BORRAR LOS ARCHIVOS MAS VIEJOS HASTA LLEGAR AL VALOR DE LA CUOTA.
182         //Ordeno los archivos por la fecha, y voy "borrando" los mas viejos
183         //hasta cumplir con el tamaño de la cuota.
184         usort($archivos, 'usort_archivos_callback');
185         $seguir = true;
186         while ($seguir == true) {
187             $archivo = array_shift($archivos);
188             $tamanio -= $archivo['tamanio'];
189             $borrar[] = $archivo['nombre'];
190             $borrar2[] = $archivo['resultado'];
191             if ((($tamanio / 1024) / 1024) < 
192                     ($CONF['cuota_warning'] * $cuota / 100)) {
193                 $seguir = false;
194             }
195         }
196         //Borros los archivos correspondientes.
197         foreach ($borrar as $b) {
198             unlink($b);
199         }
200         //Envio el email
201         if (@$borrar2) {
202             array_unshift($borrar2, 
203                     "La capacidad maxima que usted tiene en el sistema YATTA fue",
204                     "superada.",
205                     "Los siguientes archivos han sido borrados del sistema:");
206             array_push($borrar2, 
207                     "\n\nEste es un mensaje generado automaticamente por YATTA,".
208                     " por favor no responder a este email\n");
209             $body = implode ('\n', $borrar);
210             $to = $usuario.'.gov.ar';
211             $headers = "From: Intranet - YATTA <intranet2@mecon.gov.ar>\r\n";
212             $subject = "INTRANET - SAYONARA - Aviso cuota excedida.";
213             mail($to, $subject, $body, $headers);
214         }
215     }
216     //}}}
217     //HAY MENOS DE LA CUOTA PERO SUPERA LO ESTABLECIDO EN EL ARCHIVO DE CONFIGURAION{{{
218     elseif (($CONF['cuota_warning'] * $cuota / 100) <= (($tamanio / 1024) / 1024)) {
219         //ENVIAR EMAIL SOBRE LA SITUACION Y AVISANDO QUE SI SE SUPERA LA CUOTA
220         //LOS ARCHIVOS MAS VIEJOS SERAN BORRADOS HASTA CUMPLIR EL REQUERIMIENTO
221         //DE TAMAÑO
222         //LEVANTAR DEL ARCHIVO DE CONFIGURACION EL HOST PARA EL LINK (ASI EL
223         //INFELIZ USUARIO VA A VER QUE MIERDA TIENE, QUE BORRA Y QUE NO)
224         $body = 
225             "Su cuota dentro del sistema YATTA esta por completarse, le \n".
226             "pedimos que libere espacio para futuros archivos.\n".
227             "\nhttp://intranet.mecon.ar/sistemas/intranet/login?redirect".
228             "=/sistemas/yatta\n\n".
229             "\n\nEste es un mensaje generado automaticamente por YATTA,".
230             " por favor no responder a este email\n";
231         $to = $usuario.'.gov.ar';
232         $headers = "From: Intranet - YATTA <intranet2@mecon.gov.ar>\r\n";
233         $subject = "INTRANET - SAYONARA - Aviso cuota completa.";
234         mail($to, $subject, $body, $headers);
235     }
236     //}}}
237 }
238 //}}}
239 //}}}
240
241 //CIERRO EL ARCHIVO DE LOG {{{
242 yatta_log ('*************** Finaliza Ejecución ***************');
243 fclose ($FH);
244 //}}}
245
246 //FUNCIONES AUXILIARES {{{
247 //Ordena los archivos segun la "edad"
248 function usort_archivos_callback($arg1, $arg2) {
249     if ($arg1['fecha'] == $arg2['fecha']) {
250         return 0;
251     }
252     return ($arg1['fecha'] < $arg2['fecha']) ? -1 : 1;
253 }
254 //}}}
255
256 ?>