]> git.llucax.com Git - z.facultad/75.43/tp1.git/blob - src/lib/Usuario.php
Agrego metodo getEmail() que faltaba.
[z.facultad/75.43/tp1.git] / src / lib / Usuario.php
1 <?php
2 // vim: set binary noeol et sw=4 sts=4 :
3 // Grupo 10
4 //
5 // Lucarella, Schein, Arena
6 //
7 // Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
8 //
9 // $Id$
10
11 require_once 'lib/file.creditos.php';
12 require_once 'lib/file.admins.php';
13 require_once 'lib/file.users.php';
14 require_once 'lib/file.int.php';
15 require_once 'lib/file.ase.php';
16
17 /**
18  * XXX detailed description
19  *
20  * @author    XXX
21  * @copyright XXX
22  * @abstract
23  */
24 class Usuario
25 {
26     // Attributes
27     var $_id;
28     var $_nombre;
29     var $_apellido;
30     var $_email;
31
32     function Usuario($id)
33     {
34         $this->_id = $id;
35         $d = file_users_get($id);
36         $this->_email = $d[2];
37         if ($this->esAsesor()) $d = file_ase_get($id);
38         else                   $d = file_int_get($id);
39         $this->_nombre = $d[1];
40         $this->_apellido = $d[2];
41     }
42
43     function getId()
44     {
45         return $this->_id;
46     }
47
48     function getNombre()
49     {
50         return $this->_nombre;
51     }
52
53     function getApellido()
54     {
55         return $this->_apellido;
56     }
57
58     function getEmail()
59     {
60         return $this->_email;
61     }
62
63     function getCreditos()
64     {
65         // El asesor puede preguntar siempre
66         if ($this->esAsesor()) return 1;
67         $d = file_creditos_get($this->_id);
68         return $d[1];
69     }
70
71     function esAdmin()
72     {
73         return file_admins_es_admin($this->_id);
74     }
75
76     function esAsesor()
77     {
78         return $this->_id{0} == 'A';
79     }
80
81    /**
82     *    XXX
83     *    
84     *    @access public 
85     *    @returns string
86     */
87     function toHTML()
88     {
89         return 'FALTA IMPLEMENTAR! Hay que poner la Foto. ID = ' . $this->_id;
90     }
91
92     /**
93      * Valida que la password del usuario sea correcta.
94      * @return bool true si es correcta.
95      * @static
96      */
97     function validar($id, $pass)
98     {
99         $user = file_users_get($id);
100         if (!$user) return false;
101         return $user[1] == $pass;
102     }
103
104     /**
105      * Chequea si existen 2 admins.
106      * @return string true si existen 2 admins, false de otra forma.
107      * @static
108      */
109     function checkAdmins()
110     {
111         $admins = @file('data/admins.txt');
112         if (count($admins) < 2) return false;
113         return true;
114     }
115
116     /**
117      * Asocia a un integrante del grupo.
118      * @return mixed Si hubo error, retorna un string con el error, si no retorna ''.
119      * @static
120      */
121     function asociar($id, $pass, $email, $admin = false)
122     {
123         if (!file_int_get($id) and !($ase = file_ase_get($id)))
124             return 'El número de registro no existe! No se puede asociar al grupo!';
125         if (@file_users_get($id))
126             return 'El usuario ya está registrado!';
127         if (!file_users_add($id, $pass, $email))
128             return 'No se pudo agregar el usuario!';
129         if ($admin)
130         {
131             if (Usuario::checkAdmins())
132                 return 'Ya hay 2 administradores en el sistema!';
133             if (!file_admins_add($id))
134                 return 'No se pudo agregar el usuario a la lista de administradores!';
135         }
136         if (!$ase) // Si no es asesor, creamos archivo de créditos
137         {
138             if (!file_creditos_crear($id))
139                 return 'No se pudo crear el archivo de créditos!';
140         }
141         return '';
142     }
143
144 }
145
146 ?>