+ 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 '';
+ }