]> git.llucax.com Git - mecon/yatta.git/blob - script/servidores/YATTA_Tacho.php
d3ee88d1f80cbbdd13f5b2d4a6e6c7238e3a854c
[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 //YATTA LOG {{{
29 function yatta_log ($texto) {
30     GLOBAL $YATTA_SERVER;
31     GLOBAL $FH;
32     $linea = strftime("%b %e %H:%M:%S").' '.$YATTA_SERVER['name'].' '.
33         $YATTA_SERVER['script'].'['.$YATTA_SERVER['pid'].']: '. $texto ."\n";
34     fwrite($FH, $linea);
35 }
36 //}}}
37
38 //Leo el archivo de configuracion {{{
39 $CONF = parse_ini_file(dirname(__FILE__) . '/configuracion.ini', true);
40 //}}}
41
42 //ABRO EL ARCHIVO DE LOG {{{
43 //Como root:
44 //# touch /var/log/apache/YATTA_Tacho.log
45 //# chown root.www-data /var/log/apache/YATTA_Tacho.log
46 //# chmod 660 /var/log/apache/YATTA_Tacho.log
47 if (!($FH = fopen ($CONF['tacho']['log'], "a"))) {
48      trigger_error("No se pudo abrir el archivo de log. Se detiene el script.", E_USER_ERROR);
49 }
50 //}}}
51
52 //REQUIRE ONCE {{{
53 require_once 'PEAR.php';
54 require_once 'YATTA/DB.php';
55 require_once 'YATTA/Controlador.php';
56 require_once 'YATTA/Servidor.php';
57 require_once 'Date.php';
58 require_once 'Date/Span.php';
59 //}}}
60
61 //CREO UNA CONEXION MYSQL{{{
62 $db = YATTA_DB::connect($CONF['db']);
63 if (DB::isError($db)) {
64      trigger_error($db->getMessage(), E_USER_ERROR);
65 }
66 //}}}
67
68 //CREO LOS OBJETOS NECESARIOS {{{
69 $CONTROLADOR =& new YATTA_Controlador;
70 $SERVIDOR =& new YATTA_Servidor;
71 //}}}
72
73 //OBTENGO LOS DATOS DEL SERVER {{{
74 $YATTA_SERVER['path_tacho'] = $CONF['tacho']['repositorio'];
75 $YATTA_SERVER['script'] = $argv[0];
76 $YATTA_SERVER['pid'] = getmypid();
77 $YATTA_SERVER['name'] = substr(file_get_contents('/etc/hostname'), 0, strpos
78         (file_get_contents('/etc/hostname'), "\n"));
79 $YATTA_SERVER['id'] = $SERVIDOR->obtenerId($db, $YATTA_SERVER['name']);
80 if (PEAR::isError($YATTA_SERVER['id'])) {
81      trigger_error('Error: ' . $YATTA_SERVER['id']->getMessage() . "\n", E_USER_ERROR);
82 }
83 yatta_log ('*************** Comienzo Ejecución ***************');
84 //}}}
85
86 //BORRO LOS ARCHIVOS CON MAS DE N DIAS {{{
87 if ($dh = opendir($YATTA_SERVER['path_tacho'])) {
88     while (false !== ($fh = readdir($dh))) { 
89         if ($fh != '.' && $fh != '..' && !in_array($fh, split(',',
90                         $CONF['tacho']['ignorar']))) {
91             $span =& new Date_Span (
92                     new Date (filemtime($YATTA_SERVER['path_tacho'].$fh)), 
93                     new Date ());
94             if ($span->greater(new Date_Span (
95                             array ($CONF['tacho']['cantidad_dias'],0,0,0)))) {
96                 if (!unlink($YATTA_SERVER['path_tacho'].$fh)) {
97                     trigger_error("No se pudo borrar el archivo
98                             ".$YATTA_SERVER['path_tacho'].$fh, E_USER_ERROR);
99                 }
100             }
101         }
102     }
103     closedir($dh); 
104 }
105 //}}}
106
107 //VERIFICO LAS CUOTAS DE LOS USUARIOS{{{
108 //@TODO Verificar las cuotas de los usuarios y actuar como deba.
109     //WHILEO POR USUARIO {{{
110         //HAY MAS DE LA CUOTA {{{
111         //BORRAR LOS ARCHIVOS MAS VIEJOS HASTA LLEGAR AL VALOR DE LA CUOTA.
112         //ENVIAR UN EMAIL AVISANDO DE ESTO.
113         //}}}
114         //HAY MENOS DE LA CUOTA PERO SUPERA EL 80%{{{
115         //ENVIAR EMAIL SOBRE LA SITUACION Y AVISANDO QUE SI SE SUPERA LA CUOTA
116         //LOS ARCHIVOS MAS VIEJOS SERAN BORRADOS HASTA CUMPLIR EL REQUERIMIENTO
117         //DE TAMAÑO
118         //}}}
119     //}}}
120 //}}}
121
122 //CIERRO EL ARCHIVO DE LOG {{{
123 yatta_log ('*************** Finaliza Ejecución ***************');
124 fclose ($FH);
125 //}}}
126 ?>