]> git.llucax.com Git - z.facultad/75.43/tp1.git/blobdiff - src/lib/Usuario.php
Se agrega al log cuando se ponen créditos a un usuario.
[z.facultad/75.43/tp1.git] / src / lib / Usuario.php
index 415d22ee48a48c05b2a5a6720acc03179efc774e..17fc23678c14ab888989afb0db6a4f4054b2b62d 100644 (file)
@@ -13,6 +13,7 @@ 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.users.php';
 require_once 'lib/file.int.php';
 require_once 'lib/file.ase.php';
+require_once 'lib/file.log.php';
 
 /**
  * XXX detailed description
 
 /**
  * XXX detailed description
@@ -83,16 +84,34 @@ class Usuario
         return $this->_id{0} == 'A';
     }
 
         return $this->_id{0} == 'A';
     }
 
-   /**
-    *    XXX
-    *    
-    *    @access public 
-    *    @returns string
-    */
+    /// 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;
+        file_log_add($this->_id, "El administrador le agrega $n créditos");
+        return file_creditos_add($this->_id, $n);
+    }
+
+    /// Muestra el usuario como HTML (foto + apellido)
     function toHTML()
     {
     function toHTML()
     {
-        return sprintf('<img src="%s" alt="Foto de %s" align="middle" /> %s',
-            $this->getFotoFilename(), $this->getNombre(), $this->getNombre());
+        return sprintf('<img src="%s" alt="Foto de %s %s" align="middle" /> %s',
+            $this->getFotoFilename(), $this->getNombre(), $this->getApellido(),
+            $this->getApellido());
+    }
+
+    /// Entrada al sistema.
+    function login()
+    {
+        file_creditos_login($this->_id); // Actualizamos créditos
+        file_log_add($this->_id, 'Ingreso al sistema');
+    }
+
+    /// Salida del sistema.
+    function logout()
+    {
+        file_log_add($this->_id, 'Salida del sistema');
     }
 
     /**
     }
 
     /**
@@ -102,11 +121,23 @@ class Usuario
      */
     function validar($id, $pass)
     {
      */
     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;
     }
 
         $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;
+    }
+
     /**
      * Chequea si existen 2 admins.
      * @return string true si existen 2 admins, false de otra forma.
     /**
      * Chequea si existen 2 admins.
      * @return string true si existen 2 admins, false de otra forma.
@@ -146,9 +177,25 @@ class Usuario
                 return 'No se pudo crear el archivo de créditos!';
         }
         if (!copy($foto, "fotos/$id")) return 'No se pudo copiar la foto!';
                 return 'No se pudo crear el archivo de créditos!';
         }
         if (!copy($foto, "fotos/$id")) return 'No se pudo copiar la foto!';
+        file_log_add($id, 'Se asocia al usuario');
         return '';
     }
 
         return '';
     }
 
+    /**
+     * Obtiene una lista de todos los usuarios asociados al sistema.
+     * @return array con los objetos de usuarios.
+     * @static
+     */
+    function getAll()
+    {
+        $r = array();
+        foreach (file_users_get_all() as $u)
+        {
+            $r[] = new Usuario($u[0]);
+        }
+        return $r;
+    }
+
 }
 
 ?>
\ No newline at end of file
 }
 
 ?>
\ No newline at end of file