| Server IP : 172.67.159.97 / Your IP : 216.73.217.154 Web Server : nginx/1.24.0 System : Linux wordpress-sites 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/rebeccaone.com/wp-content/plugins/revslider/includes/external/ |
Upload File : |
<?php
/**
* External Sources YouTube Class
* @since: 5.0
* @author ThemePunch <[email protected]>
* @link https://www.sliderrevolution.com/
* @copyright 2024 ThemePunch
*/
if(!defined('ABSPATH')) exit();
/**
* Youtube
*
* with help of the API this class delivers all kind of Images/Videos from youtube
*
* @package socialstreams
* @subpackage socialstreams/youtube
* @author ThemePunch <[email protected]>
*/
class RevSliderYoutube extends RevSliderFunctions {
/**
* API key
*
* @access private
* @var string $api_key Youtube API key
*/
private $api_key;
/**
* Channel ID
*
* @access private
* @var string $channel_id Youtube Channel ID
*/
private $channel_id;
/**
* Stream Array
*
* @access private
* @var array $stream Stream Data Array
*/
private $stream;
/**
* Transient seconds
*
* @access private
* @var number $transient Transient time in seconds
*/
private $transient_sec;
/**
* Initialize the class and set its properties.
*
* @param string $api_key Youtube API key.
*/
public function __construct($api_key, $channel_id, $transient_sec = 1200){
$this->api_key = $api_key;
$this->channel_id = $channel_id;
$this->transient_sec = $transient_sec;
}
/**
* Get Youtube Playlists
*/
public function get_playlists(){
//call the API and decode the response
$url = "https://www.googleapis.com/youtube/v3/playlists?part=snippet&maxResults=50&channelId=".$this->channel_id."&key=".$this->api_key;
return json_decode(wp_remote_fopen($url), true);
}
/**
* Get Youtube Playlist Items
*
* @param string $playlist_id Youtube Playlist ID
* @param integer $count Max videos count
*/
public function show_playlist_videos($playlist_id, $count = 50){
//call the API and decode the response
if(empty($count)) $count = 50;
$url = "https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&playlistId=".$playlist_id."&maxResults=".$count."&fields=items%2Fsnippet&key=".$this->api_key;
$transient_name = 'revslider_' . md5($url);
if($this->transient_sec > 0 && false !== ($data = get_transient($transient_name))) return($data);
$rsp = json_decode(wp_remote_fopen($url));
if(!isset($rsp->items)) return [];
set_transient($transient_name, $rsp->items, $this->transient_sec);
return $rsp->items;
}
/**
* Get Youtube Channel Items
*
* @param integer $count Max videos count
*/
public function show_channel_videos($count = 50){
if(empty($count)) $count = 50;
//call the API and decode the response
$url = 'https://www.googleapis.com/youtube/v3/search?part=snippet&channelId='.$this->channel_id.'&maxResults='.$count.'&key='.$this->api_key.'&order=date';
$transient_name = 'revslider_' . md5($url);
if($this->transient_sec > 0 && false !== ($data = get_transient($transient_name))) return ($data);
$rsp = json_decode(wp_remote_fopen($url));
if(!isset($rsp->items)) return [];
set_transient($transient_name, $rsp->items, $this->transient_sec);
return $rsp->items;
}
/**
* Get Playlists from Channel as Options for Selectbox
*/
public function get_playlist_options(){
$return = [];
$playlists = $this->get_playlists();
$error = $this->get_val($playlists, 'error', []);
if(!empty($error)) return $playlists;
$playlists = $this->get_val($playlists, 'items', []);
foreach($playlists ?? [] as $playlist){
$return[] = [
'value' => $this->get_val($playlist, ['id']),
'text' => $this->get_val($playlist, ['snippet', 'title']),
];
}
return $return;
}
}