2 // vim: set binary noeol et sw=4 sts=4 :
5 // Lucarella, Schein, Arena
7 // Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
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';
19 * XXX detailed description
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');
53 return $this->_nombre;
56 function getApellido()
58 return $this->_apellido;
66 function getCreditos()
68 // El asesor puede preguntar siempre
69 if ($this->esAsesor()) return 1;
70 $d = file_creditos_get($this->_id);
74 function getFotoFilename()
76 return 'fotos/'.$this->_id;
81 return file_admins_es_admin($this->_id);
86 return $this->_id{0} == 'A';
97 return sprintf('<img src="%s" alt="Foto de %s" align="middle" /> %s',
98 $this->getFotoFilename(), $this->getNombre(), $this->getNombre());
101 /// Salida del sistema.
104 file_log_add($this->_id, 'Salida del sistema');
108 * Valida que la password del usuario sea correcta.
109 * @return bool true si es correcta.
112 function validar($id, $pass)
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;
121 * Chequea si existen 2 admins.
122 * @return string true si existen 2 admins, false de otra forma.
125 function checkAdmins()
127 $admins = @file('data/admins.txt');
128 if (count($admins) < 2) return false;
133 * Asocia a un integrante del grupo.
134 * @return mixed Si hubo error, retorna un string con el error, si no retorna ''.
137 function asociar($id, $pass, $email, $foto, $admin = 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!';
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!';
153 if (!$ase) // Si no es asesor, creamos archivo de créditos
155 if (!file_creditos_crear($id))
156 return 'No se pudo crear el archivo de créditos!';
158 if (!copy($foto, "fotos/$id")) return 'No se pudo copiar la foto!';
159 file_log_add($id, 'Se asocia al usuario');