Mister Spy Say ="Hello Kids ... :D" ___ ____ _ _____ | \/ (_) | | / ___| | . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _ | |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | | | | | | \__ \ || __/ | /\__/ / |_) | |_| | \_| |_/_|___/\__\___|_| \____/| .__/ \__, | | | __/ | |_| |___/ Bot Mister Spy V3
Mister Spy

Mister Spy

Current Path : /home/caballoscriollos/www/web/library/
Upload File :
Current File : /home/caballoscriollos/www/web/library/class.videos.php

<?php 

require_once('class.dbaccess.php');
require_once('class.video.php');
require_once('class.filter.php');
require_once('class.page.php');
require_once('class.estados.php');

class Videos extends DBAccess implements IFilterable
{
	public function ParseFilter(array $filter)
	{
		if ((isset($filter['Nombre'])) && ($filter['Nombre'] != ''))
			$sql.= " AND v.Nombre LIKE '%" . DB::StringUnquoted($filter['Nombre']) . "%'";
		
		if ((isset($filter['IdCategoria'])) && ($filter['IdCategoria'] != ''))
			$sql.= " AND v.IdCategoria = " . DB::Number($filter['IdCategoria']);
		
		if ((isset($filter['Vivo'])) && ($filter['Vivo'] !== ''))
			$sql.= " AND v.Vivo = " . DB::Bool($filter['Vivo']);
		
		return $sql;
	}
	

	public function GetAll(array $filter = NULL, Page $oPage = NULL)
	{
		$sql = "SELECT v.*";
		$sql.= " FROM tblVideos v";		
		$sql.= " WHERE v.IdEstado = " . DB::Number(Estados::Activo);
		$sql.= ($filter) ? $this->ParseFilter($filter) : "";
		$sql.= " ORDER BY v.IdVideo DESC";
		$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;

		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oVideo = new Video();
			$oVideo->ParseFromArray($oRow);
			
			array_push($arr, $oVideo);
			
			$oRes->MoveNext();
		}	
			
		return $arr;
	}
	

	public function GetById($IdVideo)
	{
		$sql = "SELECT v.*";
		$sql.= " FROM tblVideos v";		
		$sql.= " WHERE IdVideo = " . DB::Number($IdVideo);	
		
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oVideo = new Video();
		$oVideo->ParseFromArray($oRow);
		
		return $oVideo;		
	}
	
	
	public function GetLastByCategoria(Categoria $oCategoria, $Cantidad)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblVideos";
		$sql.= " WHERE IdEstado = " . DB::Number(Estados::Activo);
		$sql.= " AND IdCategoria = " . DB::Number($oCategoria->IdCategoria);	
		$sql.= " ORDER BY IdVideo ASC";
		$sql.= ($Cantidad) ? " LIMIT " . DB::Number($Cantidad) : "";

		if (!($oRes = $this->GetQuery($sql)))
			return false;

		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oVideo = new Video();
			$oVideo->ParseFromArray($oRow);
			
			array_push($arr, $oVideo);
			
			$oRes->MoveNext();
		}	
			
		return $arr;
	}	
	
	
	public function GetVivo()
	{
		$sql = "SELECT *";
		$sql.= " FROM tblVideos";
		$sql.= " WHERE IdEstado = " . DB::Number(Estados::Activo);
		$sql.= " AND Vivo = 1";	
		$sql.= " ORDER BY IdVideo ASC";
		$sql.= " LIMIT 1";

		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oVideo = new Video();
		$oVideo->ParseFromArray($oRow);
		
		return $oVideo;
	}	
	

	public function GetByNombre($Nombre)
	{
		$sql = "SELECT v.*";
		$sql.= " FROM tblVideos v";		
		$sql.= " WHERE Nombre LIKE " . DB::String($Nombre);	
		$sql.= " WAND v.IdEstado = " . DB::Number(Estados::Activo);
		
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oVideo = new Video();
		$oVideo->ParseFromArray($oRow);
		
		return $oVideo;		
	}
	
	
	public function GetCountRows(array $filter = NULL)
	{
		$sql = "SELECT v.*";
		$sql.= " FROM tblVideos v";		
		$sql.= " WHERE v.IdEstado = " . DB::Number(Estados::Activo);
		$sql.= ($filter) ? $this->ParseFilter($filter) : "";

		if (!($oRes = $this->GetQuery($sql)))
			return false;
		
		$CountRows = $oRes->NumRows();
		
		return $CountRows;
	}
	
	
	public function GetAllByCategoria(Categoria $oCategoria)
	{
		$sql = "SELECT v.*";
		$sql.= " FROM tblVideos v";		
		$sql.= " WHERE v.IdEstado = " . DB::Number(Estados::Activo);
		$sql.= " AND IdCategoria = " . DB::Number($oCategoria->IdCategoria);	

		if (!($oRes = $this->GetQuery($sql)))
			return false;

		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oVideo = new Video();
			$oVideo->ParseFromArray($oRow);
			
			array_push($arr, $oVideo);
			
			$oRes->MoveNext();
		}	
			
		return $arr;
	}		

	
	public function Create(Video $oVideo)
	{
		$arr = array
		(
			'IdCategoria'	=> DB::Number($oVideo->IdCategoria),
			'Nombre' 		=> DB::String($oVideo->Nombre),
			'Descripcion'	=> DB::String($oVideo->Descripcion),
			'Url' 			=> DB::String($oVideo->Url),
			'IdEstado'		=> DB::Number($oVideo->IdEstado),
			'Vivo'			=> DB::Bool($oVideo->Vivo)
		);
				
		if (!$this->Insert('tblVideos', $arr))
			return false;
			
		$oVideo->IdVideo = DBAccess::GetLastInsertId();
			
		return $oVideo;
	}
	
	
	public function Update(Video $oVideo)
	{
		$where = " IdVideo = " . DB::Number($oVideo->IdVideo);
		
		$arr = array
		(
			'IdCategoria'	=> DB::Number($oVideo->IdCategoria),
			'Nombre' 		=> DB::String($oVideo->Nombre),
			'Descripcion'	=> DB::String($oVideo->Descripcion),
			'Url' 			=> DB::String($oVideo->Url),
			'IdEstado'		=> DB::Number($oVideo->IdEstado),
			'Vivo'			=> DB::Bool($oVideo->Vivo)
		);
		
		if (!DBAccess::UpdateEntidad('tblVideos', $arr, $where))
			return false;
		
		return $oVideo;
	}
	

	public function Delete($IdVideo)
	{
		$where = " IdVideo = " . DB::Number($IdVideo);

		$arr = array('IdEstado'	=> DB::Number(Estados::Eliminado));

		if (!DBAccess::UpdateEntidad('tblVideos', $arr, $where))
			return false;

		return true;	
	}		
}

?>

Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat