]> git.llucax.com Git - mecon/samurai.git/blob - sistema/www/usuarios/usuarios-abm.php
BugFixes.
[mecon/samurai.git] / sistema / www / usuarios / usuarios-abm.php
1 <?php
2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker:
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:  mié jul 16 13:37:33 ART 2003
17 // | Author:  Martin Marrese <mmarre@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
19 //
20 // $Id$
21 // 
22 //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
23 $SAMURAI_PERM->setSistema(SAMURAI_PERM);
24 if (!$SAMURAI_PERM->tiene(SAMURAI_PERM_DEVELOPER)) {
25     $SAMURAI_PERM->setSistema($_SESSION['samurai']['id_sistema']);
26     $SAMURAI_PERM->chequear(SAMURAI_PERM_USUARIO_ALTA, SAMURAI_PERM_USUARIO_BAJA, SAMURAI_PERM_USUARIO_MODIF, SAMURAI_PERM_DEVELOPER);
27 }
28 $MARCO =& new MECON_Marco ('/var/www/sistemas/samurai/sistema/conf/confSecciones.php', $SAMURAI_PERM);
29 //}}}
30
31 //XXX OBTENGO LA ACCION {{{
32 switch ($_REQUEST['accion']) {
33     case 'm':
34         $b_accion = 'Modificar';
35         $accion = 'm';
36         break;
37     case 'e':
38         $b_accion = 'Eliminar';
39         $accion = 'e';
40         break;
41     default:
42         $b_accion = 'Grabar';
43         $accion = '';
44         break;
45 }
46 //}}}
47 //REQUIRE ONCE {{{
48     //MECON {{{
49     require_once 'MECON/HTML/QuickForm.php';
50     require_once 'MECON/HTML/Tabla.php';
51     require_once 'MECON/HTML/Error.php';
52     //}}}
53     //SAMURAI {{{
54     require_once 'SAMURAI/Perfil.php';
55     require_once 'SAMURAI/Usuario.php';
56     require_once 'SAMURAI/Sistema.php';
57     //}}}
58     require_once 'MECON/HTML/Image.php';
59 // }}}
60 //VEO SI HAY QUE ELEGIR EN QUE SISTEMA TRABAJAR {{{
61 if (!@$_SESSION['samurai']['id_sistema']) {
62     header('Location: ./../sel-sistema?redirect=usuarios/usuarios');    
63 }
64 // }}}   
65 //CREO LOS OBJETOS NECESARIOS {{{
66     if (@$_GET['login']) {
67         $login = $_GET['login'];
68         $validar = 0;
69     }
70     else {
71         $validar = 1;
72         $login = null;
73     }
74
75
76     $TABLA   = new MECON_HTML_Tabla ('cellspacing=0');
77     $FORM    = new MECON_HTML_QuickForm ('usuarios_abm','post','usuarios-abm');
78     $SISTEMA = new SAMURAI_Sistema($DB, $_SESSION['samurai']['id_sistema']);
79     $USUARIO = new SAMURAI_Usuario($DB, $login, $_SESSION['samurai']['id_sistema']);
80 // }}}
81 //OBTENGO LOS DATOS DE LA BASE {{{
82     $tmps = SAMURAI_Perfil::getPerfiles($DB, null, $_SESSION['samurai']['id_sistema']);
83     foreach ($tmps as $tmp) {
84         $PERFILES[$tmp->getId()] = $tmp->getDescripcion();
85     }
86 //}}}
87 //AGREGO LOS DATOS A LAS TABLAS {{{
88     $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
89     $row    = array ($imagen->toHtml().'&nbsp;<b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
90     $TABLA->addRow($row,'align=left');    
91 //}}}
92 //AGREGO LOS ELEMENTOS DEL FORM {{{
93     if (@$PERFILES) {
94         $FORM->addElement ('header', 'cabecera'   , 'ABM Usuarios');
95         if ($login) { //Si esta el login solo permito modificar los perfiles asociados
96             $FORM->addElement ('static', 'login2', 'Login@Organismo' , $login );
97             $FORM->addElement ('hidden', 'login' , $login );
98             $FORM->addElement ('static', 'nombre', 'Nombre', $USUARIO->getNombre());
99         }
100         else {
101             $FORM->addElement ('text'  , 'login' , 'Login@Organismo' , array( 'value' => $login , 'size' => '20'));
102         }
103         $FORM->addElement ('select', 'perfiles'   , 'Perfiles', $PERFILES, array('size' => '5', 'multiple' => 'true'));
104         $FORM->addElement ('hidden', 'responsable', $_SESSION['usuario']);
105         $FORM->addElement ('hidden', 'accion', $accion);
106         $group[] = HTML_QuickForm::createElement('submit', 'aceptar', $b_accion);
107         $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location = \'usuarios\';return false;'));
108         $FORM->addGroup($group,'botones');
109     }
110     else {
111         $ERROR = new MECON_HTML_Error('El sistema no posee perfiles.');
112     }
113 // }}}
114 //AGREO LAS REGLAS DE VALIDACION {{{
115     if (@$PERFILES) {
116         if (@$validar) {
117             $FORM->addRule ('login', 'Se debe ingresar el login del usuario', 'required');
118         }
119         $FORM->addRule ('perfiles', 'Se debe seleccionar al menos un perfil', 'required');
120     }
121 // }}}
122 //SETEO LOS PERFILES SELECCIONADOS {{{
123     if (isset($_GET['accion']) && $_GET['accion'] != '') {
124         $perfiles =& $FORM->getElement  ('perfiles');
125         $group    =& $FORM->getElement  ('botones' );
126         $group    =& $group->getElements('aceptar' );
127         $aceptar  =& $group[0];
128         
129         $perfiles->setSelected($USUARIO->getPerfiles());
130         
131         //Modifico el valor del boton
132         $aceptar->setValue('Modificar');
133             
134         //ELIMINACION -> modifico el valor del boton
135         if ($_GET['accion'] == 'e') {
136             $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
137             $aceptar->setValue('Eliminar');
138             $FORM->freeze();
139         }
140     }
141 // }}}
142 //VALIDO EL FORMULARIO {{{
143     if ($FORM->validate()) {
144         // VEO SI SE CANCELO {{{
145         $botones = $FORM->getSubmitValue('botones');
146         if (@$botones['cancelar']) {
147             header('Location: usuarios');
148         }
149         // }}}
150         else {
151             $login2   =& $FORM->getElement  ('login'   ); 
152             $nombre   =& $FORM->getElement  ('nombre'  );
153             $perfiles =& $FORM->getElement  ('perfiles');
154             $group    =& $FORM->getElement  ('botones' );
155             $group    =& $group->getElements('aceptar' );
156             $aceptar  =& $group[0];
157             $res = '';
158
159             if ($login) {
160                 $login3 = $login2->_text;
161             }
162             else {
163                 $login3 = $login2->getValue();
164             }
165             $USUARIO->setLogin($login3);
166             
167             $res  = $USUARIO->verificarLogin();
168             if ($aceptar->getValue() == 'Grabar') {
169                 $res2 = $USUARIO->verificarAsociacionExistente();
170             }
171             if (@PEAR::isError($res)) {
172                 $ERROR = new MECON_HTML_Error($res->getMessage());
173             }
174             elseif (@PEAR::isError($res2)) {
175                 $ERROR =new MECON_HTML_Error($res2->getMessage());
176             }
177             else {
178                 $USUARIO->setPerfiles($perfiles->getSelected());
179                 
180                 $res = $USUARIO->guardarDatos($aceptar->getValue());
181
182                 if (PEAR::isError($res)) {
183                     $ERROR = new MECON_HTML_Error($res->getMessage());
184                     if ($aceptar->getValue() == 'Eliminar') {
185                         $FORM->freeze();
186                     }
187                 }
188                 else {
189                     $FORM->freeze();
190                     header('Location: usuarios');
191                 }
192             }
193         }
194     }
195 // }}}
196 //DIBUJO LA PAGINA {{{
197     $MARCO->addBody($TABLA);
198     if (isset($ERROR)) {
199         $MARCO->addBody($ERROR);
200     }
201     $MARCO->addBody($FORM);
202     $MARCO->display();
203 // }}}
204 //FIN
205 ?>