]> git.llucax.com Git - z.facultad/75.43/tp1.git/blob - src/lib/Usuario.php
Se agregan nuevas validaciones.
[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     }
43
44     function getId()
45     {
46         return $this->_id;
47     }
48
49     function getNombre()
50     {
51         return $this->_nombre;
52     }
53
54     function getApellido()
55     {
56         return $this->_apellido;
57     }
58
59     function getEmail()
60     {
61         return $this->_email;
62     }
63
64     function getCreditos()
65     {
66         // El asesor puede preguntar siempre
67         if ($this->esAsesor()) return 1;
68         $d = file_creditos_get($this->_id);
69         return $d[1];
70     }
71
72     function getFotoFilename()
73     {
74         return 'fotos/'.$this->_id;
75     }
76
77     function esAdmin()
78     {
79         return file_admins_es_admin($this->_id);
80     }
81
82     function esAsesor()
83     {
84         return $this->_id{0} == 'A';
85     }
86
87     /// Agrega créditos al usuario (false si hay error o no aplica).
88     function addCreditos($n)
89     {
90         // El asesor puede preguntar siempre
91         if ($this->esAsesor()) return false;
92         return file_creditos_add($this->_id, $n);
93     }
94
95     /// Muestra el usuario como HTML (foto + apellido)
96     function toHTML()
97     {
98         return sprintf('<img src="%s" alt="Foto de %s %s" align="middle" /> %s',
99             $this->getFotoFilename(), $this->getNombre(), $this->getApellido(),
100             $this->getApellido());
101     }
102
103     /// Entrada al sistema.
104     function login()
105     {
106         file_creditos_login($this->_id); // Actualizamos créditos
107         file_log_add($this->_id, 'Ingreso al sistema');
108     }
109
110     /// Salida del sistema.
111     function logout()
112     {
113         file_log_add($this->_id, 'Salida del sistema');
114     }
115
116     /**
117      * Valida que la password del usuario sea correcta.
118      * @return bool true si es correcta.
119      * @static
120      */
121     function validar($id, $pass)
122     {
123         file_log_add($id, 'Intento de ingreso al sistema');
124         $user = file_users_get($id);
125         if (!$user) return false;
126         return $user[1] == $pass;
127     }
128
129     /**
130      * Indica si un usuario está asociado.
131      * @return bool true si es correcta.
132      * @static
133      */
134     function asociado($id)
135     {
136         if (file_users_get($id)) return true;
137         return false;
138     }
139
140     /**
141      * Chequea si existen 2 admins.
142      * @return string true si existen 2 admins, false de otra forma.
143      * @static
144      */
145     function checkAdmins()
146     {
147         $admins = @file('data/admins.txt');
148         if (count($admins) < 2) return false;
149         return true;
150     }
151
152     /**
153      * Asocia a un integrante del grupo.
154      * @return mixed Si hubo error, retorna un string con el error, si no retorna ''.
155      * @static
156      */
157     function asociar($id, $pass, $email, $foto, $admin = false)
158     {
159         $ase = false;
160         if (!file_int_get($id) and !($ase = file_ase_get($id)))
161             return 'El número de registro no existe! No se puede asociar al grupo!';
162         if (@file_users_get($id))
163             return 'El usuario ya está registrado!';
164         if (!file_users_add($id, $pass, $email))
165             return 'No se pudo agregar el usuario!';
166         if ($admin)
167         {
168             if (Usuario::checkAdmins())
169                 return 'Ya hay 2 administradores en el sistema!';
170             if (!file_admins_add($id))
171                 return 'No se pudo agregar el usuario a la lista de administradores!';
172         }
173         if (!$ase) // Si no es asesor, creamos archivo de créditos
174         {
175             if (!file_creditos_crear($id))
176                 return 'No se pudo crear el archivo de créditos!';
177         }
178         if (!copy($foto, "fotos/$id")) return 'No se pudo copiar la foto!';
179         file_log_add($id, 'Se asocia al usuario');
180         return '';
181     }
182
183     /**
184      * Obtiene una lista de todos los usuarios asociados al sistema.
185      * @return array con los objetos de usuarios.
186      * @static
187      */
188     function getAll()
189     {
190         $r = array();
191         foreach (file_users_get_all() as $u)
192         {
193             $r[] = new Usuario($u[0]);
194         }
195         return $r;
196     }
197
198 }
199
200 ?>