Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.encuesta.php');
require_once('class.filter.php');
require_once('class.page.php');
require_once('class.estados.php');
class Encuestas 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['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['IdColumnista'])) && ($filter['IdColumnista'] != ''))
$sql.= " AND e.IdColumnista = " . DB::Number($filter['IdColumnista']);
if ((isset($filter['Libre'])) && ($filter['Libre'] != ''))
{
$sql.= " AND (e.Titulo SOUNDS LIKE '%" . DB::StringUnquoted($filter['Libre']) . "%'";
$sql.= " OR e.Titulo LIKE '%" . DB::StringUnquoted($filter['Libre']) . "%'";
$sql.= " OR e.Copete SOUNDS LIKE '%" . DB::StringUnquoted($filter['Libre']) . "%'";
$sql.= " OR e.Copete LIKE '%" . DB::StringUnquoted($filter['Libre']) . "%'";
$sql.= " OR c.Nombre SOUNDS LIKE '%" . DB::StringUnquoted($filter['Libre']) . "%'";
$sql.= " OR c.Nombre LIKE '%" . DB::StringUnquoted($filter['Libre']) . "%'";
$sql.= " OR e.Cuerpo SOUNDS LIKE '%" . DB::StringUnquoted($filter['Libre']) . "%'";
$sql.= " OR e.Cuerpo LIKE '%" . DB::StringUnquoted($filter['Libre']) . "%'";
$sql.= " OR k.Nombre SOUNDS 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 e.*,";
$sql.= " ei.Imagen";
$sql.= " FROM tblEncuestas e";
$sql.= " LEFT JOIN tblCategorias c ON e.IdCategoria = c.IdCategoria ";
$sql.= " LEFT JOIN tblEncuestasImagenes ei ON ei.IdEncuesta = e.IdEncuesta ";
$sql.= " LEFT JOIN tblKeywords k ON k.IdEncuesta = e.IdEncuesta";
$sql.= " WHERE e.IdEstado = " . DB::Number(Estados::Activo);
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " GROUP BY e.IdEncuesta, ei.Imagen ";
$sql.= " ORDER BY 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())
{
$oEncuesta = new Encuesta();
$oEncuesta->ParseFromArray($oRow);
array_push($arr, $oEncuesta);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdEncuesta)
{
$sql = "SELECT e.*,";
$sql.= " ei.Imagen";
$sql.= " FROM tblEncuestas e";
$sql.= " LEFT JOIN tblEncuestasImagenes ei ON ei.IdEncuesta = e.IdEncuesta ";
$sql.= " WHERE e.IdEncuesta = " . DB::Number($IdEncuesta);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEncuesta = new Encuesta();
$oEncuesta->ParseFromArray($oRow);
return $oEncuesta;
}
public function GetLast($Cantidad)
{
$sql = "SELECT e.*";
$sql.= " FROM tblEncuestas e";
$sql.= " WHERE e.IdEstado = " . DB::Number(Estados::Activo);
$sql.= " ORDER BY IdEncuesta DESC";
$sql.= " LIMIT " . DB::Number($Cantidad);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEncuesta = new Encuesta();
$oEncuesta->ParseFromArray($oRow);
array_push($arr, $oEncuesta);
$oRes->MoveNext();
}
return $arr;
}
public function GetAllByCategoria(Categoria $oCategoria)
{
$sql = "SELECT e.*";
$sql.= " FROM tblEncuestas 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())
{
$oEncuesta = new Encuesta();
$oEncuesta->ParseFromArray($oRow);
array_push($arr, $oEncuesta);
$oRes->MoveNext();
}
return $arr;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT e.*";
$sql.= " FROM tblEncuestas e";
$sql.= " LEFT JOIN tblCategorias c ON e.IdCategoria = c.IdCategoria ";
$sql.= " LEFT JOIN tblEncuestasImagenes ei ON ei.IdEncuesta = e.IdEncuesta ";
$sql.= " LEFT JOIN tblKeywords k ON k.IdEncuesta = e.IdEncuesta";
$sql.= " WHERE e.IdEstado = " . DB::Number(Estados::Activo);
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " GROUP BY e.IdEncuesta ";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function GetProximosEncuestas($Cantidad)
{
$sql = "SELECT e.*";
$sql.= " ei.Imagen";
$sql.= " FROM tblEncuestas e";
$sql.= " LEFT JOIN tblCategorias c ON e.IdCategoria = c.IdCategoria";
$sql.= " LEFT JOIN tblEncuestasImagenes ei ON ei.IdEncuesta = e.IdEncuesta ";
$sql.= " WHERE e.IdEstado = " . DB::Number(Estados::Activo);
$sql.= " GROUP BY e.IdEncuesta ";
$sql.= " ORDER BY e.Fecha DESC ";
$sql.= " LIMIT " . DB::Number($Cantidad);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEncuesta = new Encuesta();
$oEncuesta->ParseFromArray($oRow);
array_push($arr, $oEncuesta);
$oRes->MoveNext();
}
return $arr;
}
public function Create(Encuesta $oEncuesta)
{
$arr = array
(
'IdCategoria' => DB::Number($oEncuesta->IdCategoria),
'Fecha' => DB::Date($oEncuesta->Fecha),
'Titulo' => DB::String($oEncuesta->Titulo),
'Copete' => DB::String($oEncuesta->Copete),
'Cuerpo' => DB::String($oEncuesta->Cuerpo),
'Fuente' => DB::String($oEncuesta->Fuente),
'Destacado' => DB::Number($oEncuesta->Destacado),
'IdEstado' => DB::Number(Estados::Activo),
'Video' => DB::String($oEncuesta->Video)
);
if (!$this->Insert('tblEncuestas', $arr))
return false;
$oEncuesta->IdEncuesta = DBAccess::GetLastInsertId();
return $oEncuesta;
}
public function Update(Encuesta $oEncuesta)
{
$where = " IdEncuesta = " . DB::Number($oEncuesta->IdEncuesta);
$arr = array
(
'IdCategoria' => DB::Number($oEncuesta->IdCategoria),
'Fecha' => DB::Date($oEncuesta->Fecha),
'Titulo' => DB::String($oEncuesta->Titulo),
'Copete' => DB::String($oEncuesta->Copete),
'Cuerpo' => DB::String($oEncuesta->Cuerpo),
'Fuente' => DB::String($oEncuesta->Fuente),
'Destacado' => DB::Number($oEncuesta->Destacado),
'IdEstado' => DB::Number($oEncuesta->IdEstado),
'Video' => DB::String($oEncuesta->Video)
);
if (!DBAccess::UpdateEntidad('tblEncuestas', $arr, $where))
return false;
return $oEncuesta;
}
public function Delete($IdEncuesta)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdEncuesta = " . DB::Number($IdEncuesta);
$arr = array('IdEstado' => DB::Number(Estados::Eliminado));
if (!DBAccess::UpdateEntidad('tblEncuestas', $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