mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
74 lines
2.1 KiB
PHP
74 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use Exception;
|
|
|
|
class iTunesService extends AbstractApiClient implements ApiConsumerInterface
|
|
{
|
|
/**
|
|
* Determines whether to use iTunes services.
|
|
*/
|
|
public function used(): bool
|
|
{
|
|
return (bool) config('koel.itunes.enabled');
|
|
}
|
|
|
|
/**
|
|
* Search for a track on iTunes Store with the given information and get its URL.
|
|
*
|
|
* @param string $term The main query string (should be the track's name)
|
|
* @param string $album The album's name, if available
|
|
* @param string $artist The artist's name, if available
|
|
*/
|
|
public function getTrackUrl(string $term, string $album = '', string $artist = ''): ?string
|
|
{
|
|
try {
|
|
return $this->cache->remember(
|
|
md5("itunes_track_url_{$term}{$album}{$artist}"),
|
|
24 * 60 * 7,
|
|
function () use ($term, $album, $artist): ?string {
|
|
$params = [
|
|
'term' => $term.($album ? " $album" : '').($artist ? " $artist" : ''),
|
|
'media' => 'music',
|
|
'entity' => 'song',
|
|
'limit' => 1,
|
|
];
|
|
|
|
$response = json_decode(
|
|
$this->getClient()->get($this->getEndpoint(), ['query' => $params])->getBody()
|
|
);
|
|
|
|
if (!$response->resultCount) {
|
|
return null;
|
|
}
|
|
|
|
$trackUrl = $response->results[0]->trackViewUrl;
|
|
$connector = parse_url($trackUrl, PHP_URL_QUERY) ? '&' : '?';
|
|
$trackUrl .= "{$connector}at=".config('koel.itunes.affiliate_id');
|
|
|
|
return $trackUrl;
|
|
}
|
|
);
|
|
} catch (Exception $e) {
|
|
$this->logger->error($e);
|
|
|
|
return null;
|
|
}
|
|
}
|
|
|
|
public function getKey(): ?string
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public function getSecret(): ?string
|
|
{
|
|
return null;
|
|
}
|
|
|
|
public function getEndpoint(): ?string
|
|
{
|
|
return config('koel.itunes.endpoint');
|
|
}
|
|
}
|