PHP Класс Alaouy\Youtube\Youtube

Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
$APIs array
$page_info array

Защищенные свойства (Protected)

Свойство Тип Описание
$youtube_key string

Открытые методы

Метод Описание
__construct ( $key ) Constructor $youtube = new Youtube(array('key' => 'KEY HERE'))
_parse_url_path ( string $url ) : string Parse the input url string and return just the path part
_parse_url_query ( string $url ) : array Parse the input url string and return an array of query params
api_get ( $url, $params ) : mixed Using CURL to issue a GET request
decodeList ( string &$apiData ) : array Decode the response from youtube, extract the list of resource objects
decodeMultiple ( string &$apiData ) : StdClass Decode the response from youtube, extract the multiple resource object.
decodeSingle ( string &$apiData ) : StdClass Decode the response from youtube, extract the single resource object.
getActivitiesByChannelId ( $channelId, $part = ['id', 'snippet', 'contentDetails'], $maxResults = 5 ) : array
getApi ( $name ) : mixed
getChannelById ( $id, $optionalParams = false, $part = ['id', 'snippet', 'contentDetails', 'statistics', 'invideoPromotion'] ) : StdClass
getChannelByName ( $username, $optionalParams = false, $part = ['id', 'snippet', 'contentDetails', 'statistics', 'invideoPromotion'] ) : StdClass
getChannelFromURL ( string $youtube_url ) : object Get the channel object by supplying the URL of the channel page
getPlaylistById ( $id, $part = ['id', 'snippet', 'status'] ) : StdClass
getPlaylistItemsByPlaylistId ( string $playlistId, string $pageToken = '', integer $maxResults = 50, array $part = ['id', 'snippet', 'contentDetails', 'status'] ) : array
getPlaylistsByChannelId ( string $channelId, array $optionalParams = [], array $part = ['id', 'snippet', 'status'] ) : array
getPopularVideos ( $regionCode, integer $maxResults = 10, $part = ['id', 'snippet', 'contentDetails', 'player', 'statistics', 'status'] ) : array Gets popular videos for a specific region (ISO 3166-1 alpha-2)
getRelatedVideos ( string $videoId, $maxResults = 5, $part = ['id', 'snippet'] ) : array
getVideoInfo ( $vId, $part = ['id', 'snippet', 'contentDetails', 'player', 'statistics', 'status'] ) : StdClass
paginateResults ( $params, $token = null ) : array Generic Search Paginator, use any parameters specified in the API reference and pass through nextPageToken as $token if set.
parseVIdFromURL ( string $youtube_url ) : string Parse a youtube URL to get the youtube Vid.
search ( $q, integer $maxResults = 10, $part = ['id', 'snippet'] ) : array Simple search interface, this search all stuffs and order by relevance
searchAdvanced ( $params, $pageInfo = false ) : array Generic Search interface, use any parameters specified in the API reference
searchChannelVideos ( string $q, string $channelId, integer $maxResults = 10, string $order = null, $part = ['id', 'snippet'], $pageInfo = false ) : object Search only videos in the channel
searchVideos ( string $q, integer $maxResults = 10, string $order = null, $part = ['id'] ) : StdClass Search only videos

Описание методов

__construct() публичный метод

Constructor $youtube = new Youtube(array('key' => 'KEY HERE'))
public __construct ( $key )

_parse_url_path() публичный статический метод

Parse the input url string and return just the path part
public static _parse_url_path ( string $url ) : string
$url string the URL
Результат string the path string

_parse_url_query() публичный статический метод

Parse the input url string and return an array of query params
public static _parse_url_query ( string $url ) : array
$url string the URL
Результат array array of query params

api_get() публичный метод

Using CURL to issue a GET request
public api_get ( $url, $params ) : mixed
$url
$params
Результат mixed

decodeList() публичный метод

Decode the response from youtube, extract the list of resource objects
public decodeList ( string &$apiData ) : array
$apiData string response string from youtube
Результат array Array of StdClass objects

decodeMultiple() публичный метод

Decode the response from youtube, extract the multiple resource object.
public decodeMultiple ( string &$apiData ) : StdClass
$apiData string the api response from youtube
Результат StdClass an Youtube resource object

decodeSingle() публичный метод

(Don't use this to decode the response containing list of objects)
public decodeSingle ( string &$apiData ) : StdClass
$apiData string the api response from youtube
Результат StdClass an Youtube resource object

getActivitiesByChannelId() публичный метод

public getActivitiesByChannelId ( $channelId, $part = ['id', 'snippet', 'contentDetails'], $maxResults = 5 ) : array
$channelId
Результат array

getApi() публичный метод

public getApi ( $name ) : mixed
$name
Результат mixed

getChannelById() публичный метод

public getChannelById ( $id, $optionalParams = false, $part = ['id', 'snippet', 'contentDetails', 'statistics', 'invideoPromotion'] ) : StdClass
$id
Результат StdClass

getChannelByName() публичный метод

public getChannelByName ( $username, $optionalParams = false, $part = ['id', 'snippet', 'contentDetails', 'statistics', 'invideoPromotion'] ) : StdClass
$username
Результат StdClass

getChannelFromURL() публичный метод

Get the channel object by supplying the URL of the channel page
public getChannelFromURL ( string $youtube_url ) : object
$youtube_url string
Результат object Channel object

getPlaylistById() публичный метод

public getPlaylistById ( $id, $part = ['id', 'snippet', 'status'] ) : StdClass
$id
Результат StdClass

getPlaylistItemsByPlaylistId() публичный метод

public getPlaylistItemsByPlaylistId ( string $playlistId, string $pageToken = '', integer $maxResults = 50, array $part = ['id', 'snippet', 'contentDetails', 'status'] ) : array
$playlistId string
$pageToken string
$maxResults integer
$part array
Результат array

getPlaylistsByChannelId() публичный метод

public getPlaylistsByChannelId ( string $channelId, array $optionalParams = [], array $part = ['id', 'snippet', 'status'] ) : array
$channelId string
$optionalParams array
$part array
Результат array

getPopularVideos() публичный метод

Gets popular videos for a specific region (ISO 3166-1 alpha-2)
public getPopularVideos ( $regionCode, integer $maxResults = 10, $part = ['id', 'snippet', 'contentDetails', 'player', 'statistics', 'status'] ) : array
$regionCode
$maxResults integer
Результат array

getRelatedVideos() публичный метод

public getRelatedVideos ( string $videoId, $maxResults = 5, $part = ['id', 'snippet'] ) : array
$videoId string
Результат array

getVideoInfo() публичный метод

public getVideoInfo ( $vId, $part = ['id', 'snippet', 'contentDetails', 'player', 'statistics', 'status'] ) : StdClass
Результат StdClass

paginateResults() публичный метод

Generic Search Paginator, use any parameters specified in the API reference and pass through nextPageToken as $token if set.
public paginateResults ( $params, $token = null ) : array
$params
$token
Результат array

parseVIdFromURL() публичный статический метод

Support both full URL (www.youtube.com) and short URL (youtu.be)
public static parseVIdFromURL ( string $youtube_url ) : string
$youtube_url string
Результат string Video Id

searchAdvanced() публичный метод

Generic Search interface, use any parameters specified in the API reference
public searchAdvanced ( $params, $pageInfo = false ) : array
$params
$pageInfo
Результат array

searchChannelVideos() публичный метод

Search only videos in the channel
public searchChannelVideos ( string $q, string $channelId, integer $maxResults = 10, string $order = null, $part = ['id', 'snippet'], $pageInfo = false ) : object
$q string
$channelId string
$maxResults integer
$order string
$pageInfo
Результат object

searchVideos() публичный метод

Search only videos
public searchVideos ( string $q, integer $maxResults = 10, string $order = null, $part = ['id'] ) : StdClass
$q string Query
$maxResults integer number of results to return
$order string Order by
Результат StdClass API results

Описание свойств

$APIs публичное свойство

public array $APIs
Результат array

$page_info публичное свойство

public array $page_info
Результат array

$youtube_key защищенное свойство

protected string $youtube_key
Результат string