Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.evento.php');
require_once('class.filter.php');
require_once('class.page.php');
require_once('class.estados.php');
class Eventos extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
if ((isset($filter['Titulo'])) && ($filter['Titulo'] != ''))
$sql.= " AND e.Titulo LIKE '%" . DB::StringUnquoted($filter['Titulo']) . "%'";
if ((isset($filter['query'])) && ($filter['query'] != ''))
{
$sql.= " AND (0";
if (!is_numeric($filter['query'])) {
$sql.= " OR e.Titulo SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
// $sql.= " OR e.Cuerpo SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR e.Copete SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR k.Nombre SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR c.Nombre SOUNDS LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
}
$sql.= " OR e.Titulo LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
// $sql.= " OR e.Cuerpo LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR e.Copete LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR k.Nombre LIKE '%" . DB::StringUnquoted($filter['query']) . "%'";
$sql.= " OR c.Nombre LIKE '%" . DB::StringUnquoted($filter['query']) . "%')";
}
if ((isset($filter['IdCategoria'])) && ($filter['IdCategoria'] != ''))
{
$sql.= " AND (ec.IdCategoria = " . DB::Number($filter['IdCategoria']) . ")";
}
if ((isset($filter['KeyCategoria'])) && ($filter['KeyCategoria'] != ''))
{
$sql.= " AND (ec.KeyCategoria = " . DB::String($filter['KeyCategoria']) . ")";
}
if ((isset($filter['NombreAlternativo'])) && ($filter['NombreAlternativo'] != ''))
{
$sql.= " AND (c.NombreAlternativo = " . DB::String($filter['NombreAlternativo']) . ")";
}
if ((isset($filter['Fecha'])) && ($filter['Fecha'] != ''))
{
$sql.= " AND Fecha = " . DB::Date($filter['Fecha']);
}
if ((isset($filter['Fecha'])) && ($filter['Fecha'] != ''))
{
$sql.= " AND Fecha = " . DB::Date($filter['Fecha']);
}
if ((isset($filter['FechaDesde'])) && ($filter['FechaDesde'] != ''))
{
$sql.= " AND (Fecha >= " . DB::Date($filter['FechaDesde']);
$sql.= " OR FechaHasta >= " . DB::Date($filter['FechaDesde']) . ")";
}
if ((isset($filter['FechaHastaReal'])) && ($filter['FechaHastaReal'] != ''))
{
$sql.= " AND (Fecha <= " . DB::Date($filter['FechaHastaReal'] . ' 23:59:59');
$sql.= " OR FechaHasta <= " . DB::Date($filter['FechaHastaReal'] . ' 23:59:59') . ")";
}
if ((isset($filter['FechaHasta'])) && ($filter['FechaHasta'] != ''))
{
$sql.= " AND FechaHasta = " . DB::Date($filter['FechaHasta']);
}
if ((isset($filter['CategoriaTexto'])) && ($filter['CategoriaTexto'] != ''))
{
$sql.= " AND c.Nombre LIKE '%" . DB::StringUnquoted($filter['CategoriaTexto']) . "%'";
}
if ((isset($filter['Localidad'])) && ($filter['Localidad'] != ''))
{
$sql.= " AND e.Localidad LIKE '%" . DB::StringUnquoted($filter['Localidad']) . "%'";
}
if ((isset($filter['IdProvincia'])) && ($filter['IdProvincia'] != ''))
{
$sql.= " AND (e.IdProvincia = " . DB::Number($filter['IdProvincia']) . ")";
}
return $sql;
}
public function GetAll(array $filter = NULL, Page $oPage = NULL, $sortField = null, $sortOrder = null)
{
$sql = "SELECT e.*";
$sql.= " FROM tblEventos e";
$sql.= " LEFT JOIN tblEventosCategorias ec ON ec.IdEvento = e.IdEvento";
$sql.= " LEFT JOIN tblCategorias c ON ec.IdCategoria = c.IdCategoria";
$sql.= " LEFT JOIN tblEventoImagenes ei ON ei.IdEvento = e.IdEvento";
$sql.= " WHERE e.IdEstado = " . DB::Number(Estados::Activo);
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " GROUP BY e.IdEvento ";
if ($sortField)
{
if ($sortField == 'custom')
$sql.= " ORDER BY IF(e.Fecha < NOW(), 1, 0), e.Fecha " . DB::StringUnquoted($sortOrder);
else
$sql.= " ORDER BY " . DB::StringUnquoted($sortField) . " " . DB::StringUnquoted($sortOrder);
}
else
$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())
{
$oEvento = new Evento();
$oEvento->ParseFromArray($oRow);
array_push($arr, $oEvento);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdEvento)
{
$sql = "SELECT e.*";
$sql.= " FROM tblEventos e";
$sql.= " WHERE e.IdEvento = " . DB::Number($IdEvento);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEvento = new Evento();
$oEvento->ParseFromArray($oRow);
return $oEvento;
}
public function GetLast($Cantidad)
{
$sql = "SELECT e.*";
$sql.= " FROM tblEventos e";
$sql.= " WHERE e.IdEstado = " . DB::Number(Estados::Activo);
$sql.= " ORDER BY IdEvento DESC";
$sql.= " LIMIT " . DB::Number($Cantidad);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEvento = new Evento();
$oEvento->ParseFromArray($oRow);
array_push($arr, $oEvento);
$oRes->MoveNext();
}
return $arr;
}
public function GetAllByCategoria(Categoria $oCategoria)
{
$sql = "SELECT e.*";
$sql.= " FROM tblEventos e";
$sql.= " LEFT JOIN tblEventosCategorias ec ON ec.IdEvento = e.IdEvento";
$sql.= " LEFT JOIN tblCategorias c ON ec.IdCategoria = c.IdCategoria";
$sql.= " WHERE e.IdEstado = " . DB::Number(Estados::Activo);
$sql.= " AND (ec.IdCategoria = " . DB::Number($oCategoria->IdCategoria) . ")";
$sql.= " GROUP BY e.IdEvento";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEvento = new Evento();
$oEvento->ParseFromArray($oRow);
array_push($arr, $oEvento);
$oRes->MoveNext();
}
return $arr;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT e.*";
$sql.= " FROM tblEventos e";
$sql.= " LEFT JOIN tblEventosCategorias ec ON ec.IdEvento = e.IdEvento";
$sql.= " LEFT JOIN tblCategorias c ON ec.IdCategoria = c.IdCategoria";
$sql.= " WHERE e.IdEstado = " . DB::Number(Estados::Activo);
$sql.= ($filter) ? $this->ParseFilter($filter) : "";
$sql.= " GROUP BY e.IdEvento ";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function GetProximosEventos($Cantidad)
{
$sql = "SELECT e.*";
$sql.= " FROM tblEventos e";
$sql.= " LEFT JOIN tblEventoImagenes ei ON ei.IdEvento = e.IdEvento ";
$sql.= " WHERE e.IdEstado = " . DB::Number(Estados::Activo);
$sql.= " AND (e.Fecha >= " . DB::Date(date('d-m-Y'));
$sql.= " OR e.FechaHasta >= " . DB::Date(date('d-m-Y')) . ")";
$sql.= " GROUP BY e.IdEvento ";
$sql.= " ORDER BY e.Fecha ASC ";
$sql.= " LIMIT " . DB::Number($Cantidad);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEvento = new Evento();
$oEvento->ParseFromArray($oRow);
array_push($arr, $oEvento);
$oRes->MoveNext();
}
return $arr;
}
public function Create(Evento $oEvento)
{
$arr = array
(
'IdRegion' => DB::Number($oEvento->IdRegion),
'Fecha' => DB::Date($oEvento->Fecha),
'Titulo' => DB::String($oEvento->Titulo),
'Observaciones' => DB::String($oEvento->Observaciones),
'DescripcionTarifas' => DB::String($oEvento->DescripcionTarifas),
'IdEstado' => DB::Number(Estados::Activo),
'FechaHasta' => DB::Date($oEvento->FechaHasta),
'Latitud' => DB::String($oEvento->Latitud),
'Direccion' => DB::String($oEvento->Direccion),
'Web' => DB::String($oEvento->Web),
'Email' => DB::String($oEvento->Email),
'Video' => DB::String($oEvento->Video),
'Imagen' => DB::String($oEvento->Imagen),
'FechaInscripcionDesde' => DB::Date($oEvento->FechaInscripcionDesde),
'FechaInscripcionHasta' => DB::Date($oEvento->FechaInscripcionHasta),
'IdDelegado' => DB::Number($oEvento->IdDelegado),
'Suspendido' => DB::Bool($oEvento->Suspendido),
'InformacionAdicional' => DB::String($oEvento->InformacionAdicional),
'IdProvincia' => DB::Number($oEvento->IdProvincia),
'Localidad' => DB::String($oEvento->Localidad),
'Longitud' => DB::String($oEvento->Longitud)
);
if (!$this->Insert('tblEventos', $arr))
return false;
$oEvento->IdEvento = DBAccess::GetLastInsertId();
return $oEvento;
}
public function Update(Evento $oEvento)
{
$where = " IdEvento = " . DB::Number($oEvento->IdEvento);
$arr = array
(
'IdRegion' => DB::Number($oEvento->IdRegion),
'Fecha' => DB::Date($oEvento->Fecha),
'Titulo' => DB::String($oEvento->Titulo),
'Observaciones' => DB::String($oEvento->Observaciones),
'DescripcionTarifas' => DB::String($oEvento->DescripcionTarifas),
'IdEstado' => DB::Number(Estados::Activo),
'FechaHasta' => DB::Date($oEvento->FechaHasta),
'Latitud' => DB::String($oEvento->Latitud),
'Direccion' => DB::String($oEvento->Direccion),
'Web' => DB::String($oEvento->Web),
'Email' => DB::String($oEvento->Email),
'Video' => DB::String($oEvento->Video),
'Imagen' => DB::String($oEvento->Imagen),
'FechaInscripcionDesde' => DB::Date($oEvento->FechaInscripcionDesde),
'FechaInscripcionHasta' => DB::Date($oEvento->FechaInscripcionHasta),
'IdDelegado' => DB::Number($oEvento->IdDelegado),
'Suspendido' => DB::Bool($oEvento->Suspendido),
'InformacionAdicional' => DB::String($oEvento->InformacionAdicional),
'IdProvincia' => DB::Number($oEvento->IdProvincia),
'Localidad' => DB::String($oEvento->Localidad),
'Longitud' => DB::String($oEvento->Longitud)
);
if (!DBAccess::UpdateEntidad('tblEventos', $arr, $where))
return false;
return $oEvento;
}
public function Delete($IdEvento)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdEvento = " . DB::Number($IdEvento);
$arr = array('IdEstado' => DB::Number(Estados::Eliminado));
if (!DBAccess::UpdateEntidad('tblEventos', $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