mirror of
https://github.com/koel/koel
synced 2024-11-24 05:03:05 +00:00
41 lines
1,003 B
PHP
41 lines
1,003 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Http\Integrations\YouTube\Requests\SearchVideosRequest;
|
|
use App\Http\Integrations\YouTube\YouTubeConnector;
|
|
use App\Models\Song;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Throwable;
|
|
|
|
class YouTubeService
|
|
{
|
|
public function __construct(private readonly YouTubeConnector $connector)
|
|
{
|
|
}
|
|
|
|
public static function enabled(): bool
|
|
{
|
|
return (bool) config('koel.youtube.key');
|
|
}
|
|
|
|
public function searchVideosRelatedToSong(Song $song, string $pageToken = ''): ?object
|
|
{
|
|
if (!self::enabled()) {
|
|
return null;
|
|
}
|
|
|
|
$request = new SearchVideosRequest($song, $pageToken);
|
|
$hash = md5(serialize($request->query()->all()));
|
|
|
|
try {
|
|
return Cache::remember(
|
|
"youtube.$hash",
|
|
now()->addWeek(),
|
|
fn () => $this->connector->send($request)->object()
|
|
);
|
|
} catch (Throwable) {
|
|
return null;
|
|
}
|
|
}
|
|
}
|