PHP Class Alaouy\Youtube\Youtube

Afficher le fichier Open project: alaouy/youtube Class Usage Examples

Méthodes publiques

Свойство Type Description
$APIs array
$page_info array

Protected Properties

Свойство Type Description
$youtube_key string

Méthodes publiques

Méthode Description
__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

Method Details

__construct() public méthode

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

_parse_url_path() public static méthode

Parse the input url string and return just the path part
public static _parse_url_path ( string $url ) : string
$url string the URL
Résultat string the path string

_parse_url_query() public static méthode

Parse the input url string and return an array of query params
public static _parse_url_query ( string $url ) : array
$url string the URL
Résultat array array of query params

api_get() public méthode

Using CURL to issue a GET request
public api_get ( $url, $params ) : mixed
$url
$params
Résultat mixed

decodeList() public méthode

Decode the response from youtube, extract the list of resource objects
public decodeList ( string &$apiData ) : array
$apiData string response string from youtube
Résultat array Array of StdClass objects

decodeMultiple() public méthode

Decode the response from youtube, extract the multiple resource object.
public decodeMultiple ( string &$apiData ) : StdClass
$apiData string the api response from youtube
Résultat StdClass an Youtube resource object

decodeSingle() public méthode

(Don't use this to decode the response containing list of objects)
public decodeSingle ( string &$apiData ) : StdClass
$apiData string the api response from youtube
Résultat StdClass an Youtube resource object

getActivitiesByChannelId() public méthode

public getActivitiesByChannelId ( $channelId, $part = ['id', 'snippet', 'contentDetails'], $maxResults = 5 ) : array
$channelId
Résultat array

getApi() public méthode

public getApi ( $name ) : mixed
$name
Résultat mixed

getChannelById() public méthode

public getChannelById ( $id, $optionalParams = false, $part = ['id', 'snippet', 'contentDetails', 'statistics', 'invideoPromotion'] ) : StdClass
$id
Résultat StdClass

getChannelByName() public méthode

public getChannelByName ( $username, $optionalParams = false, $part = ['id', 'snippet', 'contentDetails', 'statistics', 'invideoPromotion'] ) : StdClass
$username
Résultat StdClass

getChannelFromURL() public méthode

Get the channel object by supplying the URL of the channel page
public getChannelFromURL ( string $youtube_url ) : object
$youtube_url string
Résultat object Channel object

getPlaylistById() public méthode

public getPlaylistById ( $id, $part = ['id', 'snippet', 'status'] ) : StdClass
$id
Résultat StdClass

getPlaylistItemsByPlaylistId() public méthode

public getPlaylistItemsByPlaylistId ( string $playlistId, string $pageToken = '', integer $maxResults = 50, array $part = ['id', 'snippet', 'contentDetails', 'status'] ) : array
$playlistId string
$pageToken string
$maxResults integer
$part array
Résultat array

getPlaylistsByChannelId() public méthode

public getPlaylistsByChannelId ( string $channelId, array $optionalParams = [], array $part = ['id', 'snippet', 'status'] ) : array
$channelId string
$optionalParams array
$part array
Résultat array

getPopularVideos() public méthode

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
Résultat array

getRelatedVideos() public méthode

public getRelatedVideos ( string $videoId, $maxResults = 5, $part = ['id', 'snippet'] ) : array
$videoId string
Résultat array

getVideoInfo() public méthode

public getVideoInfo ( $vId, $part = ['id', 'snippet', 'contentDetails', 'player', 'statistics', 'status'] ) : StdClass
Résultat StdClass

paginateResults() public méthode

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
Résultat array

parseVIdFromURL() public static méthode

Support both full URL (www.youtube.com) and short URL (youtu.be)
public static parseVIdFromURL ( string $youtube_url ) : string
$youtube_url string
Résultat string Video Id

searchAdvanced() public méthode

Generic Search interface, use any parameters specified in the API reference
public searchAdvanced ( $params, $pageInfo = false ) : array
$params
$pageInfo
Résultat array

searchChannelVideos() public méthode

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
Résultat object

searchVideos() public méthode

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
Résultat StdClass API results

Property Details

$APIs public_oe property

public array $APIs
Résultat array

$page_info public_oe property

public array $page_info
Résultat array

$youtube_key protected_oe property

protected string $youtube_key
Résultat string