]> git.llucax.com Git - z.facultad/75.43/tp1.git/blobdiff - src/lib/Usuario.php
Integre la parte de login con mi listado de preguntas. Hice un pequeño cambio en...
[z.facultad/75.43/tp1.git] / src / lib / Usuario.php
index 43df6f9d2d6df9ed0c182a7fe16aa729287bbe46..181feb60eaea455cb101e23b0f3a841cc69a8aef 100644 (file)
@@ -11,6 +11,8 @@
 require_once 'lib/file.creditos.php';
 require_once 'lib/file.admins.php';
 require_once 'lib/file.users.php';
 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';
 
 /**
  * XXX detailed description
 
 /**
  * XXX detailed description
@@ -22,18 +24,60 @@ require_once 'lib/file.users.php';
 class Usuario
 {
     // Attributes
 class Usuario
 {
     // Attributes
-   /**
-    *    XXX
-    *    @access public
-    */
     var $_id;
     var $_id;
+    var $_nombre;
+    var $_apellido;
+    var $_email;
 
     function Usuario($id)
     {
         $this->_id = $id;
 
     function Usuario($id)
     {
         $this->_id = $id;
+        $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];
+    }
+
+    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 esAdmin()
+    {
+        return file_admins_es_admin($this->_id);
+    }
+
+    function esAsesor()
+    {
+        return $this->_id{0} == 'A';
     }
 
     }
 
-    // Operations
    /**
     *    XXX
     *    
    /**
     *    XXX
     *    
@@ -76,16 +120,8 @@ class Usuario
      */
     function asociar($id, $pass, $email, $admin = false)
     {
      */
     function asociar($id, $pass, $email, $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!';
+        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))
         if (@file_users_get($id))
             return 'El usuario ya está registrado!';
         if (!file_users_add($id, $pass, $email))
@@ -97,8 +133,11 @@ class Usuario
             if (!file_admins_add($id))
                 return 'No se pudo agregar el usuario a la lista de administradores!';
         }
             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!';
+        }
         return '';
     }
 
         return '';
     }