Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.guia.php');
require_once('class.filter.php');
require_once('class.page.php');
require_once('class.estados.php');
class Guias extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql = ' WHERE 1';
if ((isset($filter['Nombre'])) && ($filter['Nombre'] != ''))
$sql.= " AND g.Nombre LIKE '%" . DB::StringUnquoted($filter['Nombre']) . "%'";
if ((isset($filter['IdGuia'])) && ($filter['IdGuia'] != ''))
$sql.= " AND g.IdGuia = " . DB::Number($filter['IdGuia']);
if ((isset($filter['IdEnfermedad'])) && ($filter['IdEnfermedad'] != ''))
$sql.= " AND g.IdEnfermedad = " . DB::Number($filter['IdEnfermedad']);
if ((isset($filter['Disponible'])) && ($filter['Disponible'] != ''))
$sql.= " AND g.Disponible = " . DB::Bool($filter['Disponible']);
if ((isset($filter['IGG4'])) && ($filter['IGG4'] != ''))
$sql.= " AND g.IGG4 = " . DB::Bool($filter['IGG4']);
if ((isset($filter['FechaDesde'])) && ($filter['FechaDesde'] != ''))
$sql.= " AND g.Fecha >= " . DB::Date($filter['FechaDesde']);
if ((isset($filter['FechaHasta'])) && ($filter['FechaHasta'] != ''))
$sql.= " AND g.Fecha <= " . DB::Date($filter['FechaHasta']);
if ((isset($filter['Fecha'])) && ($filter['Fecha'] != ''))
$sql.= " AND g.Fecha = " . DB::Date($filter['Fecha']);
if ((isset($filter['query'])) && ($filter['query'] != ''))
{
$sql.= " AND (0";
if (!is_numeric($filter['query'])) {
$sql.= " OR g.Nombre SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR g.Descripcion SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR e.Nombre SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR k.Nombre SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
}
$sql.= " OR g.Nombre LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR g.Descripcion LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR e.Nombre LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR k.Nombre LIKE '%" . DB::StringUnquoted($filter['query']) . "%')";
}
return $sql;
}
public function GetAll(array $filter = NULL, Page $oPage = NULL)
{
$sql = "SELECT g.*";
$sql.= " FROM tblGuias g";
$sql.= " INNER JOIN tblEnfermedades e ON e.IdEnfermedad = g.IdEnfermedad";
$sql.= " LEFT JOIN tblKeywords k ON k.IdGuia = g.IdGuia";
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " GROUP BY g.IdGuia";
$sql.= " ORDER BY e.IdEnfermedad, g.Fecha DESC";
$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oGuia = new Guia();
$oGuia->ParseFromArray($oRow);
array_push($arr, $oGuia);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdGuia)
{
$sql = "SELECT *";
$sql.= " FROM tblGuias";
$sql.= " WHERE IdGuia = " . DB::Number($IdGuia);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oGuia = new Guia();
$oGuia->ParseFromArray($oRow);
return $oGuia;
}
public function GetByIdEnfermedad($IdEnfermedad)
{
$sql = "SELECT *";
$sql.= " FROM tblGuias";
$sql.= " WHERE IdEnfermedad = " . DB::Number($IdEnfermedad);
$sql.= " AND Disponible = 1";
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oGuia = new Guia();
$oGuia->ParseFromArray($oRow);
return $oGuia;
}
public function GetByNombre($Nombre)
{
$sql = "SELECT *";
$sql.= " FROM tblGuias";
$sql.= " WHERE Nombre LIKE " . DB::String($Nombre);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oGuia = new Guia();
$oGuia->ParseFromArray($oRow);
return $oGuia;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT g.*";
$sql.= " FROM tblGuias g";
$sql.= " LEFT JOIN tblKeywords k ON k.IdGuia = g.IdGuia";
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " GROUP BY g.IdGuia";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
private function GetArrayDB(Guia $oGuia)
{
return $arr = array
(
'Nombre' => DB::String($oGuia->Nombre),
'Fecha' => DB::Date($oGuia->Fecha),
'Archivo' => DB::String($oGuia->Archivo),
'Link' => DB::String($oGuia->Link),
'Descripcion' => DB::String($oGuia->Descripcion),
'Disponible' => DB::Bool($oGuia->Disponible),
'IdEnfermedad' => DB::Number($oGuia->IdEnfermedad),
'IGG4' => DB::Number($oGuia->IGG4)
);
}
public function Create(Guia $oGuia)
{
$arr = $this->GetArrayDB($oGuia);
if (!$this->Insert('tblGuias', $arr))
return false;
/* obtenemos el id generado */
$oGuia->IdGuia = $this->GetLastInsertId();
return $oGuia;
}
public function Update(Guia $oGuia)
{
$where = " IdGuia = " . DB::Number($oGuia->IdGuia);
$arr = $this->GetArrayDB($oGuia);
if (!DBAccess::UpdateEntidad('tblGuias', $arr, $where))
return false;
return $oGuia;
}
public function Delete($IdGuia)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdGuia = " . DB::Number($IdGuia);
if (!DBAccess::DeleteEntidad('tblKeywords', $where))
{
DBAccess::$db->Rollback();
return false;
}
if (!DBAccess::DeleteEntidad('tblGuias', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat