Server IP : 180.180.241.3 / Your IP : 216.73.216.252 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/app/webroot/news/plugins/content/ |
Upload File : |
<?php /** * @version 4.5.0 * @package AllVideos (plugin) * @author JoomlaWorks - http://www.joomlaworks.net * @copyright Copyright (c) 2006 - 2013 JoomlaWorks Ltd. All rights reserved. * @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html */ // no direct access defined('_JEXEC') or die('Restricted access'); jimport('joomla.plugin.plugin'); if (version_compare(JVERSION, '1.6.0', 'ge')){ jimport('joomla.html.parameter'); } class plgContentJw_allvideos extends JPlugin { // JoomlaWorks reference parameters var $plg_name = "jw_allvideos"; var $plg_copyrights_start = "\n\n<!-- JoomlaWorks \"AllVideos\" Plugin (v4.5.0) starts here -->\n"; var $plg_copyrights_end = "\n<!-- JoomlaWorks \"AllVideos\" Plugin (v4.5.0) ends here -->\n\n"; function plgContentJw_allvideos( &$subject, $params ){ parent::__construct( $subject, $params ); // Define the DS constant under Joomla! 3.0 if (!defined('DS')){ define('DS', DIRECTORY_SEPARATOR); } } // Joomla! 1.5 function onPrepareContent(&$row, &$params, $page = 0) { $this->renderAllVideos($row, $params, $page = 0); } // Joomla! 2.5+ function onContentPrepare($context, &$row, &$params, $page = 0) { $this->renderAllVideos($row, $params, $page = 0); } // The main function function renderAllVideos(&$row, &$params, $page = 0){ // API jimport('joomla.filesystem.file'); $mainframe = JFactory::getApplication(); $document = JFactory::getDocument(); // Assign paths $sitePath = JPATH_SITE; $siteUrl = JURI::root(true); if (version_compare(JVERSION, '1.6.0', 'ge')) { $pluginLivePath = $siteUrl.'/plugins/content/'.$this->plg_name.'/'.$this->plg_name; } else { $pluginLivePath = $siteUrl.'/plugins/content/'.$this->plg_name; } // Check if plugin is enabled if(JPluginHelper::isEnabled('content',$this->plg_name)==false) return; // Load the plugin language file the proper way JPlugin::loadLanguage('plg_content_'.$this->plg_name, JPATH_ADMINISTRATOR); // Includes require_once(dirname(__FILE__).DS.$this->plg_name.DS.'includes'.DS.'helper.php'); require(dirname(__FILE__).DS.$this->plg_name.DS.'includes'.DS.'sources.php'); // Simple performance check to determine whether plugin should process further $grabTags = str_replace("(","",str_replace(")","",implode(array_keys($tagReplace),"|"))); if(preg_match("#{(".$grabTags.")}#s",$row->text)==false) return; // ----------------------------------- Get plugin parameters ----------------------------------- // Get plugin info $plugin = JPluginHelper::getPlugin('content', $this->plg_name); // Control external parameters and set variable for controlling plugin layout within modules if (!$params) $params = class_exists('JParameter') ? new JParameter(null) : new JRegistry(null); $parsedInModule = $params->get('parsedInModule'); $pluginParams = class_exists('JParameter') ? new JParameter($plugin->params) : new JRegistry($plugin->params); /* Preset Parameters */ $skin = 'bekle'; /* Video Parameters */ $playerTemplate = ($params->get('playerTemplate')) ? $params->get('playerTemplate') : $pluginParams->get('playerTemplate','Classic'); $vfolder = ($params->get('vfolder')) ? $params->get('vfolder') : $pluginParams->get('vfolder','images/stories/videos'); $vwidth = ($params->get('vwidth')) ? $params->get('vwidth') : $pluginParams->get('vwidth',400); $vheight = ($params->get('vheight')) ? $params->get('vheight') : $pluginParams->get('vheight',300); $transparency = $pluginParams->get('transparency','transparent'); $background = $pluginParams->get('background','#010101'); $backgroundQT = $pluginParams->get('backgroundQT','black'); $controlBarLocation = $pluginParams->get('controlBarLocation','bottom'); /* Audio Parameters */ $afolder = $pluginParams->get('afolder','images/stories/audio'); $awidth = ($params->get('awidth')) ? $params->get('awidth') : $pluginParams->get('awidth',480); $aheight = ($params->get('aheight')) ? $params->get('aheight') : $pluginParams->get('aheight',24); $abackground = $pluginParams->get('abackground','#010101'); $afrontcolor = $pluginParams->get('afrontcolor','#FFFFFF'); $alightcolor = $pluginParams->get('alightcolor','#00ADE3'); $allowAudioDownloading = $pluginParams->get('allowAudioDownloading',0); /* Global Parameters */ $autoplay = ($params->get('autoplay')) ? $params->get('autoplay') : $pluginParams->get('autoplay',0); /* Performance Parameters */ $gzipScripts = $pluginParams->get('gzipScripts',0); // Variable cleanups for K2 if(JRequest::getCmd('format')=='raw'){ $this->plg_copyrights_start = ''; $this->plg_copyrights_end = ''; } // Assign the AllVideos helper class $AllVideosHelper = new AllVideosHelper; // ----------------------------------- Render the output ----------------------------------- // Append head includes only when the document is in HTML mode if(JRequest::getCmd('format')=='html' || JRequest::getCmd('format')==''){ // CSS $avCSS = $AllVideosHelper->getTemplatePath($this->plg_name,'css/template.css',$playerTemplate); $avCSS = $avCSS->http; $document->addStyleSheet($avCSS); // JS if(version_compare(JVERSION,'1.6.0','ge')) { JHtml::_('behavior.framework'); } else { JHTML::_('behavior.mootools'); } if($gzipScripts){ $document->addScript($pluginLivePath.'/includes/js/jw_allvideos.js.php?v=4.5.0'); } else { $document->addScript($pluginLivePath.'/includes/js/behaviour.js?v=4.5.0'); $document->addScript($pluginLivePath.'/includes/js/mediaplayer/jwplayer.min.js?v=4.5.0'); $document->addScript($pluginLivePath.'/includes/js/wmvplayer/silverlight.js?v=4.5.0'); $document->addScript($pluginLivePath.'/includes/js/wmvplayer/wmvplayer.js?v=4.5.0'); $document->addScript($pluginLivePath.'/includes/js/quicktimeplayer/AC_QuickTime.js?v=4.5.0'); } } // Loop throught the found tags foreach ($tagReplace as $plg_tag => $value) { // expression to search for $regex = "#{".$plg_tag."}.*?{/".$plg_tag."}#s"; // process tags if(preg_match_all($regex, $row->text, $matches, PREG_PATTERN_ORDER)) { // start the replace loop foreach ($matches[0] as $key => $match) { $tagcontent = preg_replace("/{.+?}/", "", $match); $tagparams = explode('|',$tagcontent); $tagsource = trim(strip_tags($tagparams[0])); // Prepare the HTML $output = new JObject; // Width/height/source folder split per media type if(in_array($plg_tag, array( 'mp3', 'mp3remote', 'aac', 'aacremote', 'm4a', 'm4aremote', 'ogg', 'oggremote', 'wma', 'wmaremote', 'soundcloud' ))){ $final_awidth = (@$tagparams[1]) ? $tagparams[1] : $awidth; $final_aheight = (@$tagparams[2]) ? $tagparams[2] : $aheight; $output->playerWidth = $final_awidth; $output->playerHeight = $final_aheight; $output->folder = $afolder; if($plg_tag=='soundcloud'){ if(strpos($tagsource,'/sets/')!==false){ $output->mediaTypeClass = ' avSoundCloudSet'; } else { $output->mediaTypeClass = ' avSoundCloudSong'; } $output->mediaType = ''; } else { $output->mediaTypeClass = ' avAudio'; $output->mediaType = 'audio'; } if(in_array($plg_tag, array('mp3','aac','m4a','ogg','wma'))){ $output->source = "$siteUrl/$afolder/$tagsource.$plg_tag"; } elseif(in_array($plg_tag, array('mp3remote','aacremote','m4aremote','oggremote','wmaremote'))){ $output->source = $tagsource; } else { $output->source = ''; } } else { $final_vwidth = (@$tagparams[1]) ? $tagparams[1] : $vwidth; $final_vheight = (@$tagparams[2]) ? $tagparams[2] : $vheight; $output->playerWidth = $final_vwidth; $output->playerHeight = $final_vheight; $output->folder = $vfolder; $output->mediaType = 'video'; $output->mediaTypeClass = ' avVideo'; } // Autoplay $final_autoplay = (@$tagparams[3]) ? $tagparams[3] : $autoplay; $final_autoplay = ($final_autoplay) ? 'true' : 'false'; // Special treatment for specific video providers if($plg_tag=="dailymotion"){ $tagsource = preg_replace("~(http|https):(.+?)dailymotion.com\/video\/~s","",$tagsource); $tagsourceDailymotion = explode('_',$tagsource); $tagsource = $tagsourceDailymotion[0]; if($final_autoplay=='true'){ if(strpos($tagsource,'?')!==false){ $tagsource = $tagsource.'&autoPlay=1'; } else { $tagsource = $tagsource.'?autoPlay=1'; } } } if($plg_tag=="ku6"){ $tagsource = str_replace('.html','',$tagsource); } if($plg_tag=="metacafe" && substr($tagsource,-1,1)=='/'){ $tagsource = substr($tagsource,0,-1); } if($plg_tag=="tnaondemand"){ $tagsource = parse_url($tagsource); $tagsource = explode('&',$tagsource['query']); $tagsource = str_replace('vidid=','',$tagsource[0]); } if($plg_tag=="twitvid"){ $tagsource = preg_replace("~(http|https):(.+?)twitvid.com\/~s","",$tagsource); if($final_autoplay=='true'){ $tagsource = $tagsource.'&autoplay=1'; } } if($plg_tag=="vidiac"){ $tagsourceVidiac = explode(';',$tagsource); $tagsource = $tagsourceVidiac[0]; } if($plg_tag=="vimeo"){ $tagsource = preg_replace("~(http|https):(.+?)vimeo.com\/~s","",$tagsource); if(strpos($tagsource,'?')!==false){ $tagsource = $tagsource.'&portrait=0'; } else { $tagsource = $tagsource.'?portrait=0'; } if($final_autoplay=='true'){ $tagsource = $tagsource.'&autoplay=1'; } } if($plg_tag=="yahoo"){ $tagsourceYahoo = explode('-',str_replace('.html','',$tagsource)); $tagsourceYahoo = array_reverse($tagsourceYahoo); $tagsource = $tagsourceYahoo[0]; } if($plg_tag=="yfrog"){ $tagsource = preg_replace("~(http|https):(.+?)yfrog.com\/~s","",$tagsource); } if($plg_tag=="youmaker"){ $tagsourceYoumaker = explode('-',str_replace('.html','',$tagsource)); $tagsource = $tagsourceYoumaker[1]; } if($plg_tag=="youku"){ $tagsource = str_replace('.html','',$tagsource); $tagsource = substr($tagsource,3); } if($plg_tag=="youtube"){ $tagsource = preg_replace("~(http|https):(.+?)youtube.com\/watch\?v=~s","",$tagsource); $tagsourceYoutube = explode('&',$tagsource); $tagsource = $tagsourceYoutube[0]; if(strpos($tagsource,'?')!==false){ $tagsource = $tagsource.'&rel=0&fs=1&wmode=transparent'; } else { $tagsource = $tagsource.'?rel=0&fs=1&wmode=transparent'; } if($final_autoplay=='true'){ $tagsource = $tagsource.'&autoplay=1'; } } // Poster frame $posterFramePath = $sitePath.DS.str_replace('/',DS,$vfolder); if(JFile::exists($posterFramePath.DS.$tagsource.'.jpg')){ $output->posterFrame = $siteUrl.'/'.$vfolder.'/'.$tagsource.'.jpg'; } elseif(JFile::exists($posterFramePath.DS.$tagsource.'.png')){ $output->posterFrame = $siteUrl.'/'.$vfolder.'/'.$tagsource.'.png'; } elseif(JFile::exists($posterFramePath.DS.$tagsource.'.gif')){ $output->posterFrame = $siteUrl.'/'.$vfolder.'/'.$tagsource.'.gif'; } else { $output->posterFrame = ''; } // Set a unique ID $output->playerID = 'AVPlayerID_'.substr(md5($tagsource),1,8).'_'.rand(); // Placeholder elements $findAVparams = array( "{SOURCE}", "{SOURCEID}", "{FOLDER}", "{WIDTH}", "{HEIGHT}", "{PLAYER_AUTOPLAY}", "{PLAYER_TRANSPARENCY}", "{PLAYER_BACKGROUND}", "{PLAYER_BACKGROUNDQT}", "{PLAYER_CONTROLBAR}", "{SITEURL}", "{SITEURL_ABS}", "{FILE_EXT}", "{PLUGIN_PATH}", "{PLAYER_POSTER_FRAME}", "{PLAYER_SKIN}", "{PLAYER_ABACKGROUND}", "{PLAYER_AFRONTCOLOR}", "{PLAYER_ALIGHTCOLOR}" ); // Replacement elements $replaceAVparams = array( $tagsource, $output->playerID, $output->folder, $output->playerWidth, $output->playerHeight, $final_autoplay, $transparency, $background, $backgroundQT, $controlBarLocation, $siteUrl, substr(JURI::root(false),0,-1), $plg_tag, $pluginLivePath, $output->posterFrame, $skin, $abackground, $afrontcolor, $alightcolor ); // Do the element replace $output->player = JFilterOutput::ampReplace(str_replace($findAVparams, $replaceAVparams, $tagReplace[$plg_tag])); // Fetch the template ob_start(); $getTemplatePath = $AllVideosHelper->getTemplatePath($this->plg_name,'default.php',$playerTemplate); $getTemplatePath = $getTemplatePath->file; include($getTemplatePath); $getTemplate = $this->plg_copyrights_start.ob_get_contents().$this->plg_copyrights_end; ob_end_clean(); // Output $row->text = preg_replace("#{".$plg_tag."}".preg_quote($tagcontent)."{/".$plg_tag."}#s", $getTemplate , $row->text); } // End second foreach } // End if } // End first foreach } // End function } // End class