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_log_add($id, 'Ingreso al sistema');
52 return $this->_nombre;
55 function getApellido()
57 return $this->_apellido;
65 function getCreditos()
67 // El asesor puede preguntar siempre
68 if ($this->esAsesor()) return 1;
69 $d = file_creditos_get($this->_id);
73 function getFotoFilename()
75 return 'fotos/'.$this->_id;
80 return file_admins_es_admin($this->_id);
85 return $this->_id{0} == 'A';
96 return sprintf('<img src="%s" alt="Foto de %s" align="middle" /> %s',
97 $this->getFotoFilename(), $this->getNombre(), $this->getNombre());
100 /// Salida del sistema.
103 file_log_add($this->_id, 'Salida del sistema');
107 * Valida que la password del usuario sea correcta.
108 * @return bool true si es correcta.
111 function validar($id, $pass)
113 file_log_add($id, 'Intento de ingreso al sistema');
114 $user = file_users_get($id);
115 if (!$user) return false;
116 return $user[1] == $pass;
120 * Chequea si existen 2 admins.
121 * @return string true si existen 2 admins, false de otra forma.
124 function checkAdmins()
126 $admins = @file('data/admins.txt');
127 if (count($admins) < 2) return false;
132 * Asocia a un integrante del grupo.
133 * @return mixed Si hubo error, retorna un string con el error, si no retorna ''.
136 function asociar($id, $pass, $email, $foto, $admin = false)
139 if (!file_int_get($id) and !($ase = file_ase_get($id)))
140 return 'El número de registro no existe! No se puede asociar al grupo!';
141 if (@file_users_get($id))
142 return 'El usuario ya está registrado!';
143 if (!file_users_add($id, $pass, $email))
144 return 'No se pudo agregar el usuario!';
147 if (Usuario::checkAdmins())
148 return 'Ya hay 2 administradores en el sistema!';
149 if (!file_admins_add($id))
150 return 'No se pudo agregar el usuario a la lista de administradores!';
152 if (!$ase) // Si no es asesor, creamos archivo de créditos
154 if (!file_creditos_crear($id))
155 return 'No se pudo crear el archivo de créditos!';
157 if (!copy($foto, "fotos/$id")) return 'No se pudo copiar la foto!';
158 file_log_add($id, 'Se asocia al usuario');