Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.filter.php');
require_once('class.page.php');
require_once('class.encuestaenvio.php');
class EncuestaEnvios extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql = ' WHERE 1';
if (isset($filter['IdEncuesta']))
$sql.= " AND IdEncuesta = " . DB::Number($filter['IdEncuesta']);
if (isset($filter['Email']) && ($filter['Email'] != ''))
$sql.= " AND Email LIKE '%" . DB::StringUnquoted($filter['Email']) . "%'";
if (isset($filter['Anonimo']) && ($filter['Anonimo'] == '0'))
$sql.= " AND Nombre <> '' AND Apellido <> '' AND Empresa <> ''";
return $sql;
}
public function GetPagesCount(Page $oPage, $filter = false)
{
$sql = "SELECT COUNT(1) / " . DB::Number($oPage->Size) . " AS Count";
$sql.= " FROM tblEncuestaEnvios";
if ($filter)
$sql.= " " . $this->ParseFilter($filter);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$Count = $oRow['Count'];
return ceil($Count);
}
public function GetAll(array $filter = NULL, Page $oPage = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblEncuestaEnvios";
if ($filter)
$sql.= $this->ParseFilter($filter);
$sql.= " ORDER BY FechaEnvio DESC";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEncuestaEnvio = new EncuestaEnvio();
$oEncuestaEnvio->ParseFromArray($oRow);
array_push($arr, $oEncuestaEnvio);
$oRes->MoveNext();
}
return $arr;
}
public function GetAllByEncuesta(Encuesta $oEncuesta)
{
$sql = "SELECT *";
$sql.= " FROM tblEncuestaEnvios";
$sql.= " WHERE IdEncuesta = " . DB::Number($oEncuesta->IdEncuesta);
$sql.= " ORDER BY FechaEnvio DESC";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEncuestaEnvio = new EncuestaEnvio();
$oEncuestaEnvio->ParseFromArray($oRow);
array_push($arr, $oEncuestaEnvio);
$oRes->MoveNext();
}
return $arr;
}
public function GetAllVotantesByEncuesta(Encuesta $oEncuesta, $orden = null)
{
$sql = "SELECT ee.*";
$sql.= " FROM tblEncuestaEnvios ee";
$sql.= " INNER JOIN tblUsuarios u ON ee.IdUsuario = u.IdUsuario";
$sql.= " WHERE IdEncuesta = " . DB::Number($oEncuesta->IdEncuesta);
if (!$orden)
$sql.= " ORDER BY u.Nombre, u.Apellido, u.RazonSocial";
elseif ($orden == 'NroSocio')
$sql.= " ORDER BY ($orden + 0)";
else
$sql.= " ORDER BY $orden";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEncuestaEnvio = new EncuestaEnvio();
$oEncuestaEnvio->ParseFromArray($oRow);
array_push($arr, $oEncuestaEnvio);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdEncuestaEnvio)
{
$sql = "SELECT *";
$sql.= " FROM tblEncuestaEnvios";
$sql.= " WHERE IdEncuestaEnvio = " . DB::Number($IdEncuestaEnvio);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEncuestaEnvio = new EncuestaEnvio();
$oEncuestaEnvio->ParseFromArray($oRow);
return $oEncuestaEnvio;
}
public function GetByCode($Code)
{
$sql = "SELECT *";
$sql.= " FROM tblEncuestaEnvios";
$sql.= " WHERE MD5(CONCAT(IdEncuestaEnvio, IdEncuesta, Nombre, Apellido, Email)) = " . DB::String($Code);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEncuestaEnvio = new EncuestaEnvio();
$oEncuestaEnvio->ParseFromArray($oRow);
return $oEncuestaEnvio;
}
public function GetByIp($IdEncuesta, $Ip)
{
$sql = "SELECT *";
$sql.= " FROM tblEncuestaEnvios";
$sql.= " WHERE IdEncuesta = " . DB::Number($IdEncuesta);
$sql.= " AND Ip = " . DB::String($Ip);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEncuestaEnvio = new EncuestaEnvio();
$oEncuestaEnvio->ParseFromArray($oRow);
return $oEncuestaEnvio;
}
public function GetByIdUsuario($IdEncuesta, $IdUsuario)
{
$sql = "SELECT *";
$sql.= " FROM tblEncuestaEnvios";
$sql.= " WHERE IdEncuesta = " . DB::Number($IdEncuesta);
$sql.= " AND IdUsuario = " . DB::Number($IdUsuario);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEncuestaEnvio = new EncuestaEnvio();
$oEncuestaEnvio->ParseFromArray($oRow);
return $oEncuestaEnvio;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblEncuestaEnvios";
if ($filter)
$sql.= $this->ParseFilter($filter);
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function Create(EncuestaEnvio $oEncuestaEnvio)
{
$arr = array
(
'IdEncuesta' => DB::Number($oEncuestaEnvio->IdEncuesta),
'IdUsuario' => DB::Number($oEncuestaEnvio->IdUsuario),
'Ip' => DB::String($oEncuestaEnvio->Ip),
'Email' => DB::String($oEncuestaEnvio->Email),
'FechaEnvio' => DB::Date($oEncuestaEnvio->FechaEnvio),
'FechaRealizacion' => DB::Date($oEncuestaEnvio->FechaRealizacion),
'Estado' => DB::Number($oEncuestaEnvio->Estado)
);
if (!$this->Insert('tblEncuestaEnvios', $arr))
return false;
$oEncuestaEnvio->IdEncuestaEnvio = DBAccess::GetLastInsertId();
return $oEncuestaEnvio;
}
public function Update(EncuestaEnvio $oEncuestaEnvio)
{
$where = " IdEncuestaEnvio = " . DB::Number($oEncuestaEnvio->IdEncuestaEnvio);
$arr = array
(
'Ip' => DB::String($oEncuestaEnvio->Ip),
'FechaRealizacion' => DB::Date($oEncuestaEnvio->FechaRealizacion),
'Estado' => DB::Number($oEncuestaEnvio->Estado)
);
if (!DBAccess::Update('tblEncuestaEnvios', $arr, $where))
return false;
return $oEncuestaEnvio;
}
public function Delete($IdEncuestaEnvio)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdEncuestaEnvio = " . DB::Number($IdEncuestaEnvio);
if (!DBAccess::Delete('tblEncuestaEnvios', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat