]> git.llucax.com Git - mecon/samurai.git/blob - lib/SAMURAI/HTML/Usuario.php
Se agrego la funcionalidad para embeber el abm de usuarios en cualquier sistema externo.
[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     //INICIALIZO OBJETOS GENERALES {{{
52     //REALIZO CONEXION
53     $tmp = new SAMURAI_DB();
54     $DB  =& $tmp->connect();
55     //CREAR EL OBJETO SAMURAI_Perm
56     $SAMURAI_PERM = new SAMURAI_Perm ($_SESSION['usuario'], $id_sistema, $DB);
57     //}}}
58     //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
59     $SAMURAI_PERM->chequear(SAMURAI_ALTA_USUARIO, SAMURAI_BAJA_USUARIO, SAMURAI_MODI_USUARIO);
60     //}}}
61
62     //POSIBLES ACCIONES
63     // listado -> Listado de los usuarios ya creados en el sistema.
64     // abm     -> Formulario para la carga de la info del usuario.
65     //LISTADO {{{
66     if ((!@$_GET['samurai_usuarios'] && !@$_POST['samurai_accion'])|| @$_GET['samurai_usuarios'] == 'listado') {
67         //LINKS {{{
68             $aHref      = '<a href="'.$_SERVER['PHP_SELF'].'?accion=##ACCION##&login=##NUEVO##&samurai_usuarios=abm">';
69             $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar Usuario"></a>';
70             $aHrefElim  = $aHref.'<img src="/MECON/images/general_eliminar.gif"  border="0" alt="Eliminar Usuario" ></a>';
71         // }}}
72         //CREO LOS OBJETOS NECESARIOS {{{
73             $TABLA2 = new MECON_HTML_Tabla ('cellspacing=0');
74             $TABLA  = new MECON_HTML_Tabla ('cellpadding=2');
75             $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
76             $SISTEMA = new SAMURAI_Sistema($DB, $id_sistema);
77         // }}}
78         //OBTENGO LA INFORMACION DE LA BASE {{{
79             $usuarios = SAMURAI_Usuario::getUsuarios($DB, $id_sistema);
80         // }}}
81         //AGREGO LOS DATOS A LAS TABLAS {{{
82             $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
83             $row    = array ($imagen->toHtml().'&nbsp;<b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
84             $TABLA3->addRow($row,'align=left');    
85
86             //Agrego el link a nuevo
87             if ($SAMURAI_PERM->tiene(SAMURAI_ALTA_USUARIO)) {
88                 $row   = array ($aHref.'<img src="/MECON/images/general_nuevo.gif" border="0">Agregar Nuevo Usuario</a>');
89                 $TABLA2->addRow($row,'align=right');    
90             }
91             //Genero la cabecera de la tabla
92             $row  = array ('Login','Nombre');
93             if ($SAMURAI_PERM->tiene(SAMURAI_MODI_USUARIO)) {
94                 $row[] = 'Modif.';
95             }
96             if ($SAMURAI_PERM->tiene(SAMURAI_BAJA_USUARIO)) {
97                 $row[] = 'Elim.';
98             }
99             $TABLA->addRow($row,'cabecera');
100             foreach ($usuarios as $usuario) {
101                 $Modif = ereg_replace('##NUEVO##' , $usuario->getLogin(), $aHrefModif);
102                 $Elim  = ereg_replace('##NUEVO##' , $usuario->getLogin(), $aHrefElim );
103                 $Modif = ereg_replace('##ACCION##', 'm'                 , $Modif     );
104                 $Elim  = ereg_replace('##ACCION##', 'e'                 , $Elim      );
105                 $row = array ($usuario->getLogin(), $usuario->getNombre());
106                 if ($SAMURAI_PERM->tiene(SAMURAI_MODI_USUARIO)) {
107                     $row[] = $Modif;
108                 }
109                 if ($SAMURAI_PERM->tiene(SAMURAI_BAJA_USUARIO)) {
110                     $row[] = $Elim;
111                 }
112
113                 $TABLA->addRow($row);
114             }
115         // }}}
116         //DIBUJO LA PAGINA {{{
117             $MARCO->addBody($TABLA3);
118             $MARCO->addBody($TABLA2->toHtml(1));
119             $MARCO->addBody($TABLA);
120             
121         // }}}
122     }
123     //}}}
124     //ABM {{{
125     elseif (@$_GET['samurai_usuarios'] == 'abm' || @$_POST['samurai_accion'] == 'abm') {
126         //CREO LOS OBJETOS NECESARIOS {{{
127             if (@$_GET['login']) {
128                 $login = $_GET['login'];
129                 $validar = 0;
130             }
131             else {
132                 $validar = 1;
133                 $login = null;
134             }
135             $TABLA   = new MECON_HTML_Tabla ('cellspacing=0');
136             $FORM    = new MECON_HTML_QuickForm ('samurai_usuarios','post', $_SERVER['PHP_SELF']);
137             $SISTEMA = new SAMURAI_Sistema($DB, $id_sistema);
138             $USUARIO = new SAMURAI_Usuario($DB, $login);
139         // }}}
140         //OBTENGO LOS DATOS DE LA BASE {{{
141             $tmps = SAMURAI_Perfil::getPerfiles($DB, null, $id_sistema);
142             foreach ($tmps as $tmp) {
143                 $PERFILES[$tmp->getId()] = $tmp->getDescripcion();
144             }
145         //}}}
146         //AGREGO LOS DATOS A LAS TABLAS {{{
147             $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
148             $row    = array ($imagen->toHtml().'&nbsp;<b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
149             $TABLA->addRow($row,'align=left');    
150         //}}}
151         //AGREGO LOS ELEMENTOS DEL FORM {{{
152             if (@$PERFILES) {
153                 $FORM->addElement ('hidden', 'samurai_accion', 'abm');
154                 $FORM->addElement ('header', 'cabecera'   , 'ABM Usuarios');
155                 if ($login) { //Si esta el login solo permito modificar los perfiles asociados
156                     $FORM->addElement ('static', 'login2', 'Login@Organismo' , $login );
157                     $FORM->addElement ('hidden', 'login' , $login );
158                     $FORM->addElement ('static', 'nombre', 'Nombre', $USUARIO->getNombre());
159                 }
160                 else {
161                     $FORM->addElement ('text'  , 'login' , 'Login@Organismo' , array( 'value' => $login , 'size' => '20'));
162                 }
163                 $FORM->addElement ('select', 'perfiles'   , 'Perfiles', $PERFILES, array('size' => '5', 'multiple' => 'true'));
164                 $FORM->addElement ('hidden', 'responsable', $_SESSION['samurai']['login']);
165                 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
166                 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location = \''.$_SERVER['PHP_SELF'].'\';return false;'));
167                 $FORM->addGroup($group,'botones');
168             }
169             else {
170                 $ERROR = new MECON_HTML_Error('El sistema no posee perfiles.');
171             }
172         // }}}
173         //AGREO LAS REGLAS DE VALIDACION {{{
174             if (@$PERFILES) {
175                 if (@$validar) {
176                     $FORM->addRule ('login', 'Se debe ingresar el login del usuario', 'required');
177                 }
178                 $FORM->addRule ('perfiles', 'Se debe seleccionar al menos un perfil', 'required');
179             }
180         // }}}
181         //SETEO LOS PERFILES SELECCIONADOS {{{
182             if (isset($_GET['accion']) && $_GET['accion'] != '') {
183                 $perfiles =& $FORM->getElement  ('perfiles');
184                 $group    =& $FORM->getElement  ('botones' );
185                 $group    =& $group->getElements('aceptar' );
186                 $aceptar  =& $group[0];
187                 
188                 $perfiles->setSelected($USUARIO->getPerfiles());
189                 
190                 //Modifico el valor del boton
191                 $aceptar->setValue('Modificar');
192                     
193                 //ELIMINACION -> modifico el valor del boton
194                 if ($_GET['accion'] == 'e') {
195                     $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
196                     $aceptar->setValue('Eliminar');
197                     $FORM->freeze();
198                 }
199             }
200         // }}}
201         //VALIDO EL FORMULARIO {{{
202             if ($FORM->validate()) {
203                 // VEO SI SE CANCELO {{{
204                 $botones = $FORM->getSubmitValue('botones');
205                 if (@$botones['cancelar']) {
206                     header('Location: '.$_SERVER['PHP_SELF']);
207                 }
208                 // }}}
209                 else {
210                     $login2   =& $FORM->getElement  ('login'   ); 
211                     $nombre   =& $FORM->getElement  ('nombre'  );
212                     $perfiles =& $FORM->getElement  ('perfiles');
213                     $group    =& $FORM->getElement  ('botones' );
214                     $group    =& $group->getElements('aceptar' );
215                     $aceptar  =& $group[0];
216                     $res = '';
217
218                     if ($login) {
219                         $login3 = $login2->_text;
220                     }
221                     else {
222                         $login3 = $login2->getValue();
223                     }
224                     $USUARIO->setLogin($login3);
225                     $res  = $USUARIO->verificarLogin();
226                     if ($aceptar->getValue() == 'Grabar') {
227                         $res2 = $USUARIO->verificarAsociacionExistente();
228                     }
229                     if (@PEAR::isError($res)) {
230                         $ERROR = new MECON_HTML_Error($res->getMessage());
231                     }
232                     elseif (@PEAR::isError($res2)) {
233                         $ERROR =new MECON_HTML_Error($res2->getMessage());
234                     }
235                     else {
236                         $USUARIO->setPerfiles($perfiles->getSelected());
237
238                         $res = $USUARIO->guardarDatos($aceptar->getValue());
239
240                         if (PEAR::isError($res)) {
241                             $ERROR = new MECON_HTML_Error($res->getMessage());
242                             if ($aceptar->getValue() == 'Eliminar') {
243                                 $FORM->freeze();
244                             }
245                         }
246                         else {
247                             $FORM->removeElement();
248                             $FORM->freeze();
249                             header('Location: '.$_SERVER['PHP_SELF']);
250                         }
251                     }
252                 }
253             }
254         // }}}
255         //DIBUJO LA PAGINA {{{
256             $MARCO->addBody($TABLA);
257             if (isset($ERROR)) {
258                 $MARCO->addBody($ERROR);
259             }
260             $MARCO->addBody($FORM);
261         // }}}
262     }
263     //}}}
264     
265 }
266 //}}}
267 ?>