]> 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 6bf1142e1c5685aa6d84a3e38a832a01a065f002..3392ad3f8bde4288ae06d39e15a7675775c7607d 100644 (file)
@@ -11,6 +11,9 @@
 require_once 'lib/file.creditos.php';
 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
@@ -23,18 +26,66 @@ class Usuario
 {
     // Attributes
     var $_id;
-    var $nombre;
-    var $apellido;
-    var $email;
+    var $_nombre;
+    var $_apellido;
+    var $_email;
 
     function Usuario($id)
     {
         $this->_id = $id;
-        $u = file_users_get($id);
-        $this->email = $u[2];
+        $d = file_users_get($id);
+        $this->_email = $d[2];
+        if ($this->esAsesor()) $d = file_ase_get($id);
+        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()
+    {
+        return $this->_id;
+    }
+
+    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';
     }
 
-    // Operations
    /**
     *    XXX
     *    
@@ -43,7 +94,14 @@ class Usuario
     */
     function toHTML()
     {
-        return 'FALTA IMPLEMENTAR! Hay que poner la Foto. ID = ' . $this->_id;
+        return sprintf('<img src="%s" alt="Foto de %s" align="middle" /> %s',
+            $this->getFotoFilename(), $this->getNombre(), $this->getNombre());
+    }
+
+    /// Salida del sistema.
+    function logout()
+    {
+        file_log_add($this->_id, 'Salida del sistema');
     }
 
     /**
@@ -53,6 +111,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;
@@ -75,18 +134,11 @@ 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)
     {
-        // TODO lo mismo para asesores
-        if (($f = fopen('data/int_2005.txt', 'r')) === false)
-            return 'Error al abrir archivo de integrantes!';
-        while (!feof($f))
-        {
-            $int = fgetcsv($f, 4096);
-            if ($int[0] == $id) break;
-        }
-        if ($int[0] != $id)
-            return 'El número de registro no existe, ese usuario no se puede asociar al grupo!';
+        $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))
             return 'El usuario ya está registrado!';
         if (!file_users_add($id, $pass, $email))
@@ -98,8 +150,13 @@ class Usuario
             if (!file_admins_add($id))
                 return 'No se pudo agregar el usuario a la lista de administradores!';
         }
-        if (!file_creditos_crear($id))
-            return 'No se pudo crear el archivo de créditos!';
+        if (!$ase) // Si no es asesor, creamos archivo de créditos
+        {
+            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 '';
     }