X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/0a253cede072778391c1359f146ef56c60f40364..HEAD:/src/lib/Usuario.php?ds=inline diff --git a/src/lib/Usuario.php b/src/lib/Usuario.php index f0e9ff1..2d05191 100644 --- a/src/lib/Usuario.php +++ b/src/lib/Usuario.php @@ -8,6 +8,13 @@ // // $Id$ +require_once 'lib/file.creditos.php'; +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 * @@ -17,50 +24,173 @@ */ class Usuario { - // Attributes - /** - * XXX - * @access public - */ - var $id; + var $_id; + var $_nombre; + var $_apellido; + var $_pass; + var $_email; + + /// Constructor + function Usuario($id) + { + $this->_id = $id; + $this->reload(); + } + + /// Carga la información del usuario desde los archivos. + function reload() + { + $d = file_users_get($this->_id); + $this->_pass = $d[1]; + $this->_email = $d[2]; + if ($this->esAsesor()) $d = file_ase_get($this->_id); + else $d = file_int_get($this->_id); + $this->_nombre = $d[1]; + $this->_apellido = $d[2]; + } + + function getId() + { + return $this->_id; + } + + function getPassword() + { + return $this->_pass; + } + + function getNombre() + { + return $this->_nombre; + } + + function getApellido() + { + 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); + } + + function esAsesor() + { + return $this->_id{0} == 'A'; + } + + /// 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; + $this->log("El administrador le agrega $n créditos"); + return file_creditos_add($this->_id, $n); + } + + /// Cede los permisos de administración a otro usuario. + function cederAdmin($user) + { + // El asesor puede preguntar siempre + if (!$this->esAdmin()) + return 'Sólo un administrador puede ceder la administración'; + if ($user->esAdmin()) + return 'El usuario '.$user->getNombre().' '.$user->getApellido() + .'ya es administrador.'; + if (!file_admins_replace($this->getId(), $user->getId())) + return 'Error al intercambiar los administradores.'; + $this->reload(); + $this->log('Cede permisos de administración a ' + .$user->getNombre().' '.$user->getApellido().'.'); + $user->log('Recibe permisos de administración de ' + .$this->getNombre().' '.$this->getApellido().'.'); + return ''; + } - /** - * XXX - * @access public - */ - var $apellido; + /// Muestra el usuario como HTML (foto + apellido) + function toHtml() + { + return sprintf('Foto de %s %s %s', + $this->getFotoFilename(), $this->getNombre(), $this->getApellido(), + $this->getApellido()); + } - /** - * XXX - * @access public - */ - var $nombre; + /// Muestra el usuario como una opción de un select HTML. + function toHtmlOption($selected = null) + { + $cred = $this->esAsesor() ? '' : (' ('.$this->getCreditos().')'); + $admin = $this->esAdmin() ? '* ' : ''; + if (!is_null($selected)) + $selected = ($this->getId() == $selected) ? ' selected="selected"' : ''; + return sprintf("\n", + $this->getId(), $selected, $admin, $this->getNombre(), + $this->getApellido(), $cred); + } - /** - * XXX - * @access public - */ - var $admin; + /// Entrada al sistema. + function login() + { + $this->log('Ingreso al sistema'); + if (!$this->esAsesor()) + { + $res = file_creditos_login($this->_id); // Actualizamos créditos + if (is_array($res)) + $this->log("Se restaron créditos ($res[0]) por no preguntar."); + } + } - /** - * XXX - * @access public - */ - var $ultimoLogin; + /// Salida del sistema. + function logout() + { + $this->log('Salida del sistema'); + } - // Operations - /** - * XXX - * - * @access public - * @returns string - */ - function toHTML() + /// Graba un mensaje de log. + function log($msg) { + file_log_add($this->_id, $msg); } - function cargar($id) + /** + * Valida que la password del usuario sea correcta. + * @return bool true si es correcta. + * @static + */ + 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; } /** @@ -80,28 +210,85 @@ class Usuario * @return mixed Si hubo error, retorna un string con el error, si no retorna ''. * @static */ - function asociar($id, $email, $admin = false) + function asociar($id, $pass, $email, $foto, $admin = false) { - // TODO lo mismo para asesores - if (($f = fopen('data/int_2005.txt', 'r')) === 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)) + return 'El usuario ya está registrado!'; + if (!file_users_add($id, $pass, $email)) + return 'No se pudo agregar el usuario!'; + if ($admin) { - return 'Error al abrir archivo de integrantes!!!'; + if (Usuario::checkAdmins()) + return 'Ya hay 2 administradores en el sistema!'; + if (!file_admins_add($id)) + return 'No se pudo agregar el usuario a la lista de administradores!'; } - while (!feof($f)) + if (!$ase) // Si no es asesor, creamos archivo de créditos { - $int = fgetcsv($f, 4096); - if ($int[0] == $id) break; + if (!file_creditos_crear($id)) + return 'No se pudo crear el archivo de créditos!'; } - if ($int[0] != $id) + 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 los usuarios que son socios. + * Si $admins es false, no incluye administradores. + * @return array con los objetos de usuarios. + * @static + */ + function getSocios($admins = true) + { + $r = array(); + foreach (file_users_get_all() as $i) + { + $u = new Usuario($i[0]); + if (!$u->esAsesor() + and (!$u->esAdmin() or $u->esAdmin() and $admins)) + $r[] = $u; + } + return $r; + } + + /** + * Obtiene una lista de los usuarios que son asesores. + * Si $admins es false, no incluye administradores. + * @return array con los objetos de usuarios. + * @static + */ + function getAsesores($admins = true) + { + $r = array(); + foreach (file_users_get_all() as $i) { - return 'El número de registro no existe, ese usuario no se puede asociar al grupo!'; + $u = new Usuario($i[0]); + if ($u->esAsesor() + and (!$u->esAdmin() or $u->esAdmin() and $admins)) + $r[] = $u; } - if ($admin and Usuario::checkAdmins()) + return $r; + } + + /** + * Obtiene una lista de todos los usuarios asociados al sistema. + * Si $admins es false, no incluye administradores. + * @return array con los objetos de usuarios. + * @static + */ + function getAll($admins = true) + { + $r = array(); + foreach (file_users_get_all() as $i) { - return 'Ya hay 2 administradores en el sistema.'; + $u = new Usuario($i[0]); + if (!$u->esAdmin() or $u->esAdmin() and $admins) $r[] = $u; } - return 'FALTA IMPLEMENTAR EL ALTA!!!'; - return ''; + return $r; } }