Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.noticia.php');
require_once('class.filter.php');
require_once('class.page.php');
require_once('class.estados.php');
class Noticias extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql = '';
if ((isset($filter['Titulo'])) && ($filter['Titulo'] != ''))
$sql.= " AND e.Titulo LIKE '%" . DB::StringUnquoted($filter['Titulo']) . "%'";
if ((isset($filter['IdCategoria'])) && ($filter['IdCategoria'] != ''))
$sql.= " AND e.IdCategoria = " . DB::Number($filter['IdCategoria']);
if ((isset($filter['IdColumnista'])) && ($filter['IdColumnista'] != ''))
$sql.= " AND e.IdColumnista = " . DB::Number($filter['IdColumnista']);
if ((isset($filter['NotIdCategoria'])) && ($filter['NotIdCategoria'] != ''))
$sql.= " AND e.IdCategoria <> " . DB::Number($filter['NotIdCategoria']);
if ((isset($filter['NotIdCategoria2'])) && ($filter['NotIdCategoria2'] != ''))
$sql.= " AND e.IdCategoria <> " . DB::Number($filter['NotIdCategoria2']);
if ((isset($filter['Destacado'])) && ($filter['Destacado'] != ''))
$sql.= " AND e.Destacado = " . DB::Bool($filter['Destacado']);
if ((isset($filter['Fijo'])) && ($filter['Fijo'] != ''))
$sql.= " AND e.Fijo = " . DB::Bool($filter['Fijo']);
if ((isset($filter['IdColumnista'])) && ($filter['IdColumnista'] != ''))
$sql.= " AND e.IdColumnista = " . DB::Number($filter['IdColumnista']);
if ((isset($filter['Prioridad'])) && ($filter['Prioridad'] != ''))
$sql.= " AND e.Prioridad = " . DB::Number($filter['Prioridad']);
if ((isset($filter['FechaDesdeHasta'])) && ($filter['FechaDesdeHasta'] != ''))
$sql.= " AND (e.FechaDesde IS NULL OR e.FechaDesde <= " . DB::Date($filter['FechaDesdeHasta']) . ')';
if ((isset($filter['FechaHastaDesde'])) && ($filter['FechaHastaDesde'] != ''))
$sql.= " AND (e.FechaHasta IS NULL OR e.FechaHasta >= " . DB::Date($filter['FechaHastaDesde']) . ')';
if ((isset($filter['Libre'])) && ($filter['Libre'] != ''))
{
$sql.= " AND (0";
if (!is_numeric($filter['Libre'])) {
$sql.= " OR e.Titulo SOUNDS LIKE '%" . DB::StringUnquoted($filter['Libre']) . "%'";
// $sql.= " OR e.Copete SOUNDS LIKE '%" . DB::StringUnquoted($filter['Libre']) . "%'";
$sql.= " OR c.Nombre SOUNDS LIKE '%" . DB::StringUnquoted($filter['Libre']) . "%'";
// $sql.= " OR e.Cuerpo SOUNDS LIKE '%" . DB::StringUnquoted($filter['Libre']) . "%'";
}
$sql.= " OR e.Titulo LIKE '%" . DB::StringUnquoted($filter['Libre']) . "%'";
$sql.= " OR e.Copete LIKE '%" . DB::StringUnquoted($filter['Libre']) . "%'";
$sql.= " OR e.Cuerpo LIKE '%" . DB::StringUnquoted($filter['Libre']) . "%'";
$sql.= " OR c.Nombre LIKE '%" . DB::StringUnquoted($filter['Libre']) . "%')";
}
return $sql;
}
public function GetAll(array $filter = NULL, Page $oPage = NULL, $searchCat = false, $body = true)
{
$sql = "SELECT e.IdNoticia,";
$sql.= " e.IdCategoria,";
$sql.= " e.Fecha,";
$sql.= " e.Titulo,";
if ($body) {
$sql.= " e.Cuerpo,";
$sql.= " e.Copete,";
}
$sql.= " e.Destacado,";
$sql.= " e.Fijo,";
$sql.= " e.IdEstado,";
$sql.= " e.Video,";
$sql.= " e.Prioridad,";
$sql.= " e.FechaDesde,";
$sql.= " e.FechaHasta,";
$sql.= " ei.Imagen";
$sql.= " FROM tblNoticias e";
$sql.= " LEFT JOIN tblCategorias c ON e.IdCategoria = c.IdCategoria ";
$sql.= " LEFT JOIN tblNoticiaImagenes ei ON ei.IdNoticia = e.IdNoticia ";
$sql.= " WHERE e.IdEstado = " . DB::Number(Estados::Activo);
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " GROUP BY e.IdNoticia ";
if ($filter['IdCategoria'] == 13) {
$sql.= " ORDER BY e.Fijo <> 1, e.Fecha ASC, c.Nombre ASC, e.Titulo ASC";
} else {
if ($searchCat)
$sql.= " ORDER BY c.Nombre ASC, e.Fecha DESC, e.Titulo ASC";
else
$sql.= " ORDER BY e.Fijo <> 1, e.Fecha DESC, c.Nombre ASC, e.Titulo ASC";
}
$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oNoticia = new Noticia();
$oNoticia->ParseFromArray($oRow);
array_push($arr, $oNoticia);
$oRes->MoveNext();
}
return $arr;
}
public function GetAllOrderByColumnista(array $filter = NULL, Page $oPage = NULL, $searchCat = false, $body = true)
{
$sql = "SELECT e.IdNoticia,";
$sql.= " e.IdCategoria,";
$sql.= " e.Fecha,";
$sql.= " e.Titulo,";
if ($body) {
$sql.= " e.Cuerpo,";
$sql.= " e.Copete,";
}
$sql.= " e.Destacado,";
$sql.= " e.Fijo,";
$sql.= " e.IdEstado,";
$sql.= " e.Video,";
$sql.= " e.Prioridad,";
$sql.= " e.FechaDesde,";
$sql.= " e.FechaHasta,";
$sql.= " ei.Imagen";
$sql.= " FROM tblNoticias e";
$sql.= " INNER JOIN tblColumnistas col ON e.IdColumnista = col.IdColumnista ";
$sql.= " LEFT JOIN tblCategorias c ON e.IdCategoria = c.IdCategoria ";
$sql.= " LEFT JOIN tblNoticiaImagenes ei ON ei.IdNoticia = e.IdNoticia ";
$sql.= " WHERE e.IdEstado = " . DB::Number(Estados::Activo);
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " GROUP BY e.IdNoticia ";
if ($filter['IdCategoria'] == 13) {
$sql.= " ORDER BY e.Fijo <> 1, e.Fecha ASC, c.Nombre ASC, e.Titulo ASC";
} else {
if ($searchCat)
$sql.= " ORDER BY c.Nombre ASC, e.Fecha DESC, e.Titulo ASC";
else
$sql.= " ORDER BY e.Titulo, col.Nombre, e.Fijo <> 1, e.Fecha DESC, c.Nombre ASC, e.Titulo ASC";
}
$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oNoticia = new Noticia();
$oNoticia->ParseFromArray($oRow);
array_push($arr, $oNoticia);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdNoticia)
{
$sql = "SELECT e.*";
$sql.= " FROM tblNoticias e";
$sql.= " WHERE e.IdNoticia = " . DB::Number($IdNoticia);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oNoticia = new Noticia();
$oNoticia->ParseFromArray($oRow);
return $oNoticia;
}
public function GetLast($Cantidad)
{
$sql = "SELECT e.IdNoticia,";
$sql.= " e.IdCategoria,";
$sql.= " e.IdColumnista,";
$sql.= " e.Fecha,";
$sql.= " e.Titulo,";
$sql.= " e.Copete,";
$sql.= " e.Fuente,";
$sql.= " e.Destacado,";
$sql.= " e.Fijo,";
$sql.= " e.IdEstado,";
$sql.= " e.Video,";
$sql.= " e.Prioridad,";
$sql.= " e.FechaDesde,";
$sql.= " e.FechaHasta,";
$sql.= " ei.Imagen";
$sql.= " FROM tblNoticias e";
$sql.= " LEFT JOIN tblNoticiaImagenes ei ON ei.IdNoticia = e.IdNoticia ";
$sql.= " WHERE e.IdEstado = " . DB::Number(Estados::Activo);
$sql.= " AND e.IdCategoria <> 13";
$sql.= " AND (e.FechaDesde IS NULL OR e.FechaDesde <= " . DB::Date(date('d-m-Y')) . ")";
$sql.= " AND (e.FechaHasta IS NULL OR e.FechaHasta >= " . DB::Date(date('d-m-Y')) . ")";
$sql.= " GROUP BY e.IdNoticia";
$sql.= " ORDER BY e.Fecha DESC";
$sql.= " LIMIT " . DB::Number($Cantidad);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oNoticia = new Noticia();
$oNoticia->ParseFromArray($oRow);
array_push($arr, $oNoticia);
$oRes->MoveNext();
}
return $arr;
}
public function GetAllByCategoria(Categoria $oCategoria)
{
$sql = "SELECT e.*";
$sql.= " FROM tblNoticias e";
$sql.= " WHERE e.IdEstado = " . DB::Number(Estados::Activo);
$sql.= " AND e.IdCategoria = " . DB::Number($oCategoria->IdCategoria);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oNoticia = new Noticia();
$oNoticia->ParseFromArray($oRow);
array_push($arr, $oNoticia);
$oRes->MoveNext();
}
return $arr;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT e.IdNoticia";
$sql.= " FROM tblNoticias e";
$sql.= " LEFT JOIN tblCategorias c ON e.IdCategoria = c.IdCategoria ";
$sql.= " LEFT JOIN tblNoticiaImagenes ei ON ei.IdNoticia = e.IdNoticia ";
$sql.= " WHERE e.IdEstado = " . DB::Number(Estados::Activo);
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " GROUP BY e.IdNoticia ";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function GetProximosNoticias($Cantidad)
{
$sql = "SELECT e.*";
$sql.= " ei.Imagen";
$sql.= " FROM tblNoticias e";
$sql.= " LEFT JOIN tblCategorias c ON e.IdCategoria = c.IdCategoria";
$sql.= " LEFT JOIN tblNoticiaImagenes ei ON ei.IdNoticia = e.IdNoticia ";
$sql.= " WHERE e.IdEstado = " . DB::Number(Estados::Activo);
$sql.= " GROUP BY e.IdNoticia ";
$sql.= " ORDER BY e.Fecha DESC ";
$sql.= " LIMIT " . DB::Number($Cantidad);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oNoticia = new Noticia();
$oNoticia->ParseFromArray($oRow);
array_push($arr, $oNoticia);
$oRes->MoveNext();
}
return $arr;
}
public function Create(Noticia $oNoticia)
{
$arr = array
(
'IdCategoria' => DB::Number($oNoticia->IdCategoria),
'IdColumnista' => DB::Number($oNoticia->IdColumnista),
'Fecha' => DB::Date($oNoticia->Fecha),
'Titulo' => DB::String($oNoticia->Titulo),
'Copete' => DB::String($oNoticia->Copete),
'Cuerpo' => DB::String($oNoticia->Cuerpo),
'Fuente' => DB::String($oNoticia->Fuente),
'Destacado' => DB::Number($oNoticia->Destacado),
'Fijo' => DB::Number($oNoticia->Fijo),
'IdEstado' => DB::Number(Estados::Activo),
'Video' => DB::String($oNoticia->Video),
'Prioridad' => DB::Number($oNoticia->Prioridad),
'FechaDesde' => DB::Date($oNoticia->FechaDesde),
'FechaHasta' => DB::Date($oNoticia->FechaHasta)
);
if (!$this->Insert('tblNoticias', $arr))
return false;
$oNoticia->IdNoticia = DBAccess::GetLastInsertId();
return $oNoticia;
}
public function Update(Noticia $oNoticia)
{
$where = " IdNoticia = " . DB::Number($oNoticia->IdNoticia);
$arr = array
(
'IdCategoria' => DB::Number($oNoticia->IdCategoria),
'IdColumnista' => DB::Number($oNoticia->IdColumnista),
'Fecha' => DB::Date($oNoticia->Fecha),
'Titulo' => DB::String($oNoticia->Titulo),
'Copete' => DB::String($oNoticia->Copete),
'Cuerpo' => DB::String($oNoticia->Cuerpo),
'Fuente' => DB::String($oNoticia->Fuente),
'Destacado' => DB::Number($oNoticia->Destacado),
'Fijo' => DB::Number($oNoticia->Fijo),
'IdEstado' => DB::Number($oNoticia->IdEstado),
'Video' => DB::String($oNoticia->Video),
'Prioridad' => DB::Number($oNoticia->Prioridad),
'FechaDesde' => DB::Date($oNoticia->FechaDesde),
'FechaHasta' => DB::Date($oNoticia->FechaHasta)
);
if (!DBAccess::UpdateEntidad('tblNoticias', $arr, $where))
return false;
return $oNoticia;
}
public function Delete($IdNoticia)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdNoticia = " . DB::Number($IdNoticia);
$arr = array('IdEstado' => DB::Number(Estados::Eliminado));
if (!DBAccess::UpdateEntidad('tblNoticias', $arr, $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat