koel/app/Services/YouTubeService.php

75 lines
1.8 KiB
PHP
Raw Normal View History

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