]> git.llucax.com Git - z.facultad/75.43/tp1.git/blobdiff - src/lib/Usuario.php
Nueva pantalla de cambio de administrador.
[z.facultad/75.43/tp1.git] / src / lib / Usuario.php
index 0c5b3644c7e93160582952083111e71abd1e906c..bdef593a2d7af22f2f3aea45259c36063c98a1be 100644 (file)
@@ -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,17 +102,45 @@ class Usuario
     {
         // El asesor puede preguntar siempre
         if ($this->esAsesor()) return false;
+        file_log_add($this->_id, "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();
+        return '';
+    }
+
     /// Muestra el usuario como HTML (foto + apellido)
-    function toHTML()
+    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() == $user) ? ' 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()
     {