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 function yatta_log ($texto) {
32 $linea = strftime("%b %e %H:%M:%S").' '.$YATTA_SERVER['name'].' '.
33 $YATTA_SERVER['script'].'['.$YATTA_SERVER['pid'].']: '. $texto ."\n";
38 //Leo el archivo de configuracion {{{
39 $CONF = parse_ini_file(dirname(__FILE__) . '/configuracion.ini', true);
42 //ABRO EL ARCHIVO DE LOG {{{
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);
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';
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);
68 //CREO LOS OBJETOS NECESARIOS {{{
69 $CONTROLADOR =& new YATTA_Controlador;
70 $SERVIDOR =& new YATTA_Servidor;
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);
83 yatta_log ('*************** Comienzo Ejecución ***************');
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)),
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);
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.
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
122 //CIERRO EL ARCHIVO DE LOG {{{
123 yatta_log ('*************** Finaliza Ejecución ***************');