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