]> git.llucax.com Git - z.facultad/75.43/tp1.git/blob - src/lib/Usuario.php
Se agrega al log cuando se ponen créditos a un usuario.
[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         file_log_add($this->_id, "El administrador le agrega $n créditos");
93         return file_creditos_add($this->_id, $n);
94     }
95
96     /// Muestra el usuario como HTML (foto + apellido)
97     function toHTML()
98     {
99         return sprintf('<img src="%s" alt="Foto de %s %s" align="middle" /> %s',
100             $this->getFotoFilename(), $this->getNombre(), $this->getApellido(),
101             $this->getApellido());
102     }
103
104     /// Entrada al sistema.
105     function login()
106     {
107         file_creditos_login($this->_id); // Actualizamos créditos
108         file_log_add($this->_id, 'Ingreso al sistema');
109     }
110
111     /// Salida del sistema.
112     function logout()
113     {
114         file_log_add($this->_id, 'Salida del sistema');
115     }
116
117     /**
118      * Valida que la password del usuario sea correcta.
119      * @return bool true si es correcta.
120      * @static
121      */
122     function validar($id, $pass)
123     {
124         file_log_add($id, 'Intento de ingreso al sistema');
125         $user = file_users_get($id);
126         if (!$user) return false;
127         return $user[1] == $pass;
128     }
129
130     /**
131      * Indica si un usuario está asociado.
132      * @return bool true si es correcta.
133      * @static
134      */
135     function asociado($id)
136     {
137         if (file_users_get($id)) return true;
138         return false;
139     }
140
141     /**
142      * Chequea si existen 2 admins.
143      * @return string true si existen 2 admins, false de otra forma.
144      * @static
145      */
146     function checkAdmins()
147     {
148         $admins = @file('data/admins.txt');
149         if (count($admins) < 2) return false;
150         return true;
151     }
152
153     /**
154      * Asocia a un integrante del grupo.
155      * @return mixed Si hubo error, retorna un string con el error, si no retorna ''.
156      * @static
157      */
158     function asociar($id, $pass, $email, $foto, $admin = false)
159     {
160         $ase = false;
161         if (!file_int_get($id) and !($ase = file_ase_get($id)))
162             return 'El número de registro no existe! No se puede asociar al grupo!';
163         if (@file_users_get($id))
164             return 'El usuario ya está registrado!';
165         if (!file_users_add($id, $pass, $email))
166             return 'No se pudo agregar el usuario!';
167         if ($admin)
168         {
169             if (Usuario::checkAdmins())
170                 return 'Ya hay 2 administradores en el sistema!';
171             if (!file_admins_add($id))
172                 return 'No se pudo agregar el usuario a la lista de administradores!';
173         }
174         if (!$ase) // Si no es asesor, creamos archivo de créditos
175         {
176             if (!file_creditos_crear($id))
177                 return 'No se pudo crear el archivo de créditos!';
178         }
179         if (!copy($foto, "fotos/$id")) return 'No se pudo copiar la foto!';
180         file_log_add($id, 'Se asocia al usuario');
181         return '';
182     }
183
184     /**
185      * Obtiene una lista de todos los usuarios asociados al sistema.
186      * @return array con los objetos de usuarios.
187      * @static
188      */
189     function getAll()
190     {
191         $r = array();
192         foreach (file_users_get_all() as $u)
193         {
194             $r[] = new Usuario($u[0]);
195         }
196         return $r;
197     }
198
199 }
200
201 ?>