X-Git-Url: https://git.llucax.com/mecon/ai.git/blobdiff_plain/6e0df7b212f1a721cf8df887c629b67957871225..eab2a84aa3532833851acd59d54b85496554ca82:/lib/AI/Sistema.php?ds=inline diff --git a/lib/AI/Sistema.php b/lib/AI/Sistema.php index 7a54776..54260af 100644 --- a/lib/AI/Sistema.php +++ b/lib/AI/Sistema.php @@ -27,8 +27,17 @@ // $Id$ // +// +X2C includes +require_once 'AI/DBObject.php'; +// ~X2C + require_once 'AI/Error.php'; +/** + * Archivo de configuración. + */ +define('AI_SISTEMA_CONFFILE', dirname(__FILE__).'/Sistema.ini'); + // +X2C Class 416 :AI_Sistema /** * Sistema. @@ -36,7 +45,7 @@ require_once 'AI/Error.php'; * @package AI * @access public */ -class AI_Sistema { +class AI_Sistema extends AI_DBObject { /** * ID del sistema (ID en SAMURAI). * @@ -45,13 +54,29 @@ class AI_Sistema { */ var $sistema = 0; + /** + * Nombre del sistema (slo de lectura, extra?o de SAMURAI). + * + * @var string $nombre + * @access public + */ + var $nombre = ''; + + /** + * Descripcin del sistema (slo de lectura, extra?o de SAMURAI). + * + * @var string $descripcion + * @access public + */ + var $descripcion = ''; + /** * ?ono del sistema. * - * @var HTML_Imagen $icono + * @var string $icono * @access public */ - var $icono = null; + var $icono = ''; /** * Enlace a donde se encuentra el sistema. @@ -88,119 +113,106 @@ class AI_Sistema { */ function AI_Sistema($sistema = 0) // ~X2C { - $this->sistema = $sistema; - } - // -X2C - - // +X2C Operation 460 - /** - * @param mixed $db Base de datos o Resultado a utilizar. - * - * @return PEAR_Error - * @access public - */ - function cargar($db) // ~X2C - { - $sistema = intval($this->sistema); - if (is_a($db, 'db_result')) { - $result = $db; - // Si no es un resultado, hago el query. - } else { - $result = $db->query( - "SELECT * - FROM sistema - WHERE sistema = $sistema" - ); - if (DB::isError($result)) { - return $result; - } - } - // Obtengo la fila. - $row = $result->fetchRow(DB_FETCHMODE_ASSOC); - if (!$row) { - return new AI_Error(AI_ERROR_NO_RESULTADOS, - "No hay más resultados en la DB [sistema=$sistema]"); - } - // Asigno valores al objeto. - extract($row); - $this->sistema = $sistema; - $this->icono = $icono; # FIXME - new HTML_Icono (o no?) - $this->link = $link; - $this->link_ayuda = $link_ayuda; - $this->habilitado = $habilitado; - return true; + parent::AI_DBObject($sistema, AI_SISTEMA_CONFFILE); } // -X2C // +X2C Operation 459 /** * @param DB $db DB donde guardar. + * @param bool $nuevo Si es true, se fuerza a guardar el servicio como nuevo. * * @return PEAR_Error * @access public */ - function guardar($db) // ~X2C + function guardar($db, $nuevo = false) // ~X2C { - $sistema = intval($this->sistema); - $where = ''; - $datos = array( + $datos = array( 'icono' => $this->icono, 'link' => $this->link, 'link_ayuda' => $this->link_ayuda, 'habilitado' => $this->habilitado ? 1 : 0, ); - // FIXME - buscar otra forma de distinguir entre INSERT y UPDATE. - if ($sistema) { - $accion = DB_AUTOQUERY_UPDATE; - $where = "sistema = $sistema"; - } else { - $accion = DB_AUTOQUERY_INSERT; - $sistema = $db->nextId('sistema'); - if (DB::isError($sistema)) { - return $sistema; - } - // Asigno el nuevo id de sistema. - $this->sistema = $sistema; - $datos['sistema'] = $sistema; + $err = parent::guardar($db, $datos, $nuevo); + if (PEAR::isError($err)) { + return $err; } - $res = $db->autoExecute('sistema', $datos, $accion, $where); - if (DB::isError($res)) { - return $res; - } - return true; } // -X2C - // +X2C Operation 461 + // +X2C Operation 528 /** - * @param DB $db DB de donde borrar. + * Obtiene un array con los identificadores de los sistemas cargados. * - * @return PEAR_Error + * @param DB $db Base de datos de la cual obtener los sistemas. + * @param string $where Clausula WHERE para filtrar resultados. + * + * @return array * @access public + * @static */ - function borrar($db) // ~X2C + function getSistemasArray($db, $where = '') // ~X2C { - $sistema = intval($this->sistema); - if ($sistema) { - $res = $db->query( - "DELETE FROM sistema WHERE sistema = $sistema"); - if (DB::isError($res)) { - return $res; - } - return true; + static $conf; + if (!$conf) { + $conf = parse_ini_file(AI_SISTEMA_CONFFILE, true); + } + extract($conf); + $query = " + SELECT $id + FROM $base.$tabla"; + if ($where) { + $query .= "WHERE $where"; } - return PEAR::raiseError("No hay un sistema válido para borrar"); + return $db->getCol($query); } // -X2C - // +X2C Operation 502 + // +X2C Operation 531 /** - * @return Sistema + * @param DB $db Base de datos de donde obtener los sistemas. + * @param string $where Clausula WHERE para filtrar la bsqueda. + * + * @return array * @access public + * @static */ - function __clone() // ~X2C + function getSistemas($db, $where = '') // ~X2C { - return $this; + static $conf; + if (!$conf) { + $conf = parse_ini_file(AI_SISTEMA_CONFFILE, true); + } + $id_field = $conf['id']; + $tabla = $conf['base'].'.'.$conf['tabla']; + // FIXME - ver como manejar JOINs - Ver de hacer el JOIN tambien en cargar. + $query = " + SELECT AI.*, SA.nombre_sistema as nombre, SA.desc_sistema as descripcion + FROM $tabla as AI, samurai.sistema as SA + WHERE SA.id_sistema = AI.sistema and SA.estado = 1"; + if ($where) { + $query .= " WHERE $where"; + } + $query .= ' ORDER BY nombre ASC'; + $result = $db->query($query); + if (DB::isError($result)) { + return $result; + } + $sistemas = array(); + $sistema = new AI_Sistema; + $err = $sistema->cargar($result); + while (!PEAR::isError($err)) { + $sistemas[] = $sistema->__clone(); + $err = $sistema->cargar($result); + } + // Si no hay mas resultados (terminó bien) devuelve el array de + // sistemas. + if (AI_Error::isError($err) + and $err->getCode() == AI_ERROR_NO_RESULTADOS) { + return $sistemas; + } + // Si no, se devuelve el error. + return $err; } // -X2C