]> git.llucax.com Git - z.facultad/75.43/tp1.git/blob - src/lib/Usuario.php
Se corrige documentación.
[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 getEmail()
59     {
60         return $this->_email;
61     }
62
63     function getCreditos()
64     {
65         // El asesor puede preguntar siempre
66         if ($this->esAsesor()) return 1;
67         $d = file_creditos_get($this->_id);
68         return $d[1];
69     }
70
71     function getFotoFilename()
72     {
73         return 'fotos/'.$this->_id;
74     }
75
76     function esAdmin()
77     {
78         return file_admins_es_admin($this->_id);
79     }
80
81     function esAsesor()
82     {
83         return $this->_id{0} == 'A';
84     }
85
86    /**
87     *    XXX
88     *    
89     *    @access public 
90     *    @returns string
91     */
92     function toHTML()
93     {
94         return sprintf('<img src="%s" alt="Foto de %s" align="middle" /> %s',
95             $this->getFotoFilename(), $this->getNombre(), $this->getNombre());
96     }
97
98     /**
99      * Valida que la password del usuario sea correcta.
100      * @return bool true si es correcta.
101      * @static
102      */
103     function validar($id, $pass)
104     {
105         $user = file_users_get($id);
106         if (!$user) return false;
107         return $user[1] == $pass;
108     }
109
110     /**
111      * Chequea si existen 2 admins.
112      * @return string true si existen 2 admins, false de otra forma.
113      * @static
114      */
115     function checkAdmins()
116     {
117         $admins = @file('data/admins.txt');
118         if (count($admins) < 2) return false;
119         return true;
120     }
121
122     /**
123      * Asocia a un integrante del grupo.
124      * @return mixed Si hubo error, retorna un string con el error, si no retorna ''.
125      * @static
126      */
127     function asociar($id, $pass, $email, $foto, $admin = false)
128     {
129         $ase = false;
130         if (!file_int_get($id) and !($ase = file_ase_get($id)))
131             return 'El número de registro no existe! No se puede asociar al grupo!';
132         if (@file_users_get($id))
133             return 'El usuario ya está registrado!';
134         if (!file_users_add($id, $pass, $email))
135             return 'No se pudo agregar el usuario!';
136         if ($admin)
137         {
138             if (Usuario::checkAdmins())
139                 return 'Ya hay 2 administradores en el sistema!';
140             if (!file_admins_add($id))
141                 return 'No se pudo agregar el usuario a la lista de administradores!';
142         }
143         if (!$ase) // Si no es asesor, creamos archivo de créditos
144         {
145             if (!file_creditos_crear($id))
146                 return 'No se pudo crear el archivo de créditos!';
147         }
148         if (!copy($foto, "fotos/$id")) return 'No se pudo copiar la foto!';
149         return '';
150     }
151
152 }
153
154 ?>