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.noticiaimagen.php');
require_once('class.filter.php');
class NoticiaImagenes extends DBAccess
{
public function GetAll(Page $oPage = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblNoticiaImagenes ";
$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
$sql.= " ORDER BY Orden, IdImagen DESC";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oNoticiaImagen = new NoticiaImagen();
$oNoticiaImagen->ParseFromArray($oRow);
array_push($arr, $oNoticiaImagen);
$oRes->MoveNext();
}
return $arr;
}
public function GetLastId()
{
$sql = "SELECT *";
$sql.= " FROM tblNoticiaImagenes";
$sql.= " ORDER BY Orden, IdImagen DESC";
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oNoticiaImagen = new NoticiaImagen();
$oNoticiaImagen->ParseFromArray($oRow);
return $oNoticiaImagen;
}
public function GetById($IdImagen)
{
$sql = "SELECT ";
$sql.= " IdImagen,";
$sql.= " IdNoticia,";
$sql.= " Imagen,";
$sql.= " Epigrafe,";
$sql.= " Orden";
$sql.= " FROM tblNoticiaImagenes ";
$sql.= " WHERE IdImagen = " . DB::Number($IdImagen);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oNoticiaImagen = new NoticiaImagen();
$oNoticiaImagen->ParseFromArray($oRow);
return $oNoticiaImagen;
}
public function GetAllByNoticia(Noticia $oNoticia, Page $oPage = NULL)
{
$arr = array();
$sql = "SELECT ";
$sql.= " IdImagen,";
$sql.= " IdNoticia,";
$sql.= " Imagen,";
$sql.= " Epigrafe,";
$sql.= " Orden";
$sql.= " FROM tblNoticiaImagenes ";
$sql.= " WHERE IdNoticia = " . DB::Number($oNoticia->IdNoticia);
$sql.= " ORDER BY Orden, IdImagen ASC";
$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
if (!($oRes = $this->GetQuery($sql)))
return false;
while ($oRow = $oRes->GetRow())
{
$oNoticiaImagen = new NoticiaImagen();
$oNoticiaImagen->ParseFromArray($oRow);
array_push($arr, $oNoticiaImagen);
$oRes->MoveNext();
}
return $arr;
}
public function GetAllByIdNoticia($IdNoticia)
{
$arr = array();
$sql = "SELECT ";
$sql.= " *";
$sql.= " FROM tblNoticiaImagenes I ";
$sql.= " INNER JOIN tblNoticias N ON N.IdNoticia = I.IdNoticia ";
$sql.= " WHERE N.IdNoticia = " . $IdNoticia;
$sql.= " ORDER BY Orden";
if (!($oRes = $this->GetQuery($sql)))
return false;
while ($oRow = $oRes->GetRow())
{
$oNoticiaImagen = new NoticiaImagen();
$oNoticiaImagen->ParseFromArray($oRow);
array_push($arr, $oNoticiaImagen);
$oRes->MoveNext();
}
return $arr;
}
public function GetCountRows(Noticia $oNoticia)
{
$sql = "SELECT ";
$sql.= " IdImagen,";
$sql.= " IdNoticia,";
$sql.= " Imagen,";
$sql.= " Epigrafe,";
$sql.= " Orden";
$sql.= " FROM tblNoticiaImagenes ";
$sql.= " WHERE IdNoticia = '" . $oNoticia->IdNoticia . "'";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function Create(NoticiaImagen $oNoticiaImagen)
{
$arr = array
(
'IdNoticia' => DB::Number($oNoticiaImagen->IdNoticia),
'Imagen' => DB::String($oNoticiaImagen->Imagen),
'Epigrafe' => DB::String($oNoticiaImagen->Epigrafe),
'Orden' => DB::Number($oNoticiaImagen->Orden)
);
if (!$this->Insert('tblNoticiaImagenes', $arr))
return false;
return $oNoticiaImagen;
}
public function Update(NoticiaImagen $oNoticiaImagen)
{
$where = " IdImagen = " . DB::Number($oNoticiaImagen->IdImagen);
$arr = array
(
'IdNoticia' => DB::Number($oNoticiaImagen->IdNoticia),
'Imagen' => DB::String($oNoticiaImagen->Imagen),
'Epigrafe' => htmlentities(DB::String($oNoticiaImagen->Epigrafe)), //FIXME:: LLEVA htmlentities para que guarde bien desde AJAX
'Orden' => DB::Number($oNoticiaImagen->Orden)
);
if (!DBAccess::UpdateEntidad('tblNoticiaImagenes', $arr, $where))
return false;
return $oNoticiaImagen;
}
public function Delete($IdImagen)
{
if (!DBAccess::$db->Begin())
return false;
/* obtiene los datos de la imagen */
$oNoticiaImagen = $this->GetById($IdImagen);
if (!$oNoticiaImagen)
{
DBAccess::$db->Rollback();
return false;
}
/* elimina la imangen del directorio */
Up::DeleteFile(Noticia::PathImageThumb, $oNoticiaImagen->Imagen);
Up::DeleteFile(Noticia::PathImageBig, $oNoticiaImagen->Imagen);
/* elimina la imagen de la tabla */
$where = " IdImagen = " . DB::Number($IdImagen);
if (!DBAccess::DeleteEntidad('tblNoticiaImagenes', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
public function DeleteByNoticia(Noticia $oNoticia)
{
if (!DBAccess::$db->Begin())
return false;
$oNoticiaImagenes = new NoticiaImagenes();
$oNoticiaImagenes = $oNoticiaImagenes->GetAllByNoticia($oNoticia);
if ($oNoticiaImagenes)
{
foreach ($oNoticiaImagenes as $oNoticiaImagen)
{
/* elimina la imangen del directorio */
Up::DeleteFile(Noticia::PathImageThumb, $oNoticiaImagen->Imagen);
Up::DeleteFile(Noticia::PathImageBig, $oNoticiaImagen->Imagen);
}
}
/* elimina la imagen de la tabla */
$where = " IdNoticia = " . DB::Number($oNoticia->IdNoticia);
if (!DBAccess::DeleteEntidad('tblNoticiaImagenes', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat