]> git.llucax.com Git - z.facultad/75.43/tp1.git/blob - src/lib/Usuario.php
Se agrega una subclase de Item para mostrar archivo de log con el listador.
[z.facultad/75.43/tp1.git] / src / lib / Usuario.php
1 <?php
2 // vim: set binary noeol et sw=4 sts=4 :
3 // Grupo 10
4 //
5 // Lucarella, Schein, Arena
6 //
7 // Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
8 //
9 // $Id$
10
11 require_once 'lib/file.creditos.php';
12 require_once 'lib/file.admins.php';
13 require_once 'lib/file.users.php';
14 require_once 'lib/file.int.php';
15 require_once 'lib/file.ase.php';
16 require_once 'lib/file.log.php';
17
18 /**
19  * XXX detailed description
20  *
21  * @author    XXX
22  * @copyright XXX
23  * @abstract
24  */
25 class Usuario
26 {
27     // Attributes
28     var $_id;
29     var $_nombre;
30     var $_apellido;
31     var $_email;
32
33     function Usuario($id)
34     {
35         $this->_id = $id;
36         $d = file_users_get($id);
37         $this->_email = $d[2];
38         if ($this->esAsesor()) $d = file_ase_get($id);
39         else                   $d = file_int_get($id);
40         $this->_nombre = $d[1];
41         $this->_apellido = $d[2];
42         file_log_add($id, 'Ingreso al sistema');
43     }
44
45     function getId()
46     {
47         return $this->_id;
48     }
49
50     function getNombre()
51     {
52         return $this->_nombre;
53     }
54
55     function getApellido()
56     {
57         return $this->_apellido;
58     }
59
60     function getEmail()
61     {
62         return $this->_email;
63     }
64
65     function getCreditos()
66     {
67         // El asesor puede preguntar siempre
68         if ($this->esAsesor()) return 1;
69         $d = file_creditos_get($this->_id);
70         return $d[1];
71     }
72
73     function getFotoFilename()
74     {
75         return 'fotos/'.$this->_id;
76     }
77
78     function esAdmin()
79     {
80         return file_admins_es_admin($this->_id);
81     }
82
83     function esAsesor()
84     {
85         return $this->_id{0} == 'A';
86     }
87
88    /**
89     *    XXX
90     *    
91     *    @access public 
92     *    @returns string
93     */
94     function toHTML()
95     {
96         return sprintf('<img src="%s" alt="Foto de %s" align="middle" /> %s',
97             $this->getFotoFilename(), $this->getNombre(), $this->getNombre());
98     }
99
100     /// Salida del sistema.
101     function logout()
102     {
103         file_log_add($this->_id, 'Salida del sistema');
104     }
105
106     /**
107      * Valida que la password del usuario sea correcta.
108      * @return bool true si es correcta.
109      * @static
110      */
111     function validar($id, $pass)
112     {
113         file_log_add($id, 'Intento de ingreso al sistema');
114         $user = file_users_get($id);
115         if (!$user) return false;
116         return $user[1] == $pass;
117     }
118
119     /**
120      * Chequea si existen 2 admins.
121      * @return string true si existen 2 admins, false de otra forma.
122      * @static
123      */
124     function checkAdmins()
125     {
126         $admins = @file('data/admins.txt');
127         if (count($admins) < 2) return false;
128         return true;
129     }
130
131     /**
132      * Asocia a un integrante del grupo.
133      * @return mixed Si hubo error, retorna un string con el error, si no retorna ''.
134      * @static
135      */
136     function asociar($id, $pass, $email, $foto, $admin = false)
137     {
138         $ase = false;
139         if (!file_int_get($id) and !($ase = file_ase_get($id)))
140             return 'El número de registro no existe! No se puede asociar al grupo!';
141         if (@file_users_get($id))
142             return 'El usuario ya está registrado!';
143         if (!file_users_add($id, $pass, $email))
144             return 'No se pudo agregar el usuario!';
145         if ($admin)
146         {
147             if (Usuario::checkAdmins())
148                 return 'Ya hay 2 administradores en el sistema!';
149             if (!file_admins_add($id))
150                 return 'No se pudo agregar el usuario a la lista de administradores!';
151         }
152         if (!$ase) // Si no es asesor, creamos archivo de créditos
153         {
154             if (!file_creditos_crear($id))
155                 return 'No se pudo crear el archivo de créditos!';
156         }
157         if (!copy($foto, "fotos/$id")) return 'No se pudo copiar la foto!';
158         file_log_add($id, 'Se asocia al usuario');
159         return '';
160     }
161
162 }
163
164 ?>