X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/acccc4f0814d1d5eb98c2fb184b97ffc6664421f..6bffb1f7fafe8a517e16306de7e806912dcd6828:/src/lib/Usuario.php diff --git a/src/lib/Usuario.php b/src/lib/Usuario.php index 7eaef4f..0c5b364 100644 --- a/src/lib/Usuario.php +++ b/src/lib/Usuario.php @@ -13,6 +13,7 @@ require_once 'lib/file.admins.php'; require_once 'lib/file.users.php'; require_once 'lib/file.int.php'; require_once 'lib/file.ase.php'; +require_once 'lib/file.log.php'; /** * XXX detailed description @@ -55,12 +56,24 @@ class Usuario return $this->_apellido; } + function getEmail() + { + return $this->_email; + } + function getCreditos() { + // El asesor puede preguntar siempre + if ($this->esAsesor()) return 1; $d = file_creditos_get($this->_id); return $d[1]; } + function getFotoFilename() + { + return 'fotos/'.$this->_id; + } + function esAdmin() { return file_admins_es_admin($this->_id); @@ -71,15 +84,33 @@ class Usuario return $this->_id{0} == 'A'; } - /** - * XXX - * - * @access public - * @returns string - */ + /// Agrega créditos al usuario (false si hay error o no aplica). + function addCreditos($n) + { + // El asesor puede preguntar siempre + if ($this->esAsesor()) return false; + return file_creditos_add($this->_id, $n); + } + + /// Muestra el usuario como HTML (foto + apellido) function toHTML() { - return 'FALTA IMPLEMENTAR! Hay que poner la Foto. ID = ' . $this->_id; + return sprintf('Foto de %s %s %s', + $this->getFotoFilename(), $this->getNombre(), $this->getApellido(), + $this->getApellido()); + } + + /// Entrada al sistema. + function login() + { + file_creditos_login($this->_id); // Actualizamos créditos + file_log_add($this->_id, 'Ingreso al sistema'); + } + + /// Salida del sistema. + function logout() + { + file_log_add($this->_id, 'Salida del sistema'); } /** @@ -89,11 +120,23 @@ class Usuario */ function validar($id, $pass) { + file_log_add($id, 'Intento de ingreso al sistema'); $user = file_users_get($id); if (!$user) return false; return $user[1] == $pass; } + /** + * Indica si un usuario está asociado. + * @return bool true si es correcta. + * @static + */ + function asociado($id) + { + if (file_users_get($id)) return true; + return false; + } + /** * Chequea si existen 2 admins. * @return string true si existen 2 admins, false de otra forma. @@ -111,8 +154,9 @@ class Usuario * @return mixed Si hubo error, retorna un string con el error, si no retorna ''. * @static */ - function asociar($id, $pass, $email, $admin = false) + function asociar($id, $pass, $email, $foto, $admin = false) { + $ase = false; if (!file_int_get($id) and !($ase = file_ase_get($id))) return 'El número de registro no existe! No se puede asociar al grupo!'; if (@file_users_get($id)) @@ -131,9 +175,26 @@ class Usuario if (!file_creditos_crear($id)) return 'No se pudo crear el archivo de créditos!'; } + if (!copy($foto, "fotos/$id")) return 'No se pudo copiar la foto!'; + file_log_add($id, 'Se asocia al usuario'); return ''; } + /** + * Obtiene una lista de todos los usuarios asociados al sistema. + * @return array con los objetos de usuarios. + * @static + */ + function getAll() + { + $r = array(); + foreach (file_users_get_all() as $u) + { + $r[] = new Usuario($u[0]); + } + return $r; + } + } ?> \ No newline at end of file