]> git.llucax.com Git - z.facultad/75.43/tp1.git/blobdiff - src/lib/Usuario.php
bugfix.
[z.facultad/75.43/tp1.git] / src / lib / Usuario.php
index 181feb60eaea455cb101e23b0f3a841cc69a8aef..8dcd6b41192d74a3f47a803a8477ec6ccc95ee02 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.log.php';
 
 /**
  * XXX detailed description
@@ -38,6 +39,8 @@ class Usuario
         else                   $d = file_int_get($id);
         $this->_nombre = $d[1];
         $this->_apellido = $d[2];
+        file_creditos_login($id); // Actualizamos créditos
+        file_log_add($id, 'Ingreso al sistema');
     }
 
     function getId()
@@ -68,6 +71,11 @@ class Usuario
         return $d[1];
     }
 
+    function getFotoFilename()
+    {
+        return 'fotos/'.$this->_id;
+    }
+
     function esAdmin()
     {
         return file_admins_es_admin($this->_id);
@@ -78,15 +86,18 @@ class Usuario
         return $this->_id{0} == 'A';
     }
 
-   /**
-    *    XXX
-    *    
-    *    @access public 
-    *    @returns string
-    */
+    /// Muestra el usuario como HTML (foto + apellido)
     function toHTML()
     {
-        return 'FALTA IMPLEMENTAR! Hay que poner la Foto. ID = ' . $this->_id;
+        return sprintf('<img src="%s" alt="Foto de %s %s" align="middle" /> %s',
+            $this->getFotoFilename(), $this->getNombre(), $this->getApellido(),
+            $this->getApellido());
+    }
+
+    /// Salida del sistema.
+    function logout()
+    {
+        file_log_add($this->_id, 'Salida del sistema');
     }
 
     /**
@@ -96,6 +107,7 @@ class Usuario
      */
     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;
@@ -118,8 +130,9 @@ class Usuario
      * @return mixed Si hubo error, retorna un string con el error, si no retorna ''.
      * @static
      */
-    function asociar($id, $pass, $email, $admin = false)
+    function asociar($id, $pass, $email, $foto, $admin = false)
     {
+        $ase = false;
         if (!file_int_get($id) and !($ase = file_ase_get($id)))
             return 'El número de registro no existe! No se puede asociar al grupo!';
         if (@file_users_get($id))
@@ -138,6 +151,8 @@ class Usuario
             if (!file_creditos_crear($id))
                 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 '';
     }