]> git.llucax.com Git - mecon/yatta.git/blob - script/servidores/YATTA_Tacho.php
60eecd7944d0972be507c818acb90cdc0dad6941
[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 //==============================================
35
36
37 //YATTA LOG {{{
38 function yatta_log ($texto) {
39     GLOBAL $YATTA_SERVER;
40     GLOBAL $FH;
41     $linea = strftime("%b %e %H:%M:%S").' '.$YATTA_SERVER['name'].' '.
42         $YATTA_SERVER['script'].'['.$YATTA_SERVER['pid'].']: '. $texto ."\n";
43     fwrite($FH, $linea);
44 }
45 //}}}
46
47 //Leo el archivo de configuracion {{{
48 $CONF = parse_ini_file(dirname(__FILE__) . '/configuracion.ini', true);
49 //}}}
50
51 //ABRO EL ARCHIVO DE LOG {{{
52 //Como root:
53 //# touch /var/log/apache/YATTA_Tacho.log
54 //# chown root.www-data /var/log/apache/YATTA_Tacho.log
55 //# chmod 660 /var/log/apache/YATTA_Tacho.log
56 if (!($FH = fopen ($CONF['tacho']['log'], "a"))) {
57      trigger_error("No se pudo abrir el archivo de log. Se detiene el script.", E_USER_ERROR);
58 }
59 //}}}
60
61 //REQUIRE ONCE {{{
62 require_once 'PEAR.php';
63 require_once 'YATTA/DB.php';
64 require_once 'YATTA/Controlador.php';
65 require_once 'YATTA/Servidor.php';
66 require_once 'YATTA/Archivo.php';
67 require_once 'Date.php';
68 require_once 'Date/Span.php';
69 //}}}
70
71 //CREO UNA CONEXION MYSQL{{{
72 $db = YATTA_DB::connect($CONF['db']);
73 if (DB::isError($db)) {
74      trigger_error($db->getMessage(), E_USER_ERROR);
75 }
76 //}}}
77
78 //CREO LOS OBJETOS NECESARIOS {{{
79 $CONTROLADOR =& new YATTA_Controlador;
80 $SERVIDOR =& new YATTA_Servidor;
81 //}}}
82
83 //OBTENGO LOS DATOS DEL SERVER {{{
84 $YATTA_SERVER['path_tacho'] = $CONF['tacho']['repositorio'];
85 $YATTA_SERVER['script'] = $argv[0];
86 $YATTA_SERVER['pid'] = getmypid();
87 $YATTA_SERVER['name'] = substr(file_get_contents('/etc/hostname'), 0, strpos
88         (file_get_contents('/etc/hostname'), "\n"));
89 $YATTA_SERVER['id'] = $SERVIDOR->obtenerId($db, $YATTA_SERVER['name']);
90 if (PEAR::isError($YATTA_SERVER['id'])) {
91      trigger_error('Error: ' . $YATTA_SERVER['id']->getMessage() . "\n", E_USER_ERROR);
92 }
93 yatta_log ('*************** Comienzo Ejecución ***************');
94 //}}}
95
96 //BORRO LOS ARCHIVOS CON MAS DE N DIAS {{{
97 if ($dh = opendir($YATTA_SERVER['path_tacho'])) {
98     while (false !== ($fh = readdir($dh))) { 
99         if ($fh != '.' && $fh != '..' && !in_array($fh, split(',',
100                         $CONF['tacho']['ignorar']))) {
101             $span =& new Date_Span (
102                     new Date (filemtime($YATTA_SERVER['path_tacho'].$fh)), 
103                     new Date ());
104             if ($span->greater(new Date_Span (
105                             array ($CONF['tacho']['cantidad_dias'],0,0,0)))) {
106                 
107                 $archivo =& new YATTA_Archivo;
108                 $archivo->archivo = $fh;
109                 $res = $archivo->buscar($DB);
110                 if (PEAR::isError($res)) {
111                      trigger_error('Error: ' . $res->getMessage() . "\n",
112                              E_USER_ERROR);
113                 }
114                 $archivo->cargar($res);
115                 $res = $archivo->borrar($res);
116                 if (PEAR::isError($res)) {
117                      trigger_error('Error: ' . $res->getMessage() . "\n",
118                              E_USER_ERROR);
119                 }
120             }
121         }
122     }
123     closedir($dh); 
124 }
125 //}}}
126
127 //VERIFICO LAS CUOTAS DE LOS USUARIOS{{{
128 //OBTENGO LA LISTA DE USUARIOS QUE TIENEN AL MENOS UNA ENTRADA EN EL MYSQL {{{
129 $res = $CONTROLADOR->obtenerListaOwners($db, true);
130 $res = $res->fetchRow(DB_FETCHMODE_ASSOC);
131 if (PEAR::isError($res)) {
132      trigger_error('Error: ' . $res->getMessage() . "\n", E_USER_ERROR);
133 }
134 //}}}
135 //OBTENGO LA LISTA DE USUARIOS CON CUOTAS EXCEPCIONALES {{{
136 $cuotas = $CONTROLADOR->obtenerListaCuotas($db);
137 $cuotas = $cuotas->fetchRow(DB_FETCHMODE_ARRAY);
138 if (PEAR::isError($cuotas)) {
139      trigger_error('Error: ' . $cuotas->getMessage() . "\n", E_USER_ERROR);
140 }
141 //}}}
142 //WHILEO POR USUARIO {{{
143 while ($usuario = $res->fetchRow(DB_FETCHMODE_ASSOC)) {
144     //VEO EL TIPO DE CUOTA DEL USUARIO {{{
145     if (@in_array($usuario['owner'], $cuotas)) {
146         if (PEAR::isError($cuotas)) {
147             trigger_error('Error: ' . $cuotas->getMessage() . "\n", E_USER_ERROR);
148         }
149     }
150     else {
151         $cuota = $CONF['cuota_tamanio'];
152     }
153     //}}}
154     //BUSCO LOS ARCHIVOS, TAMANIO y FECHA DEL USUARIO{{{
155     $archivo =& new YATTA_Archivo;
156     $archivo->owner = $usuario['owner'];
157     $res = $archivo->buscar($DB, MECON_DBO_OR, null, false);
158     if (PEAR::isError($res)) {
159         trigger_error('Error: ' . $res->getMessage() . "\n", E_USER_ERROR);
160     }
161     $tamanio = 0;
162     $contador = 0;
163     while ($archivo->cargar($res)) {
164         if (PEAR::isError($res)) {
165             trigger_error('Error: ' . $res->getMessage() . "\n", E_USER_ERROR);
166         }
167         //Obtengo la fecha, el tamanio de cada archivo.
168         if (file_exists($archivo->archivo)) {
169             $archivos[$contador]['nombre'] = $archivo->archivo;
170             $archivos[$contador]['resultado'] = $archivo->resultado;
171             $archivos[$contador]['tamanio'] = filesize($archivo->archivo);
172             $archivos[$contador]['fecha'] = filemtime($archivo->archivo);
173             $tamanio += $archivos[$archivo->archivo]['tamanio'] ;
174             $contador ++;
175         }
176     }
177     //}}}
178     //HAY MAS DE LA CUOTA {{{
179     if ($cuota <= (($tamanio / 1024) / 1024)) {
180         //BORRAR LOS ARCHIVOS MAS VIEJOS HASTA LLEGAR AL VALOR DE LA CUOTA.
181         //Ordeno los archivos por la fecha, y voy "borrando" los mas viejos
182         //hasta cumplir con el tamaño de la cuota.
183         usort($archivos, 'usort_archivos_callback');
184         $seguir = true;
185         while ($seguir == true) {
186             $archivo = array_shift($archivos);
187             $tamanio -= $archivo['tamanio'];
188             $borrar[] = $archivo['nombre'];
189             $borrar2[] = $archivo['resultado'];
190             if ((($tamanio / 1024) / 1024) < 
191                     ($CONF['cuota_warning'] * $cuota / 100)) {
192                 $seguir = false;
193             }
194         }
195         //Borros los archivos correspondientes.
196         foreach ($borrar as $b) {
197             unlink($b);
198         }
199         //Envio el email
200         if (@$borrar2) {
201             array_unshift($borrar2, 
202                     "Los siguientes archivos han sido borrados del sistema YATTA:");
203             array_push($borrar2, 
204                     "\n\nEste es un mensaje generado automaticamente por YATTA,".
205                     " por favor no responder a este email\n");
206             $body = implode ('\n', $borrar);
207             $to = $usuario.'.gov.ar';
208             $headers = "From: Intranet - YATTA <intranet2@mecon.gov.ar>\r\n";
209             $subject = "INTRANET - SAYONARA - Aviso cuota excedida.";
210             mail($to, $subject, $body, $headers);
211         }
212     }
213     //}}}
214     //HAY MENOS DE LA CUOTA PERO SUPERA LO ESTABLECIDO EN EL ARCHIVO DE CONFIGURAION{{{
215     elseif (($CONF['cuota_warning'] * $cuota / 100) <= (($tamanio / 1024) / 1024)) {
216         //ENVIAR EMAIL SOBRE LA SITUACION Y AVISANDO QUE SI SE SUPERA LA CUOTA
217         //LOS ARCHIVOS MAS VIEJOS SERAN BORRADOS HASTA CUMPLIR EL REQUERIMIENTO
218         //DE TAMAÑO
219         //LEVANTAR DEL ARCHIVO DE CONFIGURACION EL HOST PARA EL LINK (ASI EL
220         //INFELIZ USUARIO VA A VER QUE MIERDA TIENE, QUE BORRA Y QUE NO)
221         $body = 
222             "Su cuota dentro del sistema YATTA esta por completarse, le \n".
223             "pedimos que libere espacio para futuros archivos.\n".
224             "\nhttp://intranet.mecon.ar/sistemas/intranet/login?redirect".
225             "=/sistemas/yatta\n\n".
226             "\n\nEste es un mensaje generado automaticamente por YATTA,".
227             " por favor no responder a este email\n";
228         $to = $usuario.'.gov.ar';
229         $headers = "From: Intranet - YATTA <intranet2@mecon.gov.ar>\r\n";
230         $subject = "INTRANET - SAYONARA - Aviso cuota completa.";
231         mail($to, $subject, $body, $headers);
232     }
233     //}}}
234 }
235 //}}}
236 //}}}
237
238 //CIERRO EL ARCHIVO DE LOG {{{
239 yatta_log ('*************** Finaliza Ejecución ***************');
240 fclose ($FH);
241 //}}}
242
243 //FUNCIONES AUXILIARES {{{
244 //Ordena los archivos segun la "edad"
245 function usort_archivos_callback($arg1, $arg2) {
246     if ($arg1['fecha'] == $arg2['fecha']) {
247         return 0;
248     }
249     return ($arg1['fecha'] < $arg2['fecha']) ? -1 : 1;
250 }
251 //}}}
252
253 ?>