X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/blobdiff_plain/7370ef390ad178677c68b9bd7f5f7685020f452c..2addcbe28c9280d03a27aba88b7b81284ce8d32c:/src/lib/Usuario.php?ds=inline diff --git a/src/lib/Usuario.php b/src/lib/Usuario.php index 0c5b364..3daa98e 100644 --- a/src/lib/Usuario.php +++ b/src/lib/Usuario.php @@ -24,19 +24,27 @@ require_once 'lib/file.log.php'; */ class Usuario { - // Attributes var $_id; var $_nombre; var $_apellido; + var $_pass; var $_email; + /// Constructor function Usuario($id) { $this->_id = $id; - $d = file_users_get($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($id); - else $d = file_int_get($id); + if ($this->esAsesor()) $d = file_ase_get($this->_id); + else $d = file_int_get($this->_id); $this->_nombre = $d[1]; $this->_apellido = $d[2]; } @@ -46,6 +54,11 @@ class Usuario return $this->_id; } + function getPassword() + { + return $this->_pass; + } + function getNombre() { return $this->_nombre; @@ -89,28 +102,68 @@ class Usuario { // 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 ''; + } + /// Muestra el usuario como HTML (foto + apellido) - function toHTML() + function toHtml() { return sprintf('Foto de %s %s %s', $this->getFotoFilename(), $this->getNombre(), $this->getApellido(), $this->getApellido()); } + /// 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() == $user) ? ' selected="selected"' : ''; + return sprintf("\n", + $this->getId(), $selected, $admin, $this->getNombre(), + $this->getApellido(), $cred); + } + /// Entrada al sistema. function login() { - file_creditos_login($this->_id); // Actualizamos créditos - file_log_add($this->_id, 'Ingreso al sistema'); + $this->log('Ingreso al sistema'); + $res = file_creditos_login($this->_id); // Actualizamos créditos + if (is_array($res)) + $this->log("Se restaron créditos ({$res[0]}) por no preguntar."); } /// Salida del sistema. function logout() { - file_log_add($this->_id, 'Salida del sistema'); + $this->log('Salida del sistema'); + } + + /// Graba un mensaje de log. + function log($msg) + { + file_log_add($this->_id, $msg); } /** @@ -180,17 +233,57 @@ class 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) + { + $u = new Usuario($i[0]); + if ($u->esAsesor() + and (!$u->esAdmin() or $u->esAdmin() and $admins)) + $r[] = $u; + } + 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() + function getAll($admins = true) { $r = array(); - foreach (file_users_get_all() as $u) + foreach (file_users_get_all() as $i) { - $r[] = new Usuario($u[0]); + $u = new Usuario($i[0]); + if (!$u->esAdmin() or $u->esAdmin() and $admins) $r[] = $u; } return $r; }