]> git.llucax.com Git - z.facultad/75.43/tp1.git/blobdiff - src/lib/Usuario.php
Se agrega nueva función warn() para mostrar advertencias.
[z.facultad/75.43/tp1.git] / src / lib / Usuario.php
index f0e9ff177ce6cdb441e09936b9f96fc3934c8d80..bf18d9e698deed5b3676a1046f681a40e0de0bc7 100644 (file)
@@ -8,6 +8,13 @@
 //
 // $Id$
 
+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
  *
 class Usuario
 {
     // Attributes
-   /**
-    *    XXX
-    *    @access public
-    */
-    var $id;
-
-   /**
-    *    XXX
-    *    @access public
-    */
-    var $apellido;
-
-   /**
-    *    XXX
-    *    @access public
-    */
-    var $nombre;
-
-   /**
-    *    XXX
-    *    @access public
-    */
-    var $admin;
-
-   /**
-    *    XXX
-    *    @access public
-    */
-    var $ultimoLogin;
-
-    // Operations
-   /**
-    *    XXX
-    *    
-    *    @access public 
-    *    @returns string
-    */
+    var $_id;
+    var $_nombre;
+    var $_apellido;
+    var $_pass;
+    var $_email;
+
+    function Usuario($id)
+    {
+        $this->_id = $id;
+        $d = file_users_get($id);
+        $this->_pass = $d[1];
+        $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];
+    }
+
+    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;
+        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()
     {
+        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');
+    }
+
+    /**
+     * Valida que la password del usuario sea correcta.
+     * @return bool true si es correcta.
+     * @static
+     */
+    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;
     }
 
-    function cargar($id)
+    /**
+     * 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;
     }
 
     /**
@@ -80,28 +162,45 @@ class Usuario
      * @return mixed Si hubo error, retorna un string con el error, si no retorna ''.
      * @static
      */
-    function asociar($id, $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))
+        $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))
+            return 'No se pudo agregar el usuario!';
+        if ($admin)
         {
-            $int = fgetcsv($f, 4096);
-            if ($int[0] == $id) break;
+            if (Usuario::checkAdmins())
+                return 'Ya hay 2 administradores en el sistema!';
+            if (!file_admins_add($id))
+                return 'No se pudo agregar el usuario a la lista de administradores!';
         }
-        if ($int[0] != $id)
+        if (!$ase) // Si no es asesor, creamos archivo de créditos
         {
-            return 'El número de registro no existe, ese usuario no se puede asociar al grupo!';
+            if (!file_creditos_crear($id))
+                return 'No se pudo crear el archivo de créditos!';
         }
-        if ($admin and Usuario::checkAdmins())
+        if (!copy($foto, "fotos/$id")) return 'No se pudo copiar la foto!';
+        file_log_add($id, 'Se asocia al usuario');
+        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)
         {
-            return 'Ya hay 2 administradores en el sistema.';
+            $r[] = new Usuario($u[0]);
         }
-        return 'FALTA IMPLEMENTAR EL ALTA!!!';
-        return '';
+        return $r;
     }
 
 }