212 lines
No EOL
4.6 KiB
PHP
Executable file
212 lines
No EOL
4.6 KiB
PHP
Executable file
<?php
|
|
/*
|
|
Player Name: cb video js 1.0 STABLE
|
|
Description: New Official cb video js player
|
|
Author: Fahad Abbas
|
|
ClipBucket Version: 2.8.1
|
|
|
|
|
|
* @Author : Arslan Hassan
|
|
* @Script : ClipBucket v2
|
|
* @License : Attribution Assurance License -- http://www.opensource.org/licenses/attribution.php
|
|
* @Since : September 15 2009
|
|
|
|
*/
|
|
|
|
$cb_video_js = false;
|
|
|
|
|
|
if (!function_exists('cb_video_js'))
|
|
{
|
|
define("CB_VJS_PLAYER",basename(dirname(__FILE__)));
|
|
define("CB_VJS_PLAYER_DIR",PLAYER_DIR."/".CB_VJS_PLAYER);
|
|
define("CB_VJS_PLAYER_URL",PLAYER_URL."/".CB_VJS_PLAYER);
|
|
assign('cb_vjs_player_dir',CB_VJS_PLAYER_DIR);
|
|
assign('cb_vjs_player_url',CB_VJS_PLAYER_URL);
|
|
|
|
function cb_video_js($in)
|
|
{
|
|
global $cb_video_js;
|
|
$cb_video_js = true;
|
|
|
|
$vdetails = $in['vdetails'];
|
|
|
|
$video_play = get_video_files($vdetails,true,true);
|
|
|
|
vids_assign($video_play);
|
|
|
|
if(!strstr($in['width'],"%"))
|
|
$in['width'] = $in['width'].'px';
|
|
if(!strstr($in['height'],"%"))
|
|
$in['height'] = $in['height'].'px';
|
|
|
|
|
|
assign('height',$in['height']);
|
|
assign('width',$in['width']);
|
|
assign('player_config',$in);
|
|
assign('vdata',$vdetails);
|
|
assign('cb_logo',cb_logo());
|
|
#assign('video_files',$video_play);
|
|
|
|
Template(CB_VJS_PLAYER_DIR.'/cb_video_js.html',false);
|
|
return true;
|
|
}
|
|
|
|
/*
|
|
* This Function is written to base64 encode file fo cb logo
|
|
*/
|
|
function cb_logo()
|
|
{
|
|
$l_details = BASEDIR.'/images/icons/country/hp-cb.png';
|
|
$l_convert = base64_encode(file_get_contents($l_details));
|
|
return $l_convert;
|
|
}
|
|
|
|
/*
|
|
* This Function is written to get qulaity of current file
|
|
*/
|
|
function get_cbvjs_quality($src){
|
|
|
|
$quality = explode('-', $src);
|
|
$quality = end($quality);
|
|
$quality = explode('.',$quality);
|
|
$quality = $quality[0];
|
|
return $quality;
|
|
}
|
|
|
|
|
|
/*
|
|
* This Function is written to set default resolution for cb_vjs_player
|
|
*/
|
|
function get_cbvjs_quality_type($video_files){
|
|
if ($video_files){
|
|
if (!empty($video_files[240])){
|
|
$video_file = $video_files[240];
|
|
}else{
|
|
$video_file = $video_files[0];
|
|
}
|
|
$one_file = get_cbvjs_quality($video_file);
|
|
if (is_numeric($one_file)){
|
|
$cb_combo_res = True;
|
|
}else{
|
|
$cb_combo_res = False;
|
|
}
|
|
|
|
if ($cb_combo_res){
|
|
foreach ($video_files as $key => $file) {
|
|
$res[] = get_cbvjs_quality($file);
|
|
}
|
|
$all_res = $res;
|
|
if (in_array('360', $all_res)){
|
|
$quality = '360';
|
|
}else{
|
|
$quality = 'low';
|
|
}
|
|
}else{
|
|
$quality = "low";
|
|
}
|
|
return $quality;
|
|
}else{
|
|
return False;
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* Used to return functions of custom/premium plugins
|
|
* @param : { Array } { function } { videoid }
|
|
* @example : get_my_function($params) { will check the required function name and return the case }
|
|
* @return : { functions/Boolean }
|
|
* @since : 01st August, 2016 ClipBucket 2.8.1
|
|
* @author : Fahad Abbas
|
|
*/
|
|
function get_my_function($params){
|
|
|
|
$function = $params['function'];
|
|
$videoid = $params['videoid'];
|
|
|
|
if (!$function){
|
|
return False;
|
|
}
|
|
|
|
switch ($function) {
|
|
|
|
case 'get_ultimate_ads':{
|
|
if (CB_ULTIMATE_ADS == 'installed'){
|
|
|
|
global $CbUads;
|
|
$ads_array = array("filter_ad"=>true,"status"=>"1","non_expiry"=>'true');
|
|
$current_ad = $CbUads->get_ultimate_ads($ads_array);
|
|
|
|
if ( !empty($current_ad) ){
|
|
return $current_ad;
|
|
}else{
|
|
return false;
|
|
}
|
|
}else{
|
|
return false;
|
|
}
|
|
|
|
}
|
|
break;
|
|
|
|
case 'get_timeCommnets':{
|
|
if (CB_TIMECOMMENTS_PLUGIN == 'installed'){
|
|
$timecomments = get_timeComments($videoid);
|
|
if (!empty($timecomments)){
|
|
return json_encode($timecomments);
|
|
}else{
|
|
return false;
|
|
}
|
|
}else{
|
|
return false;
|
|
}
|
|
}
|
|
break;
|
|
|
|
case 'get_video_editor':{
|
|
if ( IA_ADS_INSTALLED == 'installed' ){
|
|
$video_editor_enabled = video_editor_enabled();
|
|
return $video_editor_enabled;
|
|
}else{
|
|
return false;
|
|
}
|
|
}
|
|
case 'get_svg_manager':{
|
|
if ( IA_ADS_INSTALLED == 'installed' ){
|
|
$svg_manager = svg_manager();
|
|
return $svg_manager;
|
|
}else{
|
|
return false;
|
|
}
|
|
}
|
|
case 'get_slot':{
|
|
if ( IA_ADS_INSTALLED == 'installed' ){
|
|
global $ia_ads;
|
|
$slot_paramas['videoid'] = $videoid;
|
|
|
|
if ( !empty($_GET['slot_id']) ){
|
|
$slot_paramas['slot_id'] = $_GET['slot_id'];
|
|
}else{
|
|
$slot_paramas['state'] = '1';
|
|
}
|
|
$slot_id = $ia_ads->get_slot($slot_paramas)[0]['slot_id'];
|
|
if (!empty($slot_id)){
|
|
$instances = $ia_ads->get_instance(array("slot_id"=>$slot_id,'order'=>'starttime ASC'));
|
|
}
|
|
return $instances;
|
|
}else{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
default:
|
|
# code...
|
|
break;
|
|
}
|
|
}
|
|
|
|
register_actions_play_video('cb_video_js');
|
|
}
|
|
|
|
?>
|