2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4 foldmethod=marker textwidth=80:
3 // +----------------------------------------------------------------------+
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 // +----------------------------------------------------------------------+
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/Perm.php';
29 require_once 'SAMURAI/Perfil.php';
30 require_once 'SAMURAI/Usuario.php';
31 require_once 'SAMURAI/Sistema.php';
32 require_once 'SAMURAI/constantes.php';
35 // Funciones para agregar la seccion SAMURAI_Usuario en los sistemas.
36 // Con esto se pueden embeber el abm de usuarios como una seccion/subseccion mas
37 // de un sistema cualquiera.
40 * Funcion que se encarga agregar los componentes necesarios al sistema para que
41 * se pueda realizar un abm de usuarios.
43 * @param MECON_Marco &$MARCO Referencia al objeto MECON_Marco que se este
44 * utilizando en la pagina
45 * @param int $id_sistema Identificador del sistema en el cual se esta
50 //SAMURAI_HTML_Usuario {{{
51 function SAMURAI_HTML_Usuario(&$MARCO, $id_sistema) {
53 $_SESSION['samurai']['id_sistema'] = $id_sistema;
54 $_SESSION['samurai']['login'] = $_SESSION['usuario'];
56 //INICIALIZO OBJETOS GENERALES {{{
58 $tmp = new SAMURAI_DB();
59 $DB =& $tmp->connect();
60 //CREAR EL OBJETO SAMURAI_Perm
61 $SAMURAI_PERM = new SAMURAI_Perm ($_SESSION['usuario'], $id_sistema, $DB);
63 //VERIFICO SI SE TIENE ACCESO A LA PAGINA{{{
64 $SAMURAI_PERM->chequear(SAMURAI_ALTA_USUARIO, SAMURAI_BAJA_USUARIO, SAMURAI_MODI_USUARIO);
67 if (@$_POST['samurai_accion'] == 'abm' || @$_GET['samurai_usuarios'] == 'abm') {
75 // listado -> Listado de los usuarios ya creados en el sistema.
76 // abm -> Formulario para la carga de la info del usuario.
78 if ($OPCION == 'listado') {
80 $aHref = '<a href="'.$_SERVER['PHP_SELF'].'?samurai_usuarios=abm&accion=##ACCION##&login=##NUEVO##">';
81 $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar Usuario"></a>';
82 $aHrefElim = $aHref.'<img src="/MECON/images/general_eliminar.gif" border="0" alt="Eliminar Usuario" ></a>';
84 //CREO LOS OBJETOS NECESARIOS {{{
85 $TABLA2 = new MECON_HTML_Tabla ('cellspacing=0');
86 $TABLA = new MECON_HTML_Tabla ('cellpadding=2');
87 $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
88 $SISTEMA = new SAMURAI_Sistema($DB, $id_sistema);
90 //OBTENGO LA INFORMACION DE LA BASE {{{
91 $usuarios = SAMURAI_Usuario::getUsuarios($DB, $id_sistema);
93 //AGREGO LOS DATOS A LAS TABLAS {{{
94 $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
95 $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
96 $TABLA3->addRow($row,'align=left');
98 //Agrego el link a nuevo
99 if ($SAMURAI_PERM->tiene(SAMURAI_ALTA_USUARIO)) {
100 $row = array ($aHref.'<img src="/MECON/images/general_nuevo.gif" border="0">Agregar Nuevo Usuario</a>');
101 $TABLA2->addRow($row,'align=right');
103 //Genero la cabecera de la tabla
104 $row = array ('Login','Nombre');
105 if ($SAMURAI_PERM->tiene(SAMURAI_MODI_USUARIO)) {
108 if ($SAMURAI_PERM->tiene(SAMURAI_BAJA_USUARIO)) {
111 $TABLA->addRow($row,'cabecera');
112 foreach ($usuarios as $usuario) {
113 $Modif = ereg_replace('##NUEVO##' , $usuario->getLogin(), $aHrefModif);
114 $Elim = ereg_replace('##NUEVO##' , $usuario->getLogin(), $aHrefElim );
115 $Modif = ereg_replace('##ACCION##', 'm' , $Modif );
116 $Elim = ereg_replace('##ACCION##', 'e' , $Elim );
117 $row = array ($usuario->getLogin(), $usuario->getNombre());
118 if ($SAMURAI_PERM->tiene(SAMURAI_MODI_USUARIO)) {
121 if ($SAMURAI_PERM->tiene(SAMURAI_BAJA_USUARIO)) {
125 $TABLA->addRow($row);
128 //DIBUJO LA PAGINA {{{
129 $MARCO->addBody($TABLA3);
130 $MARCO->addBody($TABLA2->toHtml(1));
131 $MARCO->addBody($TABLA);
136 elseif ($OPCION == 'abm') {
137 //CREO LOS OBJETOS NECESARIOS {{{
138 if (@$_GET['login']) {
139 $login = $_GET['login'];
146 $TABLA = new MECON_HTML_Tabla ('cellspacing=0');
147 $FORM = new MECON_HTML_QuickForm ('samurai_usuarios','post', $_SERVER['PHP_SELF']);
148 $SISTEMA = new SAMURAI_Sistema($DB, $id_sistema);
149 $USUARIO = new SAMURAI_Usuario($DB, $login);
151 //OBTENGO LOS DATOS DE LA BASE {{{
152 $tmps = SAMURAI_Perfil::getPerfiles($DB, null, $id_sistema);
153 foreach ($tmps as $tmp) {
154 $PERFILES[$tmp->getId()] = $tmp->getDescripcion();
157 //AGREGO LOS DATOS A LAS TABLAS {{{
158 $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
159 $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
160 $TABLA->addRow($row,'align=left');
162 //AGREGO LOS ELEMENTOS DEL FORM {{{
164 $FORM->addElement ('hidden', 'samurai_accion', 'abm');
165 $FORM->addElement ('header', 'cabecera' , 'ABM Usuarios');
166 if ($login) { //Si esta el login solo permito modificar los perfiles asociados
167 $FORM->addElement ('static', 'login2', 'Login@Organismo' , $login );
168 $FORM->addElement ('hidden', 'login' , $login );
169 $FORM->addElement ('static', 'nombre', 'Nombre', $USUARIO->getNombre());
172 $FORM->addElement ('text' , 'login' , 'Login@Organismo' , array( 'value' => $login , 'size' => '20'));
174 $FORM->addElement ('select', 'perfiles' , 'Perfiles', $PERFILES, array('size' => '5', 'multiple' => 'true'));
175 $FORM->addElement ('hidden', 'responsable', $_SESSION['samurai']['login']);
176 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
177 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location = \''.$_SERVER['PHP_SELF'].'\';return false;'));
178 $FORM->addGroup($group,'botones');
181 $ERROR = new MECON_HTML_Error('El sistema no posee perfiles.');
184 //AGREO LAS REGLAS DE VALIDACION {{{
187 $FORM->addRule ('login', 'Se debe ingresar el login del usuario', 'required');
189 $FORM->addRule ('perfiles', 'Se debe seleccionar al menos un perfil', 'required');
192 //SETEO LOS PERFILES SELECCIONADOS {{{
193 if (isset($_GET['accion']) && $_GET['accion'] != '') {
194 $perfiles =& $FORM->getElement ('perfiles');
195 $group =& $FORM->getElement ('botones' );
196 $group =& $group->getElements('aceptar' );
197 $aceptar =& $group[0];
199 $perfiles->setSelected($USUARIO->getPerfiles());
201 //Modifico el valor del boton
202 $aceptar->setValue('Modificar');
204 //ELIMINACION -> modifico el valor del boton
205 if ($_GET['accion'] == 'e') {
206 $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
207 $aceptar->setValue('Eliminar');
212 //VALIDO EL FORMULARIO {{{
213 if ($FORM->validate()) {
214 // VEO SI SE CANCELO {{{
215 $botones = $FORM->getSubmitValue('botones');
216 if (@$botones['cancelar']) {
217 header('Location: '.$_SERVER['PHP_SELF'].'/');
221 $login2 =& $FORM->getElement ('login' );
222 $nombre =& $FORM->getElement ('nombre' );
223 $perfiles =& $FORM->getElement ('perfiles');
224 $group =& $FORM->getElement ('botones' );
225 $group =& $group->getElements('aceptar' );
226 $aceptar =& $group[0];
230 $login3 = $login2->_text;
233 $login3 = $login2->getValue();
235 $USUARIO->setLogin($login3);
236 $res = $USUARIO->verificarLogin();
237 if ($aceptar->getValue() == 'Grabar') {
238 $res2 = $USUARIO->verificarAsociacionExistente();
240 if (@PEAR::isError($res)) {
241 $ERROR = new MECON_HTML_Error($res->getMessage());
243 elseif (@PEAR::isError($res2)) {
244 $ERROR =new MECON_HTML_Error($res2->getMessage());
247 $USUARIO->setPerfiles($perfiles->getSelected());
249 $res = $USUARIO->guardarDatos($aceptar->getValue());
251 if (PEAR::isError($res)) {
252 $ERROR = new MECON_HTML_Error($res->getMessage());
253 if ($aceptar->getValue() == 'Eliminar') {
258 // $FORM->removeElement();
260 header('Location: '.$_SERVER['PHP_SELF'].'/');
266 //DIBUJO LA PAGINA {{{
267 $MARCO->addBody($TABLA);
269 $MARCO->addBody($ERROR);
271 $MARCO->addBody($FORM);