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
37 $d = file_users_get($id);
39 $this->_email = $d[2];
40 if ($this->esAsesor()) $d = file_ase_get($id);
41 else $d = file_int_get($id);
42 $this->_nombre = $d[1];
43 $this->_apellido = $d[2];
51 function getPassword()
58 return $this->_nombre;
61 function getApellido()
63 return $this->_apellido;
71 function getCreditos()
73 // El asesor puede preguntar siempre
74 if ($this->esAsesor()) return 1;
75 $d = file_creditos_get($this->_id);
79 function getFotoFilename()
81 return 'fotos/'.$this->_id;
86 return file_admins_es_admin($this->_id);
91 return $this->_id{0} == 'A';
94 /// Agrega créditos al usuario (false si hay error o no aplica).
95 function addCreditos($n)
97 // El asesor puede preguntar siempre
98 if ($this->esAsesor()) return false;
99 file_log_add($this->_id, "El administrador le agrega $n créditos");
100 return file_creditos_add($this->_id, $n);
103 /// Muestra el usuario como HTML (foto + apellido)
106 return sprintf('<img src="%s" alt="Foto de %s %s" align="middle" /> %s',
107 $this->getFotoFilename(), $this->getNombre(), $this->getApellido(),
108 $this->getApellido());
111 /// Muestra el usuario como una opción de un select HTML.
112 function toHtmlOption($selected = null)
114 $cred = $this->esAsesor() ? '' : ' ('.$this->getCreditos().')';
115 $admin = $this->esAdmin() ? '* ' : '';
116 if (!is_null($selected))
117 $selected = ($this->getId() == $user) ? ' selected="selected"' : '';
118 return sprintf("<option value=\"%s\"%s>%s%s %s%s</option>\n",
119 $this->getId(), $selected, $admin, $this->getNombre(),
120 $this->getApellido(), $cred);
123 /// Entrada al sistema.
126 file_creditos_login($this->_id); // Actualizamos créditos
127 file_log_add($this->_id, 'Ingreso al sistema');
130 /// Salida del sistema.
133 file_log_add($this->_id, 'Salida del sistema');
137 * Valida que la password del usuario sea correcta.
138 * @return bool true si es correcta.
141 function validar($id, $pass)
143 file_log_add($id, 'Intento de ingreso al sistema');
144 $user = file_users_get($id);
145 if (!$user) return false;
146 return $user[1] == $pass;
150 * Indica si un usuario está asociado.
151 * @return bool true si es correcta.
154 function asociado($id)
156 if (file_users_get($id)) return true;
161 * Chequea si existen 2 admins.
162 * @return string true si existen 2 admins, false de otra forma.
165 function checkAdmins()
167 $admins = @file('data/admins.txt');
168 if (count($admins) < 2) return false;
173 * Asocia a un integrante del grupo.
174 * @return mixed Si hubo error, retorna un string con el error, si no retorna ''.
177 function asociar($id, $pass, $email, $foto, $admin = false)
180 if (!file_int_get($id) and !($ase = file_ase_get($id)))
181 return 'El número de registro no existe! No se puede asociar al grupo!';
182 if (@file_users_get($id))
183 return 'El usuario ya está registrado!';
184 if (!file_users_add($id, $pass, $email))
185 return 'No se pudo agregar el usuario!';
188 if (Usuario::checkAdmins())
189 return 'Ya hay 2 administradores en el sistema!';
190 if (!file_admins_add($id))
191 return 'No se pudo agregar el usuario a la lista de administradores!';
193 if (!$ase) // Si no es asesor, creamos archivo de créditos
195 if (!file_creditos_crear($id))
196 return 'No se pudo crear el archivo de créditos!';
198 if (!copy($foto, "fotos/$id")) return 'No se pudo copiar la foto!';
199 file_log_add($id, 'Se asocia al usuario');
204 * Obtiene una lista de todos los usuarios asociados al sistema.
205 * @return array con los objetos de usuarios.
211 foreach (file_users_get_all() as $u)
213 $r[] = new Usuario($u[0]);