]> git.llucax.com Git - mecon/yatta.git/blob - script/servidores/YATTA_Tacho.php
f5a0822a63ddc1bfa244d6cf46cd56d365dbf206
[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 //ABRO EL ARCHIVO DE LOG {{{
39 //Como root:
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);
45 }
46 //}}}
47
48 //REQUIRE ONCE {{{
49 require_once 'DB.php';
50 require_once 'PEAR.php';
51 require_once 'YATTA/Controlador.php';
52 require_once 'YATTA/Servidor.php';
53 //}}}
54
55 //CREO UNA CONEXION MYSQL{{{
56 $db =& DB::connect('mysql://intranet:intranet@bal747f/yatta', true);
57 if (DB::isError($db)) {
58      trigger_error($db->getMessage(), E_USER_ERROR);
59 }
60 //}}}
61
62 //CREO LOS OBJETOS NECESARIOS {{{
63 $CONTROLADOR =& new YATTA_Controlador;
64 $SERVIDOR =& new YATTA_Servidor;
65 //}}}
66
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      trigger_error('Error: ' . $YATTA_SERVER['id']->getMessage() . "\n", E_USER_ERROR);
76 }
77 yatta_log ('*************** Comienzo Ejecución ***************');
78 //}}}
79
80 //BORRO LOS ARCHIVOS CON MAS DE 7 DIAS {{{
81 //@TODO Borrar los archivos com mas de 7 dias.
82 //}}}
83
84 //VERIFICO LAS CUOTAS DE LOS USUARIOS{{{
85 //@TODO Verificar las cuotas de los usuarios y actuar como deba.
86     //WHILEO POR USUARIO {{{
87         //HAY MAS DE LA CUOTA {{{
88         //BORRAR LOS ARCHIVOS MAS VIEJOS HASTA LLEGAR AL VALOR DE LA CUOTA.
89         //ENVIAR UN EMAIL AVISANDO DE ESTO.
90         //}}}
91         //HAY MENOS DE LA CUOTA PERO SUPERA EL 80%{{{
92         //ENVIAR EMAIL SOBRE LA SITUACION Y AVISANDO QUE SI SE SUPERA LA CUOTA
93         //LOS ARCHIVOS MAS VIEJOS SERAN BORRADOS HASTA CUMPLIR EL REQUERIMIENTO
94         //DE TAMAÑO
95         //}}}
96     //}}}
97 //}}}
98
99 //CIERRO EL ARCHIVO DE LOG {{{
100 yatta_log ('*************** Finaliza Ejecución ***************');
101 fclose ($FH);
102 //}}}
103 ?>