]> git.llucax.com Git - mecon/samurai.git/blob - lib/SAMURAI/HTML/Usuario.php
BugFix
[mecon/samurai.git] / lib / SAMURAI / HTML / Usuario.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker textwidth=80:
3 // +----------------------------------------------------------------------+
4 // | PHP Version 4                                                        |
5 // +----------------------------------------------------------------------+
6 // | Copyright (c) 1997-2003 The PHP Group                                |
7 // +----------------------------------------------------------------------+
8 // | This source file is subject to version 2.02 of the PHP license,      |
9 // | that is bundled with this package in the file LICENSE, and is        |
10 // | available at through the world-wide-web at                           |
11 // | http://www.php.net/license/2_02.txt.                                 |
12 // | If you did not receive a copy of the PHP license and are unable to   |
13 // | obtain it through the world-wide-web, please send a note to          |
14 // | license@php.net so we can mail you a copy immediately.               |
15 // +----------------------------------------------------------------------+
16 // | Created: mar ago 26 13:18:26 ART 2003
17 // | Author:  Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 //
22
23 //REQUIRE ONCE {{{
24     require_once 'MECON/HTML/QuickForm.php';
25     require_once 'MECON/HTML/Error.php';
26     require_once 'MECON/HTML/Tabla.php';
27     require_once 'MECON/HTML/Image.php';
28     require_once 'SAMURAI/Perfil.php';
29     require_once 'SAMURAI/Usuario.php';
30     require_once 'SAMURAI/Sistema.php';
31     require_once 'SAMURAI/constantes.php';
32 //}}}
33
34 // Funciones para agregar la seccion SAMURAI_Usuario en los sistemas.
35 // Con esto se pueden embeber el abm de usuarios como una seccion/subseccion mas
36 // de un sistema cualquiera.
37
38 /**
39  * Funcion que se encarga agregar los componentes necesarios al sistema para que
40  * se pueda realizar un abm de usuarios.
41  *
42  * @param MECON_Marco &$MARCO      Referencia al objeto MECON_Marco que se este
43  *                                 utilizando en la pagina
44  * @param int          $id_sistema Identificador del sistema en el cual se esta
45  *                                 trabajando
46  *
47  * @return void
48  */
49 //SAMURAI_Usuario_Html {{{
50 function SAMURAI_Usuario_Html(&$MARCO, $id_sistema) {
51
52     $_SESSION['samurai']['id_sistema'] = $id_sistema;
53     $_SESSION['samurai']['login'] = $_SESSION['usuario'];
54
55     //INICIALIZO OBJETOS GENERALES {{{
56     //REALIZO CONEXION
57     $tmp = new SAMURAI_DB();
58     $DB  =& $tmp->connect();
59     //CREAR EL OBJETO SAMURAI_Perm
60     $SAMURAI_PERM = new SAMURAI_Perm ($_SESSION['usuario'], $id_sistema, $DB);
61     //}}}
62     //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
63     $SAMURAI_PERM->chequear(SAMURAI_ALTA_USUARIO, SAMURAI_BAJA_USUARIO, SAMURAI_MODI_USUARIO);
64     //}}}
65
66     //POSIBLES ACCIONES
67     // listado -> Listado de los usuarios ya creados en el sistema.
68     // abm     -> Formulario para la carga de la info del usuario.
69     //LISTADO {{{
70     if ((!@$_GET['samurai_usuarios'] && !@$_POST['samurai_accion'])|| @$_GET['samurai_usuarios'] == 'listado') {
71         //LINKS {{{
72             $aHref      = '<a href="'.$_SERVER['PHP_SELF'].'?accion=##ACCION##&login=##NUEVO##&samurai_usuarios=abm">';
73             $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar Usuario"></a>';
74             $aHrefElim  = $aHref.'<img src="/MECON/images/general_eliminar.gif"  border="0" alt="Eliminar Usuario" ></a>';
75         // }}}
76         //CREO LOS OBJETOS NECESARIOS {{{
77             $TABLA2 = new MECON_HTML_Tabla ('cellspacing=0');
78             $TABLA  = new MECON_HTML_Tabla ('cellpadding=2');
79             $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
80             $SISTEMA = new SAMURAI_Sistema($DB, $id_sistema);
81         // }}}
82         //OBTENGO LA INFORMACION DE LA BASE {{{
83             $usuarios = SAMURAI_Usuario::getUsuarios($DB, $id_sistema);
84         // }}}
85         //AGREGO LOS DATOS A LAS TABLAS {{{
86             $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
87             $row    = array ($imagen->toHtml().'&nbsp;<b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
88             $TABLA3->addRow($row,'align=left');    
89
90             //Agrego el link a nuevo
91             if ($SAMURAI_PERM->tiene(SAMURAI_ALTA_USUARIO)) {
92                 $row   = array ($aHref.'<img src="/MECON/images/general_nuevo.gif" border="0">Agregar Nuevo Usuario</a>');
93                 $TABLA2->addRow($row,'align=right');    
94             }
95             //Genero la cabecera de la tabla
96             $row  = array ('Login','Nombre');
97             if ($SAMURAI_PERM->tiene(SAMURAI_MODI_USUARIO)) {
98                 $row[] = 'Modif.';
99             }
100             if ($SAMURAI_PERM->tiene(SAMURAI_BAJA_USUARIO)) {
101                 $row[] = 'Elim.';
102             }
103             $TABLA->addRow($row,'cabecera');
104             foreach ($usuarios as $usuario) {
105                 $Modif = ereg_replace('##NUEVO##' , $usuario->getLogin(), $aHrefModif);
106                 $Elim  = ereg_replace('##NUEVO##' , $usuario->getLogin(), $aHrefElim );
107                 $Modif = ereg_replace('##ACCION##', 'm'                 , $Modif     );
108                 $Elim  = ereg_replace('##ACCION##', 'e'                 , $Elim      );
109                 $row = array ($usuario->getLogin(), $usuario->getNombre());
110                 if ($SAMURAI_PERM->tiene(SAMURAI_MODI_USUARIO)) {
111                     $row[] = $Modif;
112                 }
113                 if ($SAMURAI_PERM->tiene(SAMURAI_BAJA_USUARIO)) {
114                     $row[] = $Elim;
115                 }
116
117                 $TABLA->addRow($row);
118             }
119         // }}}
120         //DIBUJO LA PAGINA {{{
121             $MARCO->addBody($TABLA3);
122             $MARCO->addBody($TABLA2->toHtml(1));
123             $MARCO->addBody($TABLA);
124             
125         // }}}
126     }
127     //}}}
128     //ABM {{{
129     elseif (@$_GET['samurai_usuarios'] == 'abm' || @$_POST['samurai_accion'] == 'abm') {
130         //CREO LOS OBJETOS NECESARIOS {{{
131             if (@$_GET['login']) {
132                 $login = $_GET['login'];
133                 $validar = 0;
134             }
135             else {
136                 $validar = 1;
137                 $login = null;
138             }
139             $TABLA   = new MECON_HTML_Tabla ('cellspacing=0');
140             $FORM    = new MECON_HTML_QuickForm ('samurai_usuarios','post', $_SERVER['PHP_SELF']);
141             $SISTEMA = new SAMURAI_Sistema($DB, $id_sistema);
142             $USUARIO = new SAMURAI_Usuario($DB, $login);
143         // }}}
144         //OBTENGO LOS DATOS DE LA BASE {{{
145             $tmps = SAMURAI_Perfil::getPerfiles($DB, null, $id_sistema);
146             foreach ($tmps as $tmp) {
147                 $PERFILES[$tmp->getId()] = $tmp->getDescripcion();
148             }
149         //}}}
150         //AGREGO LOS DATOS A LAS TABLAS {{{
151             $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
152             $row    = array ($imagen->toHtml().'&nbsp;<b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
153             $TABLA->addRow($row,'align=left');    
154         //}}}
155         //AGREGO LOS ELEMENTOS DEL FORM {{{
156             if (@$PERFILES) {
157                 $FORM->addElement ('hidden', 'samurai_accion', 'abm');
158                 $FORM->addElement ('header', 'cabecera'   , 'ABM Usuarios');
159                 if ($login) { //Si esta el login solo permito modificar los perfiles asociados
160                     $FORM->addElement ('static', 'login2', 'Login@Organismo' , $login );
161                     $FORM->addElement ('hidden', 'login' , $login );
162                     $FORM->addElement ('static', 'nombre', 'Nombre', $USUARIO->getNombre());
163                 }
164                 else {
165                     $FORM->addElement ('text'  , 'login' , 'Login@Organismo' , array( 'value' => $login , 'size' => '20'));
166                 }
167                 $FORM->addElement ('select', 'perfiles'   , 'Perfiles', $PERFILES, array('size' => '5', 'multiple' => 'true'));
168                 $FORM->addElement ('hidden', 'responsable', $_SESSION['samurai']['login']);
169                 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
170                 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location = \''.$_SERVER['PHP_SELF'].'\';return false;'));
171                 $FORM->addGroup($group,'botones');
172             }
173             else {
174                 $ERROR = new MECON_HTML_Error('El sistema no posee perfiles.');
175             }
176         // }}}
177         //AGREO LAS REGLAS DE VALIDACION {{{
178             if (@$PERFILES) {
179                 if (@$validar) {
180                     $FORM->addRule ('login', 'Se debe ingresar el login del usuario', 'required');
181                 }
182                 $FORM->addRule ('perfiles', 'Se debe seleccionar al menos un perfil', 'required');
183             }
184         // }}}
185         //SETEO LOS PERFILES SELECCIONADOS {{{
186             if (isset($_GET['accion']) && $_GET['accion'] != '') {
187                 $perfiles =& $FORM->getElement  ('perfiles');
188                 $group    =& $FORM->getElement  ('botones' );
189                 $group    =& $group->getElements('aceptar' );
190                 $aceptar  =& $group[0];
191                 
192                 $perfiles->setSelected($USUARIO->getPerfiles());
193                 
194                 //Modifico el valor del boton
195                 $aceptar->setValue('Modificar');
196                     
197                 //ELIMINACION -> modifico el valor del boton
198                 if ($_GET['accion'] == 'e') {
199                     $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
200                     $aceptar->setValue('Eliminar');
201                     $FORM->freeze();
202                 }
203             }
204         // }}}
205         //VALIDO EL FORMULARIO {{{
206             if ($FORM->validate()) {
207                 // VEO SI SE CANCELO {{{
208                 $botones = $FORM->getSubmitValue('botones');
209                 if (@$botones['cancelar']) {
210                     header('Location: '.$_SERVER['PHP_SELF']);
211                 }
212                 // }}}
213                 else {
214                     $login2   =& $FORM->getElement  ('login'   ); 
215                     $nombre   =& $FORM->getElement  ('nombre'  );
216                     $perfiles =& $FORM->getElement  ('perfiles');
217                     $group    =& $FORM->getElement  ('botones' );
218                     $group    =& $group->getElements('aceptar' );
219                     $aceptar  =& $group[0];
220                     $res = '';
221
222                     if ($login) {
223                         $login3 = $login2->_text;
224                     }
225                     else {
226                         $login3 = $login2->getValue();
227                     }
228                     $USUARIO->setLogin($login3);
229                     $res  = $USUARIO->verificarLogin();
230                     if ($aceptar->getValue() == 'Grabar') {
231                         $res2 = $USUARIO->verificarAsociacionExistente();
232                     }
233                     if (@PEAR::isError($res)) {
234                         $ERROR = new MECON_HTML_Error($res->getMessage());
235                     }
236                     elseif (@PEAR::isError($res2)) {
237                         $ERROR =new MECON_HTML_Error($res2->getMessage());
238                     }
239                     else {
240                         $USUARIO->setPerfiles($perfiles->getSelected());
241
242                         $res = $USUARIO->guardarDatos($aceptar->getValue());
243
244                         if (PEAR::isError($res)) {
245                             $ERROR = new MECON_HTML_Error($res->getMessage());
246                             if ($aceptar->getValue() == 'Eliminar') {
247                                 $FORM->freeze();
248                             }
249                         }
250                         else {
251                             $FORM->removeElement();
252                             $FORM->freeze();
253                             header('Location: '.$_SERVER['PHP_SELF']);
254                         }
255                     }
256                 }
257             }
258         // }}}
259         //DIBUJO LA PAGINA {{{
260             $MARCO->addBody($TABLA);
261             if (isset($ERROR)) {
262                 $MARCO->addBody($ERROR);
263             }
264             $MARCO->addBody($FORM);
265         // }}}
266     }
267     //}}}
268     
269 }
270 //}}}
271 ?>