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';
28 require_once 'SAMURAI/DB.php';
29 require_once 'Date.php';
31 // +X2C Class 209 :SAMURAI_Sistema
33 * Clase para el manejo de los sistemas.
37 class SAMURAI_Sistema {
39 * Identificador del sistema.
55 * Descripcion del sistema.
57 * @var string $descripcion
60 var $_descripcion = null;
63 * Fecha en la cual se inicio el sistema.
65 * @var date $fecha_inicio
68 var $_fecha_inicio = null;
71 * Fecha en la cual se dio por terminado el desarrollo del sistema.
73 * @var date $fecha_fin
76 var $_fecha_fin = null;
79 * Fecha de implementacion del sistema.
81 * @var date $fecha_implementacion
84 var $_fecha_implementacion = null;
87 * Texto con los datos del o de los contacto/s en el area usuario.
89 * @var string $contacto
92 var $_contacto = null;
103 * Login del responsable de los ultimos cambios del sistema.
105 * @var string $responsable
108 var $_responsable = null;
111 * Array asociativo (id - descripcion) con los permisos asociados al sistema.
113 * @var array $permisos
116 var $_permisos = null;
119 * Array con los permisos asociados al sistema
121 * @var array $asociaciones
124 var $_asociaciones = null;
127 * indica si el sistema esta activo o no.
140 function getAsociaciones()
142 return $this->_asociaciones;
147 * @param array $asociaciones Asociaciones.
152 function setAsociaciones($asociaciones)
154 $this->_asociaciones = $asociaciones;
165 return $this->_estado;
170 * @param int $estado Estado.
175 function setEstado($estado)
177 $this->_estado = $estado;
182 // +X2C Operation 243
184 * Constructor. Si recibe como parametro el identificador busca en la DB los datos.
186 * @param SAMURAI_DB &$db Objeto Conexion
187 * @param int $id Identificador del sistema
192 function SAMURAI_Sistema(&$db, $id = null) // ~X2C
197 $this->_obtenerDatosDb();
202 // +X2C Operation 244
204 * Devuelve el identificador del sistema.
209 function getId() // ~X2C
215 // +X2C Operation 245
217 * Devuelve el nombre del sistema.
222 function getNombre() // ~X2C
224 return $this->_nombre;
228 // +X2C Operation 246
230 * Devuelve la descrpcion del sistema.
235 function getDescripcion() // ~X2C
237 return $this->_descripcion;
241 // +X2C Operation 247
243 * Devuelve la fecha de inicio del sistema.
248 function &getFechaInicio() // ~X2C
250 if ($this->_fecha_inicio) {
251 return new Date ($this->_fecha_inicio.' 00:00:00');
259 // +X2C Operation 248
261 * Devuelve la fecha de finalizacion del sistema.
266 function &getFechaFin() // ~X2C
268 if ($this->_fecha_fin) {
269 return new Date ($this->_fecha_fin.' 00:00:00');
277 // +X2C Operation 249
279 * Devuelve la fecha de implementacion del sistema.
284 function &getFechaImplementacion() // ~X2C
286 if ($this->_fecha_implementacion) {
287 return new Date ($this->_fecha_implementacion.' 00:00:00');
295 // +X2C Operation 250
297 * Devuelve el contacto del sistema.
302 function getContacto() // ~X2C
304 return $this->_contacto;
308 // +X2C Operation 251
310 * Setea el nombre del sistema.
312 * @param string $nombre Nombre del sistema.
317 function setNombre($nombre = null) // ~X2C
319 $this->_nombre = $nombre;
323 // +X2C Operation 252
325 * Setea la descripcion del sistema.
327 * @param string $descripcion Descripcion del sistema.
332 function setDescripcion($descripcion = null) // ~X2C
334 $this->_descripcion = $descripcion;
338 // +X2C Operation 253
340 * Setea la fecha de inicio del sistema.
342 * @param date $fecha Fecha de inicio del sistema
347 function setFechaInicio($fecha = null) // ~X2C
349 if ($fecha && $fecha != '0000-00-00') {
350 $this->_fecha_inicio = $fecha;
353 $this->_fecha_inicio = null;
358 // +X2C Operation 254
360 * Setea la fecha de finalizacion del sistema.
362 * @param date $fecha Fecha de finalizacion del sistema.
367 function setFechaFin($fecha = null) // ~X2C
369 if ($fecha && $fecha != '0000-00-00') {
370 $this->_fecha_fin = $fecha;
373 $this->_fecha_fin = null;
378 // +X2C Operation 255
380 * Setea la fecha de implementacion del sistema.
382 * @param date $fecha Fecha de implementacion del sistema.
387 function setFechaImplementacion($fecha = null) // ~X2C
389 if ($fecha && $fecha != '0000-00-00') {
390 $this->_fecha_implementacion = $fecha;
393 $this->_fecha_implementacion = null;
399 // +X2C Operation 256
401 * Setea el contacto del sistema.
403 * @param string $contacto Texto con la informacion del contacto.
408 function setContacto($contacto = null) // ~X2C
410 $this->_contacto = $contacto;
414 // +X2C Operation 263
416 * Obtiene los datos del sistema de la DB.
421 function _obtenerDatosDb() // ~X2C
423 $sql = parse_ini_file(dirname(__FILE__) . '/Sistema/consultas.ini', true);
424 $tmp = $sql['obtener_datos_sistema'].$sql['obtener_datos_sistema2'];
425 $dbh = $this->_db->prepare($tmp);
426 $tmp = array ($this->getId());
427 $res = $this->_db->execute($dbh,$tmp);
429 if ($re = $res->fetchRow(DB_FETCHMODE_ASSOC)) {
430 if (isset($re['nombre_sistema'])) {
431 $this->setNombre($re['nombre_sistema']);
433 if (isset($re['desc_sistema'])) {
434 $this->setDescripcion($re['desc_sistema']);
436 if (isset($re['fecha_inicio'])) {
437 $this->setFechaInicio($re['fecha_inicio']);
439 if (isset($re['fecha_fin'])) {
440 $this->setFechaFin($re['fecha_fin']);
442 if (isset($re['fecha_implementacion'])) {
443 $this->setFechaImplementacion($re['fecha_implementacion']);
445 if (isset($re['contacto'])) {
446 $this->setContacto($re['contacto']);
448 if (isset($re['responsable'])) {
449 $this->setResponsable($re['responsable']);
451 if (isset($re['estado'])) {
452 $this->setEstado($re['estado']);
455 $tmp = $sql['obtener_permisos'];
456 $tmp.= $sql['borrar_permisos2'];
457 $dbh = $this->_db->prepare($tmp);
458 $tmp = array ($this->getId(),'');
459 $res = $this->_db->execute($dbh,$tmp);
462 while ($re = $res->fetchRow(DB_FETCHMODE_ORDERED)) {
466 $this->_permisos = $tmp;
467 $tmp = $sql['obtener_permisos'];
468 $tmp.= $sql['obtener_permisos2'];
469 $dbh = $this->_db->prepare($tmp);
470 $tmp = array ($this->getId());
471 $res = $this->_db->execute($dbh,$tmp);
474 while ($re = $res->fetchRow(DB_FETCHMODE_ORDERED)) {
475 $tmp[$i]['id'] = $re['0'];
476 $tmp[$i]['obs'] = $re['1'];
477 $tmp[$i]['desc'] = $re['2'];
480 $this->_asociaciones = $tmp;
484 // +X2C Operation 288
486 * Guarda la informacion del sistema en la base.
488 * @param string $accion Accion a realizar. Grabar, modificar o eliminar
493 function guardarDatos($accion = grabar) // ~X2C
495 $accion = strtolower($accion);
498 $res = $this->_grabarDb();
501 $res = $this->_modificarDb();
504 $res = $this->_borrarDb();
511 // +X2C Operation 290
513 * Devuelve el login del responsable de los ultimos cambios
518 function getResponsable() // ~X2C
520 return $this->_responsable;
524 // +X2C Operation 291
526 * Setea el login del responsable de los ultimos cambios del sistema
528 * @param string $responsable String con el login del responsable del cambio
533 function setResponsable($responsable = null) // ~X2C
535 $this->_responsable = $responsable;
539 // +X2C Operation 301
541 * Devuelve un array asociativo con los identificadores de los permisos
546 function getIdPermisos() // ~X2C
548 return $this->_permisos;
552 // +X2C Operation 302
554 * Setea los permisos de un sistema
556 * @param int $permisos Array asociativo con los permisos
561 function setPermisos($permisos = null) // ~X2C
563 $this->_permisos = $permisos;
567 // +X2C Operation 303
572 function getMaxIdSistema() // ~X2C
574 $sql = parse_ini_file(dirname(__FILE__) . '/Sistema/consultas.ini', true);
575 $dbh = $this->_db->prepare($sql['obtener_max_id_sistemas']);
576 $res = $this->_db->execute($dbh);
577 $re = $res->fetchrow(DB_FETCHMODE_ASSOC);
579 return $re['id_sistema'];
583 // +X2C Operation 304
585 * Graba los datos en la Base de Datos
590 function _grabarDb() // ~X2C
592 $idSistema = $this->_db->nextId('sistema');
593 $fecha_inicio = $this->getFechaInicio();
594 $fecha_fin = $this->getFechaFin();
595 $fecha_implementacion = $this->getFechaImplementacion();
596 //USO SECUENCIAS Y AUTOEXECUTE
599 'id_sistema' => $idSistema,
600 'nombre_sistema' => $this->getNombre(),
601 'desc_sistema' => $this->getDescripcion(),
602 'fecha_inicio' => $fecha_inicio ? $fecha_inicio->format("%Y-%m-%d") : null,
603 'fecha_fin' => $fecha_fin ? $fecha_fin->format("%Y-%m-%d") : null,
604 'fecha_implementacion' => $fecha_implementacion ? $fecha_implementacion->format("%Y-%m-%d") : null,
605 'contacto' => $this->getContacto(),
606 'responsable' => $this->getResponsable(),
609 $res = $this->_db->autoExecute('samurai.sistema', $datos, DB_AUTOQUERY_INSERT);
611 if (PEAR::isError($res)) {
615 $res = $this->_grabarPermisosDb($idSistema);
616 if (PEAR::isError($res)) {
619 $this->_id = $idSistema;
623 // +X2C Operation 305
625 * Borra los datos de la base de datos
630 function _borrarDb() // ~X2C
632 $idSistema = $this->getId();
633 $responsable = $this->getResponsable();
634 //Cambio el estado al sistema
635 $datos = array( 'responsable' => $responsable,
638 $res = $this->_db->autoExecute('samurai.sistema', $datos, DB_AUTOQUERY_UPDATE, 'id_sistema = '.$idSistema);
639 if (PEAR::isError($res)) {
643 if ($idSistema == @$_SESSION['samurai']['id_sistema']){
644 $_SESSION['samurai']['id_sistema'] = '';
649 // +X2C Operation 306
651 * Modifica los datos en base
656 function _modificarDb() // ~X2C
658 //Grabo las modificaciones al sistema
659 $idSistema = $this->getId();
660 $fecha_inicio = $this->getFechaInicio();
661 $fecha_fin = $this->getFechaFin();
662 $fecha_implementacion = $this->getFechaImplementacion();
663 //USO SECUENCIAS Y AUTOEXECUTE
666 'nombre_sistema' => $this->getNombre(),
667 'desc_sistema' => $this->getDescripcion(),
668 'fecha_inicio' => $fecha_inicio ? $fecha_inicio->format("%Y-%m-%d") : null,
669 'fecha_fin' => $fecha_fin ? $fecha_fin->format("%Y-%m-%d") : null,
670 'fecha_implementacion' => $fecha_implementacion ? $fecha_implementacion->format("%Y-%m-%d") : null,
671 'contacto' => $this->getContacto(),
672 'responsable' => $this->getResponsable(),
674 $res = $this->_db->autoExecute('samurai.sistema', $datos, DB_AUTOQUERY_UPDATE, 'id_sistema = '.$idSistema);
675 if (PEAR::isError($res)) {
678 //Borro los permisos que no tengan observaciones
679 $res = $this->_borrarPermisosDb($idSistema, '');
680 if (PEAR::isError($res)) {
683 //Grabo los permisos que selecciono
684 $res = $this->_grabarPermisosDb($idSistema);
685 if (PEAR::isError($res)) {
692 // +X2C Operation 308
694 * Graba los permisos del sistema en perm_sist
696 * @param int $idSistema Identificador del sistema
701 function _grabarPermisosDb($idSistema) // ~X2C
703 $datos = array ('id_permiso','id_sistema','responsable');
704 $re = $this->_db->autoPrepare('samurai.perm_sist', $datos, DB_AUTOQUERY_INSERT);
705 if (isset($this->_permisos)) {
706 foreach ($this->_permisos as $permiso) {
707 $datos = array ($permiso, $idSistema, $this->getResponsable());
708 $res = $this->_db->execute($re, $datos);
709 if (PEAR::isError($res)) {
718 // +X2C Operation 309
720 * Borra los permisos que tenga asociado el sistema segun el criterio de observaciones
722 * @param int $idSistema Identificador del sistema
723 * @param bool $observaciones Null u observacion de la asociacion a borrar
724 * @param int $idPermiso Identificador del permiso a borrar
729 function _borrarPermisosDb($idSistema, $observaciones = null, $idPermiso = null) // ~X2C
731 $sql = parse_ini_file(dirname(__FILE__) . '/Sistema/consultas.ini', true);
732 $datos[] = $idSistema;
733 $tmp = $sql['borrar_permisos'];
734 if (isset($observaciones)) {
735 $tmp.= $sql['borrar_permisos2'];
736 $datos[] = $observaciones;
738 if (isset($idPermiso)) {
739 $tmp.= $sql['borrar_permisos3'];
740 $datos[] = $idPermiso;
742 $dbh = $this->_db->prepare($tmp);
743 $res = $this->_db->execute($dbh, $datos);
744 if (PEAR::isError($res)) {
751 // +X2C Operation 312
753 * Guarda en base las nuevas asociaciones que se van cargando y actualiza los datos del sistema.
755 * @param int $idPermiso Identificador del Permiso
756 * @param string $observacion Observacion a agregar
761 function guardarAsociacion($idPermiso, $observacion = '') // ~X2C
763 if (!$this->_existeAsociacion($idPermiso, $observacion)) {
764 //Guardo la asociacion
767 'id_permiso' => $idPermiso,
768 'id_sistema' => $this->getId(),
769 'observaciones' => $observacion,
770 'responsable' => $this->getResponsable(),
772 $res = $this->_db->autoExecute('samurai.perm_sist', $datos, DB_AUTOQUERY_INSERT);
773 //Recargo los datos del sistema
774 $this->_obtenerDatosDb();
778 return new PEAR_Error('La Asociacion ya existe.');
783 // +X2C Operation 313
785 * Elimina una asociacion de la base, y actualiza los datos del sistema.
787 * @param int $idPermiso Identificador del permiso a borrar
788 * @param string $observacion Observacion de la asociacion a borrar (Puede ser vacia)
793 function eliminarAsociacion($idPermiso, $observacion = '') // ~X2C
795 //TODO Arreglar el asco este
796 $sql = parse_ini_file(dirname(__FILE__) . '/Sistema/consultas.ini', true);
798 //Obtengo los id de los perfiles del permiso en el sistema
799 $tmp = $sql['ea_obt_idperfil'];
800 $dbh = $this->_db->prepare($tmp);
801 $res = $this->_db->execute($dbh, array ($idPermiso, $observacion, $this->getId()));
802 if (PEAR::isError($res)) {
807 while ($re = $res->fetchRow(DB_FETCHMODE_ORDERED)) {
812 //Borro el permiso de los perfiles del sistema
813 $tmp = $sql['ea_del_perm_perfil_sist'];
814 $dbh = $this->_db->prepare($tmp);
815 $res = $this->_db->execute($dbh, array ($idPermiso, $observacion, $this->getId()));
816 if (PEAR::isError($res)) {
819 //Verifico si era el unico permiso de cada uno de los perfiles en los que estaba asignado
821 foreach ($PERFILES as $perfil) {
823 $tmp = $sql['ea_obt_cuenta_perfil'];
824 $dbh = $this->_db->prepare($tmp);
825 $res = $this->_db->execute($dbh, array ($perfil, $this->getId()));
826 if (($re = $res->fetchRow(DB_FETCHMODE_ASSOC)) && $re['cuenta'] == 0) {
828 $tmp = $sql['ea_del_perfil_sist'];
829 $dbh = $this->_db->prepare($tmp);
830 $res = $this->_db->execute($dbh, array ($perfil, $this->getId()));
831 if (PEAR::isError($res)) {
834 //Borro perfil_sist_usuario
835 $tmp = $sql['ea_del_perfil_sist_usuario'];
836 $dbh = $this->_db->prepare($tmp);
837 $res = $this->_db->execute($dbh, array ($perfil, $this->getId()));
838 if (PEAR::isError($res)) {
841 //Verifico si hay otro sistema usando este perfil
842 $tmp = $sql['ea_obt_cuenta_perfil_sist'];
843 $dbh = $this->_db->prepare($tmp);
844 $res = $this->_db->execute($dbh, array ($perfil));
845 if (($re = $res->fetchRow(DB_FETCHMODE_ASSOC)) && $re['cuenta'] == 0){
846 $tmp = $sql['ea_del_perfil'];
847 $dbh = $this->_db->prepare($tmp);
848 $res = $this->_db->execute($dbh, array ($perfil));
849 if (PEAR::isError($res)) {
856 //Borro la asociacion perm_sist
857 $res = $this->_borrarPermisosDb($this->getId(), $observacion, $idPermiso);
858 if (PEAR::isError($res)) {
861 //Recargo los datos del sistema
862 $this->_obtenerDatosDb();
866 // +X2C Operation 314
868 * Actualiza los datos de la asociacion en la base de datos.
870 * @param int $idPermiso Identificador del permiso
871 * @param string $observacion Observacion a insertar
872 * @param string $obs_ant Observacion anterior
877 function modificarAsociacion($idPermiso, $observacion = '', $obs_ant = '') // ~X2C
879 //Busco la nueva asociacion
880 if (!$this->_existeAsociacion($idPermiso, $observacion)) {
881 //Actualizo la asociacion
883 'id_permiso' => $idPermiso,
884 'id_sistema' => $this->getId(),
885 'observaciones' => $observacion,
886 'responsable' => $this->getResponsable(),
888 $this->_db->autoExecute('samurai.perm_sist',
891 'id_sistema = '.$this->getId().' AND id_permiso = '.$idPermiso.' AND observaciones =\''.$obs_ant.'\'');
893 //Recargo los datos del sistema
894 $this->_obtenerDatosDb();
898 return new PEAR_Error('La Asociacion ya existe.');
903 // +X2C Operation 315
905 * Chequea si existe la asociacion
907 * @param int $idPermiso Id del permiso a chequear
908 * @param string $observacion Observacion a chequear
913 function _existeAsociacion($idPermiso, $observacion) // ~X2C
915 $sql = parse_ini_file(dirname(__FILE__) . '/Sistema/consultas.ini', true);
916 $tmp = $sql['obtener_permisos'].$sql['obtener_permisos3'].$sql['obtener_permisos4'];
917 $dbh = $this->_db->prepare($tmp);
918 $tmp = array ($this->getId(),$idPermiso,$observacion);
919 $res = $this->_db->execute($dbh,$tmp);
920 $re = $res->fetchRow();
931 // +X2C Operation 341
933 * Devuelve el array de sistemas
935 * @param SAMURAI_DB &$db Base de Datos
936 * @param bool $activos Indica si se deben buscar solamente los sistemas activos
938 * @return array(Sistema)
942 function getSistemas(&$db, $activos = true) // ~X2C
945 foreach (SAMURAI_Sistema::_getIdSistemas($db, $activos) as $id) {
946 $tmp = new SAMURAI_Sistema($db,$id);
947 array_push($rta, $tmp);
953 // +X2C Operation 342
955 * Devuleve un array con los identificadores de todos los sistemas.
957 * @param SAMURAI_DB &$db Base de Datos
958 * @param bool $activos Indica si se deben buscar solamente los sistemas activos
964 function _getIdSistemas(&$db, $activos = true) // ~X2C
966 //OBTENGO LOS ID DE LA BASE
968 $sql = parse_ini_file(dirname(__FILE__) . '/Sistema/consultas.ini', true);
969 $consulta = $sql['obtener_datos_sistema'];
971 $consulta.= $sql['obtener_datos_sistema3'];
973 $consulta.= $sql['obtener_datos_sistema4'];
974 $dbh = $db->prepare($consulta);
975 $res = $db->execute($dbh);
976 while ($re = $res->fetchrow(DB_FETCHMODE_ASSOC)) {
977 array_push($rta,$re['id_sistema']);
984 // +X2C Operation 343
986 * Devuelve un array asociativo en donde la clave es el identificador y el valor es el nombre del sistema
988 * @param SAMURAI_DB &$db Base de Datos
989 * @param bool $activos Indica si se deben buscar solamente los sistemas activos
995 function getArraySistemas(&$db, $activos = true) // ~X2C
998 foreach (SAMURAI_Sistema::getSistemas($db, $activos) as $sistema) {
999 $rta[$sistema->getId()] = $sistema->getNombre();
1005 } // -X2C Class :SAMURAI_Sistema