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 //ABRO EL ARCHIVO DE LOG {{{
40 //# touch /var/log/apache/YATTA_Tacho.log
41 //# chown root.www-data /var/log/apache/YATTA_Tacho.log
42 //# chmod 660 /var/log/apache/YATTA_Tacho.log
43 if (!($FH = fopen ("/var/log/apache/YATTA_Tacho.log", "a"))) {
44 trigger_error("No se pudo abrir el archivo de log. Se detiene el script.", E_USER_ERROR);
49 require_once 'DB.php';
50 require_once 'PEAR.php';
51 require_once 'YATTA/Controlador.php';
52 require_once 'YATTA/Servidor.php';
55 //CREO UNA CONEXION MYSQL{{{
56 $conf = parse_ini_file(dirname(__FILE__) . '/consultas.ini', true);
57 $db = DB::connect($conf['dsn'],$conf['opciones']);
58 if (DB::isError($db)) {
59 trigger_error($db->getMessage(), E_USER_ERROR);
63 //CREO LOS OBJETOS NECESARIOS {{{
64 $CONTROLADOR =& new YATTA_Controlador;
65 $SERVIDOR =& new YATTA_Servidor;
68 //OBTENGO LOS DATOS DEL SERVER {{{
69 $YATTA_SERVER['tacho'] = '/var/www/sistemas/yatta/tacho/';
70 $YATTA_SERVER['script'] = $argv[0];
71 $YATTA_SERVER['pid'] = getmypid();
72 $YATTA_SERVER['name'] = substr(file_get_contents('/etc/hostname'), 0, strpos
73 (file_get_contents('/etc/hostname'), "\n"));
74 $YATTA_SERVER['id'] = $SERVIDOR->obtenerId($db, $YATTA_SERVER['name']);
75 if (PEAR::isError($YATTA_SERVER['id'])) {
76 trigger_error('Error: ' . $YATTA_SERVER['id']->getMessage() . "\n", E_USER_ERROR);
78 yatta_log ('*************** Comienzo Ejecución ***************');
81 //BORRO LOS ARCHIVOS CON MAS DE 7 DIAS {{{
82 //@TODO Borrar los archivos com mas de 7 dias.
85 //VERIFICO LAS CUOTAS DE LOS USUARIOS{{{
86 //@TODO Verificar las cuotas de los usuarios y actuar como deba.
87 //WHILEO POR USUARIO {{{
88 //HAY MAS DE LA CUOTA {{{
89 //BORRAR LOS ARCHIVOS MAS VIEJOS HASTA LLEGAR AL VALOR DE LA CUOTA.
90 //ENVIAR UN EMAIL AVISANDO DE ESTO.
92 //HAY MENOS DE LA CUOTA PERO SUPERA EL 80%{{{
93 //ENVIAR EMAIL SOBRE LA SITUACION Y AVISANDO QUE SI SE SUPERA LA CUOTA
94 //LOS ARCHIVOS MAS VIEJOS SERAN BORRADOS HASTA CUMPLIR EL REQUERIMIENTO
100 //CIERRO EL ARCHIVO DE LOG {{{
101 yatta_log ('*************** Finaliza Ejecución ***************');