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 210 :SAMURAI_Permiso
31 * Clase para el manejo de los Permisos.
35 class SAMURAI_Permiso {
37 * Identificador del permiso.
45 * Descripcion del permiso.
47 * @var string $descripcion
61 * Indentificador del ultimo que realizo alguna operacion sobre el permiso
63 * @var string $responsable
97 function getDescripcion()
99 return $this->_descripcion;
104 * @param string $descripcion Descripcion.
109 function setDescripcion($descripcion)
111 $this->_descripcion = $descripcion;
120 function getResponsable()
122 return $this->_responsable;
127 * @param string $responsable Responsable.
132 function setResponsable($responsable)
134 $this->_responsable = $responsable;
139 // +X2C Operation 259
141 * Constructor. Si recibe como parametro el identificador del permiso, busca la informacion en la DB.
143 * @param SAMURAI_DB &$db Objeto conexion
144 * @param int $id Identificador del permiso
149 function SAMURAI_Permiso(&$db, $id = null) // ~X2C
153 $this->setDescripcion(null);
155 $this->_obtenerDatosDb();
160 // +X2C Operation 295
162 * Obtiene de la base de datos la informacion del permiso
167 function _obtenerDatosDb() // ~X2C
169 $sql = parse_ini_file(dirname(__FILE__) . '/Permiso/consultas.ini', true);
170 $tmp = $sql['obtener_datos_permiso'].$sql['obtener_datos_permiso2'];
171 $dbh = $this->_db->prepare($tmp);
172 $tmp = array ($this->_id);
173 $res = $this->_db->execute($dbh,$tmp);
175 if ($re = $res->fetchRow(DB_FETCHMODE_ASSOC)) {
176 if (isset($re['desc_permiso'])) {
177 $this->setDescripcion($re['desc_permiso']);
180 $this->setDescripcion();
182 if (isset($re['responsable'])) {
183 $this->setResponsable($re['responsable']);
186 $this->setResponsable();
194 // +X2C Operation 316
196 * Modifica la base de datos segun accion
198 * @param string $accion Indica la accion a realizar
203 function guardarDatos($accion = grabar) // ~X2C
205 $accion = strtolower($accion);
208 $res = $this->_grabarDb();
211 $res = $this->_modificarDb();
214 $res = $this->_borrarDb();
221 // +X2C Operation 317
223 * Graba en base el permiso
228 function _grabarDb() // ~X2C
230 $idPermiso = $this->_db->nextId('permiso');
232 'id_permiso' => $idPermiso,
233 'desc_permiso' => $this->getDescripcion(),
234 'responsable' => $this->getResponsable(),
236 return $this->_db->autoExecute('permiso', $datos, DB_AUTOQUERY_INSERT);
240 // +X2C Operation 318
242 * Borra de la base el permiso
247 function _borrarDb() // ~X2C
249 $sql = parse_ini_file(dirname(__FILE__) . '/Permiso/consultas.ini', true);
250 $datos[] = $this->getId();
251 //Verifico que el permiso no tenga asociaciones
252 $tmp = $sql['verificar_asociaciones1'].$sql['obtener_datos_permiso2'];
253 $dbh = $this->_db->prepare($tmp);
254 $res = $this->_db->execute($dbh, $datos);
255 if (($re = $res->fetchRow(DB_FETCHMODE_ASSOC)) && !$re['cuenta'] == 0) {
256 return new PEAR_Error("Hay sistemas asociados al permiso seleccionado");
258 $tmp = $sql['verificar_asociaciones2'].$sql['obtener_datos_permiso2'];
259 $dbh = $this->_db->prepare($tmp);
260 $res = $this->_db->execute($dbh, $datos);
261 if (($re = $res->fetchRow(DB_FETCHMODE_ASSOC)) && !$re['cuenta'] == 0) {
262 return new PEAR_Error("Hay pefiles asociados al permiso seleccionado");
265 //Borro el permiso de la base
266 $tmp = $sql['borrar_permiso'].$sql['obtener_datos_permiso2'];
267 $dbh = $this->_db->prepare($tmp);
268 return $this->_db->execute($dbh, $datos);
273 // +X2C Operation 319
275 * Actualiza los datos del permiso
280 function _modificarDb() // ~X2C
283 'id_permiso' => $this->getId(),
284 'desc_permiso' => $this->getDescripcion(),
285 'responsable' => $this->getResponsable(),
287 return $this->_db->autoExecute('permiso', $datos, DB_AUTOQUERY_UPDATE, 'id_permiso ='.$this->getId());
292 // +X2C Operation 332
294 * Devuleve un array con los identificadores de todos los permisos.
296 * @param SAMURAI_DB &$db Base de Datos
302 function _getIdPermisos(&$db) // ~X2C
304 //OBTENGO LOS ID DE LA BASE
306 $sql = parse_ini_file(dirname(__FILE__) . '/Permiso/consultas.ini', true);
307 $dbh = $db->prepare($sql['obtener_datos_permiso']);
308 $tmp[] = $_SESSION['samurai']['id_sistema'];
309 $res = $db->execute($dbh, $tmp);
310 while ($re = $res->fetchrow(DB_FETCHMODE_ASSOC)) {
311 array_push($rta,$re['id_permiso']);
318 // +X2C Operation 333
320 * Devuelve un array asociativo en donde la clave es el identificador y el valor es la descripcion del permiso
322 * @param SAMURAI_DB &$db Base de Datos
328 function getArrayPermisos(&$db) // ~X2C
330 //FORECHEO LO QUE ME DEVUELVA GET PERMISOS
332 foreach (SAMURAI_Permiso::getPermisos($db) as $permiso) {
333 $rta[$permiso->getId()] = $permiso->getDescripcion();
339 // +X2C Operation 334
341 * Devuelve el array de permisos
343 * @param SAMURAI_DB &$db Base de Datos
345 * @return array(Permiso)
349 function getPermisos(&$db) // ~X2C
352 foreach (SAMURAI_Permiso::_getIdPermisos($db) as $id) {
353 $tmp = new SAMURAI_Permiso($db,$id);
354 array_push($rta, $tmp);
360 } // -X2C Class :SAMURAI_Permiso