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