+ $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 '';
+ }
+
+ /// Muestra el usuario como HTML (foto + apellido)
+ function toHtml()
+ {
+ return sprintf('<img src="%s" alt="Foto de %s %s" align="middle" /> %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() == $selected) ? ' selected="selected"' : '';
+ return sprintf("<option value=\"%s\"%s>%s%s %s%s</option>\n",
+ $this->getId(), $selected, $admin, $this->getNombre(),
+ $this->getApellido(), $cred);
+ }
+
+ /// 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.");
+ }
+ }
+
+ /// Salida del sistema.
+ function logout()
+ {
+ $this->log('Salida del sistema');
+ }
+
+ /// Graba un mensaje de log.
+ function log($msg)
+ {
+ file_log_add($this->_id, $msg);