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