2 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80 foldmethod=marker:
3 -------------------------------------------------------------------------------
6 -------------------------------------------------------------------------------
7 This file is part of YATTA!.
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)
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.
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 -------------------------------------------------------------------------------
26 -----------------------------------------------------------------------------*/
29 //==============================================
31 //==============================================
32 //SACAR TODO LO QUE SE PUEDA A LAS CLASES QUE
34 //AGREGAR LAS LINEAS DEL LOG
35 //==============================================
39 function yatta_log ($texto) {
42 $linea = strftime("%b %e %H:%M:%S").' '.$YATTA_SERVER['name'].' '.
43 $YATTA_SERVER['script'].'['.$YATTA_SERVER['pid'].']: '. $texto ."\n";
48 //Leo el archivo de configuracion {{{
49 $CONF = parse_ini_file(dirname(__FILE__) . '/configuracion.ini', true);
52 //ABRO EL ARCHIVO DE LOG {{{
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);
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';
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);
79 //CREO LOS OBJETOS NECESARIOS {{{
80 $CONTROLADOR =& new YATTA_Controlador;
81 $SERVIDOR =& new YATTA_Servidor;
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);
94 yatta_log ('*************** Comienzo Ejecución ***************');
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)),
105 if ($span->greater(new Date_Span (
106 array ($CONF['tacho']['cantidad_dias'],0,0,0)))) {
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",
115 $archivo->cargar($res);
116 $res = $archivo->borrar($res);
117 if (PEAR::isError($res)) {
118 trigger_error('Error: ' . $res->getMessage() . "\n",
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);
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);
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);
152 $cuota = $CONF['cuota_tamanio'];
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);
164 while ($archivo->cargar($res)) {
165 if (PEAR::isError($res)) {
166 trigger_error('Error: ' . $res->getMessage() . "\n", E_USER_ERROR);
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'] ;
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');
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)) {
196 //Borros los archivos correspondientes.
197 foreach ($borrar as $b) {
202 array_unshift($borrar2,
203 "La capacidad maxima que usted tiene en el sistema YATTA fue",
205 "Los siguientes archivos han sido borrados del sistema:");
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);
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
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)
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);
241 //CIERRO EL ARCHIVO DE LOG {{{
242 yatta_log ('*************** Finaliza Ejecución ***************');
246 //FUNCIONES AUXILIARES {{{
247 //Ordena los archivos segun la "edad"
248 function usort_archivos_callback($arg1, $arg2) {
249 if ($arg1['fecha'] == $arg2['fecha']) {
252 return ($arg1['fecha'] < $arg2['fecha']) ? -1 : 1;