2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
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: Tue May 27 11:20:04 2003
17 // | Author: Martin Marrese - Myrna Degano <mmarre@mecon.gov.ar - mdegan@mecon.gov.ar>
18 // +----------------------------------------------------------------------+
27 #require_once 'PEAR.php';
29 // +X2C Class 208 :SAMURAI_Perfil
31 * Clase para el manejo de los perfies.
35 class SAMURAI_Perfil {
37 * Identificador del perfil.
45 * Descripcion del perfil.
47 * @var string $descripcion
53 * Tipo de perfil. E = Externo. I = Interno. D = Dios.
69 * Responsable de las ultimas modificaciones
71 * @var string $responsable
77 * Array con los permisos asignados al perfil. Solo se cargan cuando se esta trabajando con el abm puesto que varian segun cada sistema.
79 * @var array(int) $permisos
119 function getDescripcion()
121 return $this->_descripcion;
126 * @param string $descripcion Descripcion.
131 function setDescripcion($descripcion)
133 $this->_descripcion = $descripcion;
149 * @param string $tipo Tipo.
154 function setTipo($tipo)
156 $this->_tipo = $tipo;
165 function getResponsable()
167 return $this->_responsable;
172 * @param string $responsable Responsable.
177 function setResponsable($responsable)
179 $this->_responsable = $responsable;
188 function getPermisos()
190 return $this->_permisos;
195 * @param array(int) $permisos Permisos.
200 function setPermisos($permisos)
202 $this->_permisos = $permisos;
207 // +X2C Operation 229
209 * Constructor. Si recibe un identificador como parametro, busca la informacion en la base.
211 * @param SAMURAI_DB &$db Objeto conexion
212 * @param int $id Identificador del perfil.
213 * @param int $idSistema Identificador del sistema en el que se esta trabajando
218 function SAMURAI_Perfil(&$db, $id = null, $idSistema = null) // ~X2C
223 $this->_idSistema = $idSistema;
224 $this->_obtenerDatosDb();
229 $this->_descripcion = null;
231 $this->_permisos = null;
232 $this->_idSistema = null;
237 // +X2C Operation 322
239 * Obtiene los datos de la base de datos
244 function _obtenerDatosDb() // ~X2C
246 $sql = parse_ini_file(dirname(__FILE__) . '/Perfil/consultas.ini', true);
247 $tmp = $sql['obtener_datos_perfil'].$sql['obtener_datos_perfil2'];
248 $dbh = $this->_db->prepare($tmp);
249 $tmp = array ($this->getId());
250 $res = $this->_db->execute($dbh,$tmp);
251 if ($re = $res->fetchRow(DB_FETCHMODE_ASSOC)) {
252 if (isset($re['desc_perfil'])) {
253 $this->setDescripcion($re['desc_perfil']);
256 $this->setDescripcion();
258 if (isset($re['responsable'])) {
259 $this->setResponsable($re['responsable']);
262 $this->setResponsable();
265 //OBTENGO EL TIPO DE PERFIL
266 $tmp = $sql['verificar_asociacion'];
267 $dbh = $this->_db->prepare($tmp);
268 $tmp = array ($this->getId(), $this->_idSistema);
269 $res = $this->_db->execute($dbh,$tmp);
270 $re = $res->fetchrow(DB_FETCHMODE_ASSOC);
271 $this->setTipo($re['tipo_perfil']);
273 //OBTENGO LOS PERMISOS QUE TIENE ASIGNADO EL PERFIL DESDE PERM_PERFIL_SIST
274 $tmp = $sql['obtener_permisos'];
275 $dbh = $this->_db->prepare($tmp);
276 $tmp = array ($this->getId(), $this->_idSistema);
277 $res = $this->_db->execute($dbh,$tmp);
279 while ($re = $res->fetchrow(DB_FETCHMODE_ASSOC)) {
280 array_push($rta,$re['id_permiso'].'##'.$re['observaciones']);
282 $this->setPermisos($rta);
286 // +X2C Operation 323
288 * Redirecciona segun la accion correspondiente
290 * @param string $accion Representa la accion a desarrollar
295 function guardarDatos($accion = grabar) // ~X2C
297 $accion = strtolower($accion);
300 $res = $this->_grabarDb();
303 $res = $this->_modificarDb();
306 $res = $this->_borrarDb();
313 // +X2C Operation 324
315 * Graba la informacion del perfil en base
320 function _grabarDb() // ~X2C
322 //Obtengo el id del perfil de ser necesario
324 if (!$this->getId()) {
325 //No existe el perfil. Lo cargo por primera vez.
326 $idPerfil = $this->_db->nextId('perfil');
327 $this->setId($idPerfil);
331 //GRABO EN PERM_PERFIL_SIST
332 $res = $this->_guardarPermisos();
333 if (PEAR::isError($res)) {
340 'id_perfil' => $idPerfil,
341 'desc_perfil' => $this->getDescripcion(),
342 'responsable' => $this->getResponsable(),
344 $res = $this->_db->autoExecute('perfil', $datos, DB_AUTOQUERY_INSERT);
345 if (PEAR::isError($res)) {
349 //GRABO EN PERFIL_SIST
350 $datos = array ('id_perfil' => $this->getId(),
351 'id_sistema' => $this->_idSistema,
352 'tipo_perfil' => $this->getTipo(),
353 'responsable' => $this->getResponsable(),
355 $res = $this->_db->autoExecute('perfil_sist', $datos, DB_AUTOQUERY_INSERT);
359 // +X2C Operation 325
361 * Borra la informacion del perfil de la base
366 function _borrarDb() // ~X2C
368 $sql = parse_ini_file(dirname(__FILE__) . '/Perfil/consultas.ini', true);
369 //Verifico en perfil_sist_usuario
370 $tmp = $sql['verif_perfil_sist_usuario'];
371 $dbh = $this->_db->prepare($tmp);
372 $datos = array ($this->getId(), $this->_idSistema);
373 $res = $this->_db->execute($dbh, $datos);
374 if (($re = $res->fetchRow(DB_FETCHMODE_ASSOC)) && !$re['cuenta'] == 0) {
375 return new PEAR_Error("Hay usuarios asociados al perfil seleccionado");
377 //Borro perm_perfil_sist
378 $res = $this->_borrarPermisos();
379 if (PEAR::isError($res)) {
383 $tmp = $sql['borrar_perfil_sist'];
384 $dbh = $this->_db->prepare($tmp);
385 $datos = array ($this->getId(), $this->_idSistema);
386 $res = $this->_db->execute($dbh, $datos);
387 if (PEAR::isError($res)) {
390 //Verifico en perfil_sist (Perfil asociado a otros sistemas)
391 $tmp = $sql['verif_perfil_sist'];
392 $dbh = $this->_db->prepare($tmp);
393 $datos = array ($this->getId());
394 $res = $this->_db->execute($dbh, $datos);
395 if (PEAR::isError($res)) {
398 if (($re = $res->fetchRow(DB_FETCHMODE_ASSOC)) && $re['cuenta'] == 0) {
400 $tmp = $sql['borrar_perfil'];
401 $dbh = $this->_db->prepare($tmp);
402 $datos = array ($this->getId());
403 $res = $this->_db->execute($dbh, $datos);
404 if (PEAR::isError($res)) {
411 // +X2C Operation 326
416 function _modificarDb() // ~X2C
418 //Modifico la tabla perfil_sist
420 'tipo_perfil' => $this->getTipo(),
421 'responsable' => $this->getResponsable(),
423 $res = $this->_db->autoExecute('perfil_sist', $datos,
424 DB_AUTOQUERY_UPDATE, 'id_perfil ='.$this->getId().' AND
425 id_sistema='.$this->_idSistema);
426 if (PEAR::isError($res)) {
430 //VERIFICO QUE NO HAYA UN PERFIL CON LOS MISMOS PERMISOS YA ASIGNADO AL SISTEMA
431 $res = $this->_verifPermisos();
432 if (PEAR::isError($res)) {
435 //Modifico la tabla perm_perfil_sist
436 $res = $this->_borrarPermisos();
437 if (PEAR::isError($res)) {
440 return $this->_guardarPermisos();
444 // +X2C Operation 338
446 * Devuleve un array con los identificadores de todos los perfiles.
448 * @param SAMURAI_DB &$db Base de Datos
449 * @param string $filtro Fltro por descripcion del perfil
450 * @param int $id_sistema Identificador del sistema
456 function _getIdPerfiles(&$db, $filtro = null, $id_sistema = null) // ~X2C
458 //OBTENGO LOS ID DE LA BASE
460 $sql = parse_ini_file(dirname(__FILE__) . '/Perfil/consultas.ini', true);
461 $consulta = $sql['obtener_id_perfiles'];
463 $consulta.= $sql['obtener_id_perfiles3'];
465 if ($filtro) { //Verifico si se paso un filtro
466 $tmp2 = $consulta.$sql['obtener_id_perfiles2'];
467 //Reemplazo el filtro por ##?##
468 $consulta = ereg_replace ('##FILTRO##', $filtro, $tmp2);
470 $consulta.= $sql['obtener_id_perfiles4'];
471 $dbh = $db->prepare($consulta);
473 $tmp[] = $id_sistema;
474 $res = $db->execute($dbh, $tmp);
477 $res = $db->execute($dbh);
479 while ($re = $res->fetchrow(DB_FETCHMODE_ASSOC)) {
480 array_push($rta,$re['id_perfil']);
487 // +X2C Operation 339
489 * @param SAMURAI_DB &$db Base de datos
490 * @param string $filtro Filtro por nombre del perfil
491 * @param int $id_sistema Identificador del sistema
493 * @return array(Perfil)
497 function getPerfiles(&$db, $filtro = null, $id_sistema = null) // ~X2C
500 foreach (SAMURAI_Perfil::_getIdPerfiles($db, $filtro, $id_sistema) as $id) {
501 $tmp = new SAMURAI_Perfil($db,$id, $id_sistema);
502 array_push($rta, $tmp);
508 // +X2C Operation 356
510 * Devuelve la informacion de los perfiles en un array.
512 * @param SAMURAI_DB $db Base de Datos
513 * @param string $filtro Filtro por descripcion del perfil
519 function getArrayPerfiles($db, $filtro = null) // ~X2C
521 //FORECHEO LO QUE ME DEVUELVA GET PERMISOS
523 foreach (SAMURAI_Perfil::getPerfiles($db, $filtro) as $perfil) {
524 $rta[$perfil->getId()] = $perfil->getDescripcion();
530 // +X2C Operation 358
532 * Valida la existencia de un perfil con la descripcion que se pasa por parametro. Devuelve true si existe y false si no existe.
534 * @param SAMURAI_DB $db Base de Datos
535 * @param string $descripcion Descripcion a comparar
541 function existePerfil($db, $descripcion) // ~X2C
543 $sql = parse_ini_file(dirname(__FILE__) . '/Perfil/consultas.ini', true);
544 $tmp = $sql['obtener_datos_perfil'].$sql['obtener_datos_perfil3'];
545 $dbh = $db->prepare($tmp);
546 $tmp = array ($descripcion);
547 $res = $db->execute($dbh,$tmp);
548 $re = $res->fetchRow();
558 // +X2C Operation 360
560 * Valida la existencia de una asociacion entre el perfil y el sistema seleccionado. Devuelve true si existe y false en caso contraro.
562 * @param SAMURAI_DB $db Base de Datos
563 * @param int $id_perfil Identificador del perfil con el cual hacer la comparacion
564 * @param int $id_sistema Identificador del sistema con el cual hacer la compararcion
570 function existeAsociacion($db, $id_perfil, $id_sistema) // ~X2C
572 $sql = parse_ini_file(dirname(__FILE__) . '/Perfil/consultas.ini', true);
573 $tmp = $sql['verificar_asociacion'];
574 $dbh = $db->prepare($tmp);
575 $tmp = array ($id_perfil, $id_sistema);
576 $res = $db->execute($dbh,$tmp);
577 $re = $res->fetchRow();
587 // +X2C Operation 362
589 * Se encarga de guardar la relacion entre perfiles - permisos - sistemas
594 function _guardarPermisos() // ~X2C
596 $sql = parse_ini_file(dirname(__FILE__) . '/Perfil/consultas.ini', true);
597 //VERIFICO QUE NO HAYA UN PERFIL CON LOS MISMOS PERMISOS YA ASIGNADO AL SISTEMA
598 $res = $this->_verifPermisos();
599 if (PEAR::isError($res)) {
603 //GRABO EN PERM_PERFIL_SIST
604 $datos = array ('id_permiso', 'id_perfil', 'id_sistema', 'observaciones', 'responsable');
605 $re = $this->_db->autoPrepare('perm_perfil_sist', $datos, DB_AUTOQUERY_INSERT);
606 foreach ($this->getPermisos() as $permiso) {
607 list($id, $obs) = split ('##',$permiso);
608 $datos = array ($id, $this->getId(), $this->_idSistema, $obs, $this->getResponsable());
609 $res = $this->_db->execute($re, $datos);
610 if (PEAR::isError($res)) {
617 // +X2C Operation 363
619 * Borra la asociacion de un perfil de un sistema con sus permisos
624 function _borrarPermisos() // ~X2C
626 $sql = parse_ini_file(dirname(__FILE__) . '/Perfil/consultas.ini', true);
627 $tmp = $sql['borrar_permisos'];
628 $dbh = $this->_db->prepare($tmp);
629 $tmp = array ($this->getId(), $this->_idSistema);
630 return $this->_db->execute($dbh,$tmp);
634 // +X2C Operation 376
636 * Verifica si se puede insertar
641 function _verifPermisos() // ~X2C
643 //VERIFICO QUE NO HAYA UN PERFIL CON LOS MISMOS PERMISOS YA ASIGNADO AL SISTEMA
644 $sql = parse_ini_file(dirname(__FILE__) . '/Perfil/consultas.ini', true);
645 $tmp = $sql['verif_perm_perfil_sist'];
646 $dbh = $this->_db->prepare($tmp);
647 $tmp = array ($this->_idSistema);
648 $res = $this->_db->execute($dbh,$tmp);
650 while ($re = $res->fetchRow(DB_FETCHMODE_ASSOC)) {
651 $perm[$re['id_perfil']][] = $re['id_permiso'].'##'.$re['observaciones'];
653 foreach ($perm as $key => $p) {
654 $rta1 = array_diff($p, $this->getPermisos());
655 $rta2 = array_diff($this->getPermisos(), $p);
656 if (!$rta1 && !$rta2) {
657 $perf = new SAMURAI_Perfil($this->_db, $key, $this->_idSistema);
658 if ($perf->getDescripcion() != $this->getDescripcion()) {
659 return new PEAR_Error("El perfil \"".$perf->getDescripcion()."\" contiene los mismos permisos.");
667 } // -X2C Class :SAMURAI_Perfil