Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.contenido.php');
require_once('class.filter.php');
require_once('class.page.php');
require_once('class.estados.php');
class Contenidos extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql = '';
$sql.= " WHERE r.Titulo LIKE '%" . DB::StringUnquoted($filter['Titulo']) . "%'";
if ((isset($filter['IdCategoria'])) && ($filter['IdCategoria'] != ''))
{
$sql.= " AND r.IdCategoria = " . DB::Number($filter['IdCategoria']);
}
if ((isset($filter['IdSeccion'])) && ($filter['IdSeccion'] != ''))
{
$sql.= " AND r.IdSeccion = " . DB::Number($filter['IdSeccion']);
}
if ((isset($filter['IdSubseccion'])) && ($filter['IdSubseccion'] != ''))
{
$sql.= " AND r.IdSubseccion = " . DB::Number($filter['IdSubseccion']);
}
if ((isset($filter['Disponible'])) && ($filter['Disponible'] != ''))
{
$sql.= " AND r.Disponible = " . DB::Bool($filter['Disponible']);
}
if ((isset($filter['FechaDesde'])) && ($filter['FechaDesde'] != ''))
{
$sql.= " AND r.Fecha >= " . DB::Date($filter['FechaDesde']);
}
if ((isset($filter['FechaHasta'])) && ($filter['FechaHasta'] != ''))
{
$sql.= " AND r.Fecha <= " . DB::Date($filter['FechaHasta']);
}
if ((isset($filter['query'])) && ($filter['query'] != ''))
{
$sql.= " AND (0";
if (!is_numeric($filter['query'])) {
$sql.= " OR r.Titulo SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
// $sql.= " OR r.Cuerpo SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR c.Nombre SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR k.Nombre SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR s.Nombre SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR ss.Nombre SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
}
$sql.= " OR r.Titulo LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
// $sql.= " OR r.Cuerpo LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR c.Nombre LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR s.Nombre LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR ss.Nombre LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR k.Nombre LIKE '%" . DB::StringUnquoted($filter['query']) . "%')";
}
if ((isset($filter['Seccion'])) && ($filter['Seccion'] != ''))
$sql.= " AND s.Nombre LIKE '%" . DB::StringUnquoted($filter['Seccion']) . "%'";
if ((isset($filter['Subseccion'])) && ($filter['Subseccion'] != ''))
$sql.= " AND ss.Nombre LIKE '%" . DB::StringUnquoted($filter['Subseccion']) . "%'";
return $sql;
}
public function GetAll(array $filter = NULL, Page $oPage = NULL)
{
$sql = "SELECT r.*";
$sql.= " FROM tblContenidos r";
$sql.= " INNER JOIN tblCategorias c ON c.IdCategoria = r.IdCategoria";
$sql.= " INNER JOIN tblSecciones s ON s.IdSeccion = r.IdSeccion";
$sql.= " LEFT JOIN tblSubsecciones ss ON ss.IdSubseccion = r.IdSubseccion";
$sql.= " LEFT JOIN tblKeywords k ON k.IdContenido = r.IdContenido";
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " GROUP BY r.IdContenido";
$sql.= " ORDER BY s.Orden, s.IdSeccion, ss.Orden, ss.IdSubseccion, r.Orden, r.Fecha DESC, r.Titulo";
$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oContenido = new Contenido();
$oContenido->ParseFromArray($oRow);
array_push($arr, $oContenido);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdContenido)
{
$sql = "SELECT *";
$sql.= " FROM tblContenidos";
$sql.= " WHERE IdContenido = " . DB::Number($IdContenido);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oContenido = new Contenido();
$oContenido->ParseFromArray($oRow);
return $oContenido;
}
public function GetByTitulo($Titulo)
{
$sql = "SELECT *";
$sql.= " FROM tblContenidos";
$sql.= " WHERE Titulo LIKE " . DB::String($Titulo);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oContenido = new Contenido();
$oContenido->ParseFromArray($oRow);
return $oContenido;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT r.*";
$sql.= " FROM tblContenidos r";
$sql.= " INNER JOIN tblCategorias c ON c.IdCategoria = r.IdCategoria";
$sql.= " INNER JOIN tblSecciones s ON s.IdSeccion = r.IdSeccion";
$sql.= " LEFT JOIN tblSubsecciones ss ON ss.IdSubseccion = r.IdSubseccion";
$sql.= " LEFT JOIN tblKeywords k ON k.IdContenido = r.IdContenido";
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " GROUP BY r.IdContenido";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function Create(Contenido $oContenido)
{
$arr = array
(
'Titulo' => DB::String($oContenido->Titulo),
'IdCategoria' => DB::Number($oContenido->IdCategoria),
'IdSeccion' => DB::Number($oContenido->IdSeccion),
'IdSubseccion' => DB::Number($oContenido->IdSubseccion),
'Fecha' => DB::Date($oContenido->Fecha),
'Cuerpo' => DB::String($oContenido->Cuerpo),
'Disponible' => DB::Bool($oContenido->Disponible),
'Archivo' => DB::String($oContenido->Archivo),
'Orden' => DB::Number($oContenido->Orden)
);
if (!$this->Insert('tblContenidos', $arr))
return false;
$oContenido->IdContenido = $this->GetLastInsertId();
return $oContenido;
}
public function Update(Contenido $oContenido)
{
$where = " IdContenido = " . DB::Number($oContenido->IdContenido);
$arr = array
(
'Titulo' => DB::String($oContenido->Titulo),
'IdCategoria' => DB::Number($oContenido->IdCategoria),
'IdSeccion' => DB::Number($oContenido->IdSeccion),
'IdSubseccion' => DB::Number($oContenido->IdSubseccion),
'Fecha' => DB::Date($oContenido->Fecha),
'Cuerpo' => DB::String($oContenido->Cuerpo),
'Disponible' => DB::Bool($oContenido->Disponible),
'Archivo' => DB::String($oContenido->Archivo),
'Orden' => DB::Number($oContenido->Orden)
);
if (!DBAccess::UpdateEntidad('tblContenidos', $arr, $where))
return false;
return $oContenido;
}
public function UpdateChecks(Contenido $oContenido)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdContenido = " . DB::Number($oContenido->IdContenido);
$arr = array('Disponible' => DB::Number($oContenido->Disponible));
if (!DBAccess::UpdateEntidad('tblContenidos', $arr, $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return $oContenido;
}
public function Delete($IdContenido)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdContenido = " . DB::Number($IdContenido);
if (!DBAccess::DeleteEntidad('tblKeywords', $where))
{
DBAccess::$db->Rollback();
return false;
}
if (!DBAccess::DeleteEntidad('tblContenidos', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat