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';
18 * XXX detailed description
35 $d = file_users_get($id);
36 $this->_email = $d[2];
37 if ($this->esAsesor()) $d = file_ase_get($id);
38 else $d = file_int_get($id);
39 $this->_nombre = $d[1];
40 $this->_apellido = $d[2];
50 return $this->_nombre;
53 function getApellido()
55 return $this->_apellido;
63 function getCreditos()
65 // El asesor puede preguntar siempre
66 if ($this->esAsesor()) return 1;
67 $d = file_creditos_get($this->_id);
73 return file_admins_es_admin($this->_id);
78 return $this->_id{0} == 'A';
89 return 'FALTA IMPLEMENTAR! Hay que poner la Foto. ID = ' . $this->_id;
93 * Valida que la password del usuario sea correcta.
94 * @return bool true si es correcta.
97 function validar($id, $pass)
99 $user = file_users_get($id);
100 if (!$user) return false;
101 return $user[1] == $pass;
105 * Chequea si existen 2 admins.
106 * @return string true si existen 2 admins, false de otra forma.
109 function checkAdmins()
111 $admins = @file('data/admins.txt');
112 if (count($admins) < 2) return false;
117 * Asocia a un integrante del grupo.
118 * @return mixed Si hubo error, retorna un string con el error, si no retorna ''.
121 function asociar($id, $pass, $email, $admin = false)
123 if (!file_int_get($id) and !($ase = file_ase_get($id)))
124 return 'El número de registro no existe! No se puede asociar al grupo!';
125 if (@file_users_get($id))
126 return 'El usuario ya está registrado!';
127 if (!file_users_add($id, $pass, $email))
128 return 'No se pudo agregar el usuario!';
131 if (Usuario::checkAdmins())
132 return 'Ya hay 2 administradores en el sistema!';
133 if (!file_admins_add($id))
134 return 'No se pudo agregar el usuario a la lista de administradores!';
136 if (!$ase) // Si no es asesor, creamos archivo de créditos
138 if (!file_creditos_crear($id))
139 return 'No se pudo crear el archivo de créditos!';