| Server IP : 180.180.241.3 / Your IP : 216.73.216.35 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/AppServ/www/news/components/com_youtubegallery/includes/ |
Upload File : |
<?php
/**
* YoutubeGallery
* @version 3.8.3
* @author DesignCompass corp< <support@joomlaboat.com>
* @link http://www.joomlaboat.com
* @GNU General Public License
**/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
if(!defined('DS'))
define('DS',DIRECTORY_SEPARATOR);
require_once(JPATH_SITE.DS.'components'.DS.'com_youtubegallery'.DS.'includes'.DS.'misc.php');
class VideoSource_YoutubeUserFavorites
{
public static function extractYouTubeUserID($youtubeURL)
{
//link example: http://www.youtube.com/user/acharnesnews/favorites
$matches=explode('/',$youtubeURL);
if (count($matches) >3)
{
$userid = $matches[4];
return $userid;
}
return '';
}
public static function getVideoIDList($youtubeURL,$optionalparameters,&$userid,&$datalink)
{
$optionalparameters_arr=explode(',',$optionalparameters);
$videolist=array();
$spq=implode('&',$optionalparameters_arr);
$userid=VideoSource_YoutubeUserFavorites::extractYouTubeUserID($youtubeURL);
if($userid=='')
return $videolist; //user id not found
$url = 'http://gdata.youtube.com/feeds/api/users/'.$userid.'/favorites?v=2'.($spq!='' ? '&'.$spq : '' ) ; //&max-results=10
$datalink=$url;
$xml=false;
$htmlcode=YouTubeGalleryMisc::getURLData($url);
if($htmlcode=='')
return $videolist;
if(strpos($htmlcode,'<?xml version')===false)
{
if(strpos($htmlcode,'Invalid id')===false)
return 'Cannot load data, Invalid id';
return 'Cannot load data, no connection';
}
$xml = simplexml_load_string($htmlcode);
if($xml){
foreach ($xml->entry as $entry)
{
$attr=$entry->link[0]->attributes();
if(isset($entry->link[0]) && $attr['rel'] == 'alternate')
{
$videolist[] = $attr['href'];
}
else
{
$attr=$entry->link[1]->attributes();
$videolist[] = $attr['href'];
}
}
}
return $videolist;
}
}
?>