]> git.llucax.com Git - z.facultad/75.43/tp1.git/blob - src/lib/Usuario.php
Bugfix.
[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 require_once 'lib/file.log.php';
17
18 /**
19  * XXX detailed description
20  *
21  * @author    XXX
22  * @copyright XXX
23  * @abstract
24  */
25 class Usuario
26 {
27     // Attributes
28     var $_id;
29     var $_nombre;
30     var $_apellido;
31     var $_email;
32
33     function Usuario($id)
34     {
35         $this->_id = $id;
36         $d = file_users_get($id);
37         $this->_email = $d[2];
38         if ($this->esAsesor()) $d = file_ase_get($id);
39         else                   $d = file_int_get($id);
40         $this->_nombre = $d[1];
41         $this->_apellido = $d[2];
42         file_creditos_login($id); // Actualizamos créditos
43         file_log_add($id, 'Ingreso al sistema');
44     }
45
46     function getId()
47     {
48         return $this->_id;
49     }
50
51     function getNombre()
52     {
53         return $this->_nombre;
54     }
55
56     function getApellido()
57     {
58         return $this->_apellido;
59     }
60
61     function getEmail()
62     {
63         return $this->_email;
64     }
65
66     function getCreditos()
67     {
68         // El asesor puede preguntar siempre
69         if ($this->esAsesor()) return 1;
70         $d = file_creditos_get($this->_id);
71         return $d[1];
72     }
73
74     function getFotoFilename()
75     {
76         return 'fotos/'.$this->_id;
77     }
78
79     function esAdmin()
80     {
81         return file_admins_es_admin($this->_id);
82     }
83
84     function esAsesor()
85     {
86         return $this->_id{0} == 'A';
87     }
88
89    /**
90     *    XXX
91     *    
92     *    @access public 
93     *    @returns string
94     */
95     function toHTML()
96     {
97         return sprintf('<img src="%s" alt="Foto de %s" align="middle" /> %s',
98             $this->getFotoFilename(), $this->getNombre(), $this->getNombre());
99     }
100
101     /// Salida del sistema.
102     function logout()
103     {
104         file_log_add($this->_id, 'Salida del sistema');
105     }
106
107     /**
108      * Valida que la password del usuario sea correcta.
109      * @return bool true si es correcta.
110      * @static
111      */
112     function validar($id, $pass)
113     {
114         file_log_add($id, 'Intento de ingreso al sistema');
115         $user = file_users_get($id);
116         if (!$user) return false;
117         return $user[1] == $pass;
118     }
119
120     /**
121      * Chequea si existen 2 admins.
122      * @return string true si existen 2 admins, false de otra forma.
123      * @static
124      */
125     function checkAdmins()
126     {
127         $admins = @file('data/admins.txt');
128         if (count($admins) < 2) return false;
129         return true;
130     }
131
132     /**
133      * Asocia a un integrante del grupo.
134      * @return mixed Si hubo error, retorna un string con el error, si no retorna ''.
135      * @static
136      */
137     function asociar($id, $pass, $email, $foto, $admin = false)
138     {
139         $ase = false;
140         if (!file_int_get($id) and !($ase = file_ase_get($id)))
141             return 'El número de registro no existe! No se puede asociar al grupo!';
142         if (@file_users_get($id))
143             return 'El usuario ya está registrado!';
144         if (!file_users_add($id, $pass, $email))
145             return 'No se pudo agregar el usuario!';
146         if ($admin)
147         {
148             if (Usuario::checkAdmins())
149                 return 'Ya hay 2 administradores en el sistema!';
150             if (!file_admins_add($id))
151                 return 'No se pudo agregar el usuario a la lista de administradores!';
152         }
153         if (!$ase) // Si no es asesor, creamos archivo de créditos
154         {
155             if (!file_creditos_crear($id))
156                 return 'No se pudo crear el archivo de créditos!';
157         }
158         if (!copy($foto, "fotos/$id")) return 'No se pudo copiar la foto!';
159         file_log_add($id, 'Se asocia al usuario');
160         return '';
161     }
162
163 }
164
165 ?>