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 die ("No se pudo abrir el archivo de log. Se detiene el script.");
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 $db =& DB::connect('mysql://intranet:intranet@bal747f/yatta', true);
57 if (DB::isError($db)) {
58 die ($db->getMessage());
62 //CREO LOS OBJETOS NECESARIOS {{{
63 $CONTROLADOR =& new YATTA_Controlador;
64 $SERVIDOR =& new YATTA_Servidor;
67 //OBTENGO LOS DATOS DEL SERVER {{{
68 $YATTA_SERVER['tacho'] = '/var/www/yatta_tacho/';
69 $YATTA_SERVER['script'] = $argv[0];
70 $YATTA_SERVER['pid'] = getmypid();
71 $YATTA_SERVER['name'] = substr(file_get_contents('/etc/hostname'), 0, strpos
72 (file_get_contents('/etc/hostname'), "\n"));
73 $YATTA_SERVER['id'] = $SERVIDOR->obtenerId($db, $YATTA_SERVER['name']);
74 if (PEAR::isError($YATTA_SERVER['id'])) {
75 die('Error: ' . $YATTA_SERVER['id']->getMessage() . "\n");
77 yatta_log ('*************** Comienzo Ejecución ***************');
80 //BORRO LOS ARCHIVOS CON MAS DE 7 DIAS {{{
84 //VERIFICO LAS CUOTAS DE LOS USUARIOS{{{
85 //WHILEO POR USUARIO {{{
86 //HAY MAS DE LA CUOTA {{{
87 //BORRAR LOS ARCHIVOS MAS VIEJOS HASTA LLEGAR AL VALOR DE LA CUOTA.
88 //ENVIAR UN EMAIL AVISANDO DE ESTO.
90 //HAY MENOS DE LA CUOTA PERO SUPERA EL 80%{{{
91 //ENVIAR EMAIL SOBRE LA SITUACION Y AVISANDO QUE SI SE SUPERA LA CUOTA
92 //LOS ARCHIVOS MAS VIEJOS SERAN BORRADOS HASTA CUMPLIR EL REQUERIMIENTO
98 //CIERRO EL ARCHIVO DE LOG {{{
99 yatta_log ('*************** Finaliza Ejecución ***************');