koel/app/Services/YouTubeService.php

83 lines
1.9 KiB
PHP
Raw Normal View History

2016-07-14 08:47:50 +00:00
<?php
namespace App\Services;
2016-07-30 15:32:17 +00:00
use App\Models\Song;
2017-08-21 21:05:03 +00:00
use Cache;
2016-07-14 08:47:50 +00:00
class YouTubeService extends ApiClient implements ApiConsumerInterface
2016-07-14 08:47:50 +00:00
{
/**
* Determine if our application is using YouTube.
*
* @return bool
*/
public function enabled()
{
return (bool) $this->getKey();
2016-07-14 08:47:50 +00:00
}
/**
2016-07-30 15:32:17 +00:00
* Search for YouTube videos related to a song.
*
2016-07-30 15:34:34 +00:00
* @param Song $song
2016-07-30 15:32:17 +00:00
* @param string $pageToken
*
* @return object|false
*/
2016-08-03 10:42:11 +00:00
public function searchVideosRelatedToSong(Song $song, $pageToken = '')
2016-07-30 15:32:17 +00:00
{
$q = $song->title;
// If the artist is worth noticing, include them into the search.
2017-06-03 23:21:50 +00:00
if (!$song->artist->is_unknown && !$song->artist->is_various) {
$q .= " {$song->artist->name}";
2016-07-30 15:32:17 +00:00
}
return $this->search($q, $pageToken);
}
/**
* Search for YouTube videos by a query string.
2016-07-14 08:47:50 +00:00
*
* @param string $q The query string
* @param string $pageToken YouTube page token (e.g. for next/previous page)
* @param int $perPage Number of results per page
*
* @return object|false
*/
public function search($q, $pageToken = '', $perPage = 10)
{
if (!$this->enabled()) {
return false;
}
2016-07-30 15:32:17 +00:00
$uri = sprintf('search?part=snippet&type=video&maxResults=%s&pageToken=%s&q=%s',
2016-07-14 08:47:50 +00:00
$perPage,
urlencode($pageToken),
urlencode($q)
);
2017-08-19 16:09:00 +00:00
return Cache::remember(md5("youtube_$uri"), 60 * 24 * 7, function () use ($uri) {
return $this->get($uri);
});
2016-07-14 08:47:50 +00:00
}
/** @return string */
public function getEndpoint()
{
return config('koel.youtube.endpoint');
}
/** @return string */
public function getKey()
{
return config('koel.youtube.key');
}
/** @return string|null */
public function getSecret()
{
}
2016-07-14 08:47:50 +00:00
}