]> git.llucax.com Git - z.facultad/75.43/tp1.git/blob - src/lib/Usuario.php
Se implementan los métodos nuevos de Item.
[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     /// Muestra el usuario como HTML (foto + apellido)
90     function toHTML()
91     {
92         return sprintf('<img src="%s" alt="Foto de %s %s" align="middle" /> %s',
93             $this->getFotoFilename(), $this->getNombre(), $this->getApellido(),
94             $this->getApellido());
95     }
96
97     /// Salida del sistema.
98     function logout()
99     {
100         file_log_add($this->_id, 'Salida del sistema');
101     }
102
103     /**
104      * Valida que la password del usuario sea correcta.
105      * @return bool true si es correcta.
106      * @static
107      */
108     function validar($id, $pass)
109     {
110         file_log_add($id, 'Intento de ingreso al sistema');
111         $user = file_users_get($id);
112         if (!$user) return false;
113         return $user[1] == $pass;
114     }
115
116     /**
117      * Chequea si existen 2 admins.
118      * @return string true si existen 2 admins, false de otra forma.
119      * @static
120      */
121     function checkAdmins()
122     {
123         $admins = @file('data/admins.txt');
124         if (count($admins) < 2) return false;
125         return true;
126     }
127
128     /**
129      * Asocia a un integrante del grupo.
130      * @return mixed Si hubo error, retorna un string con el error, si no retorna ''.
131      * @static
132      */
133     function asociar($id, $pass, $email, $foto, $admin = false)
134     {
135         $ase = false;
136         if (!file_int_get($id) and !($ase = file_ase_get($id)))
137             return 'El número de registro no existe! No se puede asociar al grupo!';
138         if (@file_users_get($id))
139             return 'El usuario ya está registrado!';
140         if (!file_users_add($id, $pass, $email))
141             return 'No se pudo agregar el usuario!';
142         if ($admin)
143         {
144             if (Usuario::checkAdmins())
145                 return 'Ya hay 2 administradores en el sistema!';
146             if (!file_admins_add($id))
147                 return 'No se pudo agregar el usuario a la lista de administradores!';
148         }
149         if (!$ase) // Si no es asesor, creamos archivo de créditos
150         {
151             if (!file_creditos_crear($id))
152                 return 'No se pudo crear el archivo de créditos!';
153         }
154         if (!copy($foto, "fotos/$id")) return 'No se pudo copiar la foto!';
155         file_log_add($id, 'Se asocia al usuario');
156         return '';
157     }
158
159 }
160
161 ?>