]> git.llucax.com Git - z.facultad/75.43/tp1.git/blob - src/lib/Usuario.php
bugfix
[z.facultad/75.43/tp1.git] / src / lib / Usuario.php
1 <?php
2 // vim: set binary noeol et sw=4 sts=4 :
3 // Grupo 10
4 //
5 // Lucarella, Schein, Arena
6 //
7 // Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
8 //
9 // $Id$
10
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
17 /**
18  * XXX detailed description
19  *
20  * @author    XXX
21  * @copyright XXX
22  * @abstract
23  */
24 class Usuario
25 {
26     // Attributes
27     var $_id;
28     var $_nombre;
29     var $_apellido;
30     var $_email;
31
32     function Usuario($id)
33     {
34         $this->_id = $id;
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];
41     }
42
43     function getId()
44     {
45         return $this->_id;
46     }
47
48     function getNombre()
49     {
50         return $this->_nombre;
51     }
52
53     function getApellido()
54     {
55         return $this->_apellido;
56     }
57
58     function getCreditos()
59     {
60         $d = file_creditos_get($this->_id);
61         return $d[1];
62     }
63
64     function esAdmin()
65     {
66         return file_admins_es_admin($this->_id);
67     }
68
69     function esAsesor()
70     {
71         return $this->_id{0} == 'A';
72     }
73
74    /**
75     *    XXX
76     *    
77     *    @access public 
78     *    @returns string
79     */
80     function toHTML()
81     {
82         return 'FALTA IMPLEMENTAR! Hay que poner la Foto. ID = ' . $this->_id;
83     }
84
85     /**
86      * Valida que la password del usuario sea correcta.
87      * @return bool true si es correcta.
88      * @static
89      */
90     function validar($id, $pass)
91     {
92         $user = file_users_get($id);
93         if (!$user) return false;
94         return $user[1] == $pass;
95     }
96
97     /**
98      * Chequea si existen 2 admins.
99      * @return string true si existen 2 admins, false de otra forma.
100      * @static
101      */
102     function checkAdmins()
103     {
104         $admins = @file('data/admins.txt');
105         if (count($admins) < 2) return false;
106         return true;
107     }
108
109     /**
110      * Asocia a un integrante del grupo.
111      * @return mixed Si hubo error, retorna un string con el error, si no retorna ''.
112      * @static
113      */
114     function asociar($id, $pass, $email, $admin = false)
115     {
116         if (!file_int_get($id) and !($ase = file_ase_get($id)))
117             return 'El número de registro no existe! No se puede asociar al grupo!';
118         if (@file_users_get($id))
119             return 'El usuario ya está registrado!';
120         if (!file_users_add($id, $pass, $email))
121             return 'No se pudo agregar el usuario!';
122         if ($admin)
123         {
124             if (Usuario::checkAdmins())
125                 return 'Ya hay 2 administradores en el sistema!';
126             if (!file_admins_add($id))
127                 return 'No se pudo agregar el usuario a la lista de administradores!';
128         }
129         if (!$ase) // Si no es asesor, creamos archivo de créditos
130         {
131             if (!file_creditos_crear($id))
132                 return 'No se pudo crear el archivo de créditos!';
133         }
134         return '';
135     }
136
137 }
138
139 ?>