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','Descripción');
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>Solo una de las dos opciones.");
244 @$descripcion->setValue('');
246 elseif ($tmp['0'] != '--') {
247 //verificar que el sistema no tenga una asociacion con ese perfil
248 if (SAMURAI_Perfil::existeAsociacion($DB, $tmp['0'], $id_sistema)) {
249 $res = new PEAR_Error("El sistema ya tiene asociado el perfil seleccionado, modifique sus permisos desde la seccion perfiles.");
252 header('Location: '.$_SERVER['PHP_SELF'].'?samurai_perfiles=abm&id_perfil='.$tmp['0']);
255 elseif ($descripcion->getValue()) {
256 //Verificar que no exista un perfil con la misma descripcion
257 //Reduzco los blancos
258 $temp = $descripcion->getValue();
259 $tt = split (' ', $temp);
261 foreach ($tt as $t) {
268 if (SAMURAI_Perfil::existePerfil($DB, $rta)) {
269 $res = new PEAR_Error("Ya existe un perfil con ese nombre, seleccionelo del combo.<br> Recuerde que varios espacios se reduciran a uno solo (Ej: Agregar Usuario -> Agregar Usuario)");
272 $temp = ereg_replace(' ' , '%20', $rta); //Cambio los espacios por %20 para que no chille el netscape
273 header('Location: '.$_SERVER['PHP_SELF'].'?samurai_perfiles=abm&desc_perfil='.$temp);
276 if (PEAR::isError($res)) {
277 $TABLA = new MECON_HTML_Tabla ('cellspacing=0');
278 $row = array ('<font color="red"><b>'.$res->getMessage().'</b></font>');
279 $TABLA->addRow($row,'align=left');
284 //AGREGO LA INFO AL MARCO {{{
285 //AGREGO LOS DATOS A LAS TABLAS {{{
286 $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
287 $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
288 $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
289 $TABLA3->addRow($row,'align=left');
291 $MARCO->addBodyContent($TABLA3);
293 $MARCO->addBodyContent($TABLA);
295 $MARCO->addBodyContent($FORM);
300 elseif ($OPCION == 'abm') {
301 //VEO SI PUEDE ACCEDER{{{
302 $SAMURAI_PERM->chequear(SAMURAI_PERM_PERFIL_ALTA,SAMURAI_PERM_PERFIL_BAJA,SAMURAI_PERM_PERFIL_MODIF);
304 //CREO LOS OBJETO NECESARIOS {{{
305 if (@$_GET['id_perfil']) {
306 $id_perfil = $_GET['id_perfil'];
308 elseif (@$_POST['id_perfil']) {
309 $id_perfil = $_POST['id_perfil'];
314 $FORM =& new MECON_HTML_QuickForm ('samurai_perfiles','post',$_SERVER['PHP_SELF']);
315 $SISTEMA =& new SAMURAI_Sistema ($DB, $id_sistema);
316 $PERFIL =& new SAMURAI_Perfil ($DB, $id_perfil, $id_sistema);
318 if ($PERFIL->getResponsable()) {
319 $responsable = $PERFIL->getResponsable();
322 $responsable = $_SESSION['usuario'];
325 if (!@$_GET['id_perfil']) {
326 if (@$_GET['desc_perfil']) {
327 $PERFIL->setDescripcion(@$_GET['desc_perfil']);
330 $PERFIL->setDescripcion(@$_POST['desc_ant']);
333 $descripcion = $PERFIL->getDescripcion();
335 //OBTENGO LOS PERMISOS DEL SISTEMA {{{
336 $ASOCIACIONES = $SISTEMA->getAsociaciones();
337 $PERMISOS = array ();
338 foreach ($ASOCIACIONES as $as) {
339 $clave = $as['id'].'##'.$as['obs'];
340 $texto = ($as['obs'] != '') ? $as['desc'].' - '.$as['obs']: $as['desc'];
341 $PERMISOS[$clave] = $texto;
344 //AGREGO LOS ELEMENTOS DEL FORM {{{
346 $FORM->addElement ('hidden', 'samurai_accion', 'abm');
347 $FORM->addElement ('header', 'cabecera', 'ABM Perfiles');
348 $FORM->addElement ('hidden', 'id_perfil', $id_perfil);
349 $FORM->addElement ('hidden', 'desc_ant' , $descripcion);
350 $FORM->addElement ('static', 'desc_perfil', 'Descripción', $descripcion);
351 $FORM->addElement ('select', 'permisos' , 'Permisos' , $PERMISOS, array('size' => '5', 'multiple' => 'true'));
352 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
353 $FORM->addElement ('select', 'tipo_perfil', 'Tipo Perfil', array('E' => 'Externo', 'I' => 'Interno', 'D' => 'Dios'), array ('size' => '1'));
355 $FORM->addElement ('hidden', 'responsable', $responsable);
356 $group[] = HTML_QuickForm::createElement('submit', 'aceptar' , 'Grabar');
357 $group[] = HTML_QuickForm::createElement('submit', 'cancelar', 'Cancelar', array ('onClick' => 'javascript:window.location=\''.$_SERVER['PHP_SELF'].'\';return false;'));
358 $FORM->addGroup($group,'botones');
361 $ERROR = new MECON_HTML_Error('El sistema no posee permisos asociados.');
364 //AGREGO LAS REGLAS DE VALIDACION {{{
365 $FORM->addRule ('permisos', 'Se debe seleccionar al menos un permiso', 'required');
367 //CARGO LOS DATOS SI YA EXISTEN EN BASE {{{
368 if (isset($_GET['accion']) && $_GET['accion'] != '') {
370 $id_perfil =& $FORM->getElement ('id_perfil' );
371 $desc_perfil =& $FORM->getElement ('desc_perfil');
372 $permisos =& $FORM->getElement ('permisos' );
374 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
375 $tipo_perfil =& $FORM->getElement ('tipo_perfil');
377 $responsable =& $FORM->getElement ('responsable');
378 $group =& $FORM->getElement ('botones' );
379 $group =& $group->getElements('aceptar' );
380 $aceptar =& $group[0];
382 $permisos->setSelected($PERFIL->getPermisos());
384 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
385 $tipo_perfil->setSelected($PERFIL->getTipo());
388 if ($PERFIL->getResponsable() != '') {
389 $responsable->setValue($PERFIL->getResponsable());
392 //Modifico el valor del boton
393 $aceptar->setValue('Modificar');
395 //ELIMINACION -> modifico el valor del boton
396 if ($_GET['accion'] == 'e') {
397 $aceptar->setValue('Eliminar');
398 $aceptar->updateAttributes(array ('onClick' => 'javascript:if (confirm(\'¿Esta Seguro?\')) return true;return false;'));
403 //VALIDO EL FORMULARIO {{{
404 if ($FORM->validate()) {
405 // VEO SI SE CANCELO {{{
406 $botones = $FORM->getSubmitValue('botones');
407 if (@$botones['cancelar']) {
408 header('Location: '.$_SERVER['PHP_SELF']);
412 $samurai_accion =& $FORM->getElement('samurai_accion');
413 $samurai_accion->setValue('listado');
414 $id_perfil =& $FORM->getElement ('id_perfil' );
415 $desc_perfil =& $FORM->getElement ('desc_perfil');
416 $permisos =& $FORM->getElement ('permisos' );
418 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
419 $tipo_perfil =& $FORM->getElement ('tipo_perfil');
420 $tipo_perfil_tmp = $tipo_perfil->getSelected();
422 $responsable =& $FORM->getElement ('responsable');
423 $group =& $FORM->getElement ('botones' );
424 $group =& $group->getElements('aceptar' );
425 $aceptar =& $group[0];
427 $PERFIL->setDescripcion($desc_perfil->_text );
428 $PERFIL->setResponsable($responsable->getValue());
429 $PERFIL->setPermisos ($permisos->getSelected()); //Le asigno al perfil los permisos seleccionados
431 if ($SAMURAI_PERM->tiene(SAMURAI_PERM_PERFIL_TIPO)) {
432 $PERFIL->setTipo($tipo_perfil_tmp['0']);
435 //Grabo y verifico si se produjo algun error
436 $res = $PERFIL->guardarDatos($aceptar->getValue());
438 if (PEAR::isError($res)) {
439 $ERROR = new MECON_HTML_Error($res->getMessage());
440 if ($aceptar->getValue() == 'Eliminar') {
446 header('Location: '.$_SERVER ['PHP_SELF'].'/');
452 //DIBUJO LA PAGINA {{{
453 $imagen = new MECON_HTML_Image('/MECON/images/vinetas_flecha_doble.gif');
454 $row = array ($imagen->toHtml().' <b>SISTEMA: '.$SISTEMA->getNombre().'</b>');
455 $TABLA3 = new MECON_HTML_Tabla ('cellspacing=0');
456 $TABLA3->addRow($row,'align=left');
458 $MARCO->addBodyContent($TABLA3);
460 $MARCO->addBodyContent($ERROR);
462 $MARCO->addBodyContent($FORM);