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 // +----------------------------------------------------------------------+
23 /** \page page_samurai_html_perfil Perfil Embebido
25 \section page_samurai_html_perfil_descripcion Descripcion
26 Samurai provee de una funcion que permite embeber la funcionalidad de
27 perfiles dentro de aquellos sistemas que asi lo requieran.
28 Es completamente independiente del sistema en el cual trabaja y puede ser
29 agregado de cualquier manera (Seccion, Subseccion o Contenido) al sistema.
31 \note Es necesario para embeber los perfiles que se haya realizado un
34 \section page_samurai_html_perfil_funcionamiento Funcionamiento
35 Es una copia de la seccion Perfiles dentro de SAMURAI. Se relizan las mismas
36 verificaciones, tiene las mismas condiciones y se utilizan los mismos
39 \subsection page_samurai_html_perfil_funcionamiento_validaciones Validaciones y Condiciones
40 - Los espacios entre las palabras que componen el nombre de un
41 perfil son eliminados. Ej: Agregar Usuario
42 se cambia por Agregar Usuario.
43 - Es obligatorio que los perfiles contengan al menos un permiso.
44 - No puede haber dos perfiles con los mismos permisos.
45 - No se pueden borrar perfiles que esten asociados a usuarios.
46 - No se pueden ingresar pefiles nuevos que ya esten cargados.
48 \section page_samurai_html_perfil_ejemplo Ejemplo
49 SAMURAI_HTML_Perfil agrega el contenido directamente en el marco que se este
51 Para embeber los perfiles hay que hacerlo de la siguiente manera
54 include 'SAMURAI/HTML/Perfil.php';
55 SAMURAI_HTML_Perfil($MARCO, $ID_SISTEMA);
58 \note $MARCO es el objeto MECON_Marco o el objeto HTML_DietMarco de
60 $ID_SISTEMA es el identificador numerico en el cual se esta realizando la
63 \section page_samurai_html_perfil_permisos Pasos Finales
64 Para que los usuarios puedan acceder a los perfiles embebidos es necesario
65 que en el sistema en el cual se este embebiendo se agregen los permisos que
66 utiliza la seccion Perfiles (enumerados mas abajo), y que estos mediante
67 perfiles se asignen a usuarios.
68 Esto implica que por lo menos un usuario tendra que ser cargado desde
69 SAMURAI para que este tenga acceso a la zona embebida.
79 require_once 'SAMURAI/DB.php';
80 require_once 'SAMURAI/Perm.php';
81 require_once 'SAMURAI/constantes.php';
82 require_once 'SAMURAI/Perfil.php';
83 require_once 'SAMURAI/Sistema.php';
84 require_once 'SAMURAI/Permiso.php';
85 require_once 'MECON/HTML/Tabla.php';
86 require_once 'MECON/HTML/QuickForm.php';
87 require_once 'MECON/HTML/Error.php';
88 require_once 'MECON/HTML/Image.php';
89 require_once 'PEAR.php';
93 * Funcion que se encarga agregar los componentes necesarios al sistema para
94 * que se pueda realizar un abm de perfiles.
95 @see \ref page_samurai_html_perfil
97 * @param MECON_Marco &$MARCO Referencia al objeto MECON_Marco que se este utilizando en la pagina
98 * @param int $id_sistema Identificador del sistema en el cual se esta trabajando
102 //SAMURAI_HTML_Perfil {{{
103 function SAMURAI_HTML_Perfil(&$MARCO, $id_sistema) {
105 //INICIALIZO OBJETOS GENERALES {{{
107 $tmp = new SAMURAI_DB();
108 $DB =& $tmp->connect();
109 //CREAR EL OBJETO SAMURAI_Perm
110 $SAMURAI_PERM = new SAMURAI_Perm ($_SESSION['usuario'], $id_sistema, $DB);
113 if (@$_POST['samurai_accion'] == 'abm' || @$_GET['samurai_perfiles'] == 'abm') {
116 elseif (@$_POST['samurai_accion'] == 'nuevo' || @$_GET['samurai_perfiles'] == 'nuevo') {
124 // listado -> Listado de los perfiles ya creados en el sistema.
125 // nuevo -> Pantalla de seleccion o de ingreso de un nuevo nombre.
126 // abm -> Formulario para la carga de la info del perfil.
129 if ($OPCION == 'listado') {
130 //VEO SI PUEDE ACCEDER{{{
131 $SAMURAI_PERM->chequear(SAMURAI_PERM_PERFIL_ALTA,SAMURAI_PERM_PERFIL_BAJA,SAMURAI_PERM_PERFIL_MODIF);
134 $aHref = '<a href="'.$_SERVER['PHP_SELF'].'?accion=##ACCION##&id_perfil=##NUEVO##&samurai_perfiles=abm">';
135 $aHrefModif = $aHref.'<img src="/MECON/images/general_modificar.gif" border="0" alt="Modificar Perfil"></a>';
136 $aHrefElim = $aHref.'<img src="/MECON/images/general_eliminar.gif" border="0" alt="Eliminar Perfil" ></a>';
138 //CREO LOS OBJETOS NECESARIOS {{{
139 $TABLA2 =& new MECON_HTML_Tabla ('cellspacing=0');
140 $TABLA =& new MECON_HTML_Tabla ('cellpadding=2');
141 $TABLA3 =& new MECON_HTML_Tabla ('cellspacing=0');
142 $SISTEMA =& new SAMURAI_Sistema($DB, $id_sistema);
144 //OBTENGO LA INFORMACION DE LA BASE {{{
145 $perfiles = SAMURAI_Perfil::getPerfiles($DB, null, $id_sistema);
147 //AGREGO LOS DATOS A LAS TABLAS {{{
148 $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
149 $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
150 $TABLA3->addRow($row,'align=left');
152 //Agrego el link a nuevo
153 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_ALTA)) {
154 $row = array ('<a href="'.$_SERVER['PHP_SELF'].'?samurai_perfiles=nuevo"><img src="/MECON/images/general_nuevo.gif" border="0">Ingresar Nuevo Perfil</a>');
155 $TABLA2->addRow($row,'align=right');
158 //Genero la cabecera de la tabla
159 $row = array ('Id','Descripcion');
160 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
163 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_MODIF)) {
166 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_BAJA)) {
170 $TABLA->addRow($row,'cabecera');
171 foreach ($perfiles as $perfil) {
172 $Modif = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefModif);
173 $Elim = ereg_replace('##NUEVO##' , $perfil->getId(), $aHrefElim );
174 $Modif = ereg_replace('##ACCION##', 'm' , $Modif );
175 $Elim = ereg_replace('##ACCION##', 'e' , $Elim );
176 $row = array ($perfil->getId(), $perfil->getDescripcion());
178 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
179 $row[] = $perfil->getTipo();
181 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_MODIF)) {
184 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_BAJA)) {
187 $TABLA->addRow($row);
190 //AGREGO LA INFO AL MARCO {{{
191 $MARCO->addBodyContent($TABLA3);
192 $MARCO->addBodyContent($TABLA2->toHtml(1));
193 $MARCO->addBodyContent($TABLA);
198 elseif ($OPCION == 'nuevo') {
199 //VEO SI PUEDE ACCEDER{{{
200 $SAMURAI_PERM->chequear(SAMURAI_PERM_PERFIL_ALTA);
202 //CREO LOS OBJETO NECESARIOS {{{
203 $FORM =& new MECON_HTML_QuickForm ('samurai_perfiles','post',$_SERVER['PHP_SELF']);
204 $SISTEMA =& new SAMURAI_Sistema ($DB, $id_sistema);
206 //AGREGO LOS ELEMENTOS DEL FORM {{{
207 $FORM->addElement ('hidden', 'samurai_accion', 'nuevo');
208 $FORM->addElement ('header', 'cabecera' , 'Nuevo Perfil');
209 $FORM->addElement ('select', 'perfiles' , 'Perfiles', null, array('size' => '1'));
210 $FORM->addElement ('text' , 'filtro' , 'Filtrar' , array('size' => '50'));
211 $FORM->addElement ('text' , 'descripcion', 'Nombre' , array('size' => '50'));
212 $group[] = HTML_QuickForm::createElement('submit', 'continuar', 'Continuar');
213 $group[] = HTML_QuickForm::createElement('submit', 'filtrar' , 'Filtrar' );
214 $group[] = HTML_QuickForm::createElement('submit', 'cancelar' , 'Cancelar', array ('onClick' => 'javascript:window.location =\''.$_SERVER['PHP_SELF'].'\';return false;') );
215 $FORM->addGroup($group,'botones');
217 //RESTRINJO EL FORMATO DEL NOMBRE DEL PERFIL{{{
218 $FORM->addRule ('descripcion', 'El nombre del perfil solo puede contener letras y/o numeros.', 'regex','/^[a-zA-Z0-9 ]+$/');
220 // CARGO LA INFORMACION EN EL SELECT DE PERFILES {{{
221 $botones = $FORM->getSubmitValue('botones');
222 $perfiles =& $FORM->getElement('perfiles');
223 $descripcion =& $FORM->getElement('descripcion');
224 if (@$botones['cancelar']) {
225 header('Location: '.$_SERVER['PHP_SELF'].'/');
227 if (!isset($botones['filtrar'])) {
228 $PERFILES = SAMURAI_Perfil::getArrayPerfiles($DB);
230 elseif (@$botones['filtrar']) {
231 $filtro =& $FORM->getElement('filtro');
232 $PERFILES = SAMURAI_Perfil::getArrayPerfiles($DB, $filtro->getValue());
234 $perfiles->addOption('--', '--');
235 $perfiles->loadArray($PERFILES);
237 // VALIDO EL FORMULARIO {{{
238 if ($FORM->validate()) {
239 if (@$botones['continuar']) { //Ya selecciono un nombre para el perfil
241 $tmp = $perfiles->getSelected();
242 if ((!@$descripcion->getvalue() && $tmp['0'] == '--') || ($descripcion->getvalue() && $tmp['0'] != '--')) {
243 $res = new PEAR_Error("Debe seleccionar un perfil del combo o ingresar un nombre en la casilla correspondiente.<br>
244 Solo una de las dos opciones.");
245 @$descripcion->setValue('');
247 elseif ($tmp['0'] != '--') {
248 //verificar que el sistema no tenga una asociacion con ese perfil
249 if (SAMURAI_Perfil::existeAsociacion($DB, $tmp['0'], $id_sistema)) {
250 $res = new PEAR_Error("El sistema ya tiene asociado el perfil seleccionado,
251 modifique sus permisos desde la seccion perfiles.");
254 header('Location: '.$_SERVER['PHP_SELF'].'?samurai_perfiles=abm&id_perfil='.$tmp['0']);
257 elseif ($descripcion->getValue()) {
258 //Verificar que no exista un perfil con la misma descripcion
259 //Reduzco los blancos
260 $temp = $descripcion->getValue();
261 $tt = split (' ', $temp);
263 foreach ($tt as $t) {
270 if (SAMURAI_Perfil::existePerfil($DB, $rta)) {
271 $res = new PEAR_Error("Ya existe un perfil con ese nombre, seleccionelo del combo.<br>
272 Recuerde que varios espacios se reduciran a uno solo
273 (Ej: Agregar Usuario -> Agregar Usuario)");
276 $temp = ereg_replace(' ' , '%20', $rta); //Cambio los espacios por %20 para que no chille el netscape
277 header('Location: '.$_SERVER['PHP_SELF'].'?samurai_perfiles=abm&desc_perfil='.$temp);
280 if (PEAR::isError($res)) {
281 $TABLA = new MECON_HTML_Tabla ('cellspacing=0');
282 $row = array ('<font color="red"><b>'.$res->getMessage().'</b></font>');
283 $TABLA->addRow($row,'align=left');
288 //AGREGO LA INFO AL MARCO {{{
289 //AGREGO LOS DATOS A LAS TABLAS {{{
290 $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
291 $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
292 $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
293 $TABLA3->addRow($row,'align=left');
295 $MARCO->addBodyContent($TABLA3);
297 $MARCO->addBodyContent($TABLA);
299 $MARCO->addBodyContent($FORM);
304 elseif ($OPCION == 'abm') {
305 //VEO SI PUEDE ACCEDER{{{
306 $SAMURAI_PERM->chequear(SAMURAI_PERM_PERFIL_ALTA,SAMURAI_PERM_PERFIL_BAJA,SAMURAI_PERM_PERFIL_MODIF);
308 //CREO LOS OBJETO NECESARIOS {{{
309 if (@$_GET['id_perfil']) {
310 $id_perfil = $_GET['id_perfil'];
312 elseif (@$_POST['id_perfil']) {
313 $id_perfil = $_POST['id_perfil'];
318 $FORM =& new MECON_HTML_QuickForm ('samurai_perfiles','post',$_SERVER['PHP_SELF']);
319 $SISTEMA =& new SAMURAI_Sistema ($DB, $id_sistema);
320 $PERFIL =& new SAMURAI_Perfil ($DB, $id_perfil, $id_sistema);
322 if ($PERFIL->getResponsable()) {
323 $responsable = $PERFIL->getResponsable();
326 $responsable = $_SESSION['usuario'];
329 if (!@$_GET['id_perfil']) {
330 if (@$_GET['desc_perfil']) {
331 $PERFIL->setDescripcion(@$_GET['desc_perfil']);
334 $PERFIL->setDescripcion(@$_POST['desc_ant']);
337 $descripcion = $PERFIL->getDescripcion();
339 //OBTENGO LOS PERMISOS DEL SISTEMA {{{
340 $ASOCIACIONES = $SISTEMA->getAsociaciones();
341 $PERMISOS = array ();
342 foreach ($ASOCIACIONES as $as) {
343 $clave = $as['id'].'##'.$as['obs'];
344 $texto = ($as['obs'] != '') ? $as['desc'].' - '.$as['obs']: $as['desc'];
345 $PERMISOS[$clave] = $texto;
348 //AGREGO LOS ELEMENTOS DEL FORM {{{
350 $FORM->addElement ('hidden', 'samurai_accion', 'abm');
351 $FORM->addElement ('header', 'cabecera', 'ABM Perfiles');
352 $FORM->addElement ('hidden', 'id_perfil', $id_perfil);
353 $FORM->addElement ('hidden', 'desc_ant' , $descripcion);
354 $FORM->addElement ('static', 'desc_perfil', 'Descripcion', $descripcion);
355 $FORM->addElement ('select', 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'true'));
356 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
357 $FORM->addElement ('select', 'tipo_perfil', 'Tipo Perfil', array('E' => 'Externo', 'I' => 'Interno', 'D' => 'Dios'), array ('size' => '1'));
359 $FORM->addElement ('hidden', 'responsable', $responsable);
360 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
361 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location=\''.$_SERVER['PHP_SELF'].'\';return false;'));
362 $FORM->addGroup($group,'botones');
365 $ERROR = new MECON_HTML_Error('El sistema no posee permisos asociados.');
368 //AGREGO LAS REGLAS DE VALIDACION {{{
369 $FORM->addRule ('permisos', 'Se debe seleccionar al menos un permiso', 'required');
371 //CARGO LOS DATOS SI YA EXISTEN EN BASE {{{
372 if (isset($_GET['accion']) && $_GET['accion'] != '') {
374 $id_perfil =& $FORM->getElement ('id_perfil' );
375 $desc_perfil =& $FORM->getElement ('desc_perfil');
376 $permisos =& $FORM->getElement ('permisos' );
378 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
379 $tipo_perfil =& $FORM->getElement ('tipo_perfil');
381 $responsable =& $FORM->getElement ('responsable');
382 $group =& $FORM->getElement ('botones' );
383 $group =& $group->getElements('aceptar' );
384 $aceptar =& $group[0];
386 $permisos->setSelected($PERFIL->getPermisos());
388 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
389 $tipo_perfil->setSelected($PERFIL->getTipo());
392 if ($PERFIL->getResponsable() != '') {
393 $responsable->setValue($PERFIL->getResponsable());
396 //Modifico el valor del boton
397 $aceptar->setValue('Modificar');
399 //ELIMINACION -> modifico el valor del boton
400 if ($_GET['accion'] == 'e') {
401 $aceptar->setValue('Eliminar');
402 $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
407 //VALIDO EL FORMULARIO {{{
408 if ($FORM->validate()) {
409 // VEO SI SE CANCELO {{{
410 $botones = $FORM->getSubmitValue('botones');
411 if (@$botones['cancelar']) {
412 header('Location: '.$_SERVER['PHP_SELF']);
416 $samurai_accion =& $FORM->getElement('samurai_accion');
417 $samurai_accion->setValue('listado');
418 $id_perfil =& $FORM->getElement ('id_perfil' );
419 $desc_perfil =& $FORM->getElement ('desc_perfil');
420 $permisos =& $FORM->getElement ('permisos' );
422 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
423 $tipo_perfil =& $FORM->getElement ('tipo_perfil');
424 $tipo_perfil_tmp = $tipo_perfil->getSelected();
426 $responsable =& $FORM->getElement ('responsable');
427 $group =& $FORM->getElement ('botones' );
428 $group =& $group->getElements('aceptar' );
429 $aceptar =& $group[0];
431 $PERFIL->setDescripcion($desc_perfil->_text );
432 $PERFIL->setResponsable($responsable->getValue());
433 $PERFIL->setPermisos ($permisos->getSelected()); //Le asigno al perfil los permisos seleccionados
435 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
436 $PERFIL->setTipo($tipo_perfil_tmp['0']);
439 //Grabo y verifico si se produjo algun error
440 $res = $PERFIL->guardarDatos($aceptar->getValue());
442 if (PEAR::isError($res)) {
443 $ERROR = new MECON_HTML_Error($res->getMessage());
444 if ($aceptar->getValue() == 'Eliminar') {
450 header('Location: '.$_SERVER ['PHP_SELF'].'/');
456 //DIBUJO LA PAGINA {{{
457 $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
458 $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
459 $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
460 $TABLA3->addRow($row,'align=left');
462 $MARCO->addBodyContent($TABLA3);
464 $MARCO->addBodyContent($ERROR);
466 $MARCO->addBodyContent($FORM);