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';
89 /// Muestra el usuario como HTML (foto + apellido)
92 return sprintf('<img src="%s" alt="Foto de %s %s" align="middle" /> %s',
93 $this->getFotoFilename(), $this->getNombre(), $this->getApellido(),
94 $this->getApellido());
97 /// Salida del sistema.
100 file_log_add($this->_id, 'Salida del sistema');
104 * Valida que la password del usuario sea correcta.
105 * @return bool true si es correcta.
108 function validar($id, $pass)
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;
117 * Chequea si existen 2 admins.
118 * @return string true si existen 2 admins, false de otra forma.
121 function checkAdmins()
123 $admins = @file('data/admins.txt');
124 if (count($admins) < 2) return false;
129 * Asocia a un integrante del grupo.
130 * @return mixed Si hubo error, retorna un string con el error, si no retorna ''.
133 function asociar($id, $pass, $email, $foto, $admin = 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!';
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!';
149 if (!$ase) // Si no es asesor, creamos archivo de créditos
151 if (!file_creditos_crear($id))
152 return 'No se pudo crear el archivo de créditos!';
154 if (!copy($foto, "fotos/$id")) return 'No se pudo copiar la foto!';
155 file_log_add($id, 'Se asocia al usuario');