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