mirror of
https://github.com/koel/koel
synced 2024-11-10 22:54:16 +00:00
75 lines
2 KiB
PHP
75 lines
2 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use Cache;
|
|
use Exception;
|
|
use Log;
|
|
|
|
class iTunesService extends ApiClient implements ApiConsumerInterface
|
|
{
|
|
/**
|
|
* Determines whether to use iTunes services.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function used()
|
|
{
|
|
return (bool) config('koel.itunes.enabled');
|
|
}
|
|
|
|
/**
|
|
* Search for a track on iTunes Store with the given information and get its URL.
|
|
*
|
|
* @param $term string The main query string (should be the track's name)
|
|
* @param $album string The album's name, if available
|
|
* @param $artist string The artist's name, if available
|
|
*
|
|
* @return string|false
|
|
*/
|
|
public function getTrackUrl($term, $album = '', $artist = '')
|
|
{
|
|
try {
|
|
return Cache::remember(md5("itunes_track_url_{$term}{$album}{$artist}"), 24 * 60 * 7,
|
|
function () use ($term, $album, $artist) {
|
|
$params = [
|
|
'term' => $term.($album ? " $album" : '').($artist ? " $artist" : ''),
|
|
'media' => 'music',
|
|
'entity' => 'song',
|
|
'limit' => 1,
|
|
];
|
|
|
|
$response = (string) $this->client->get($this->getEndpoint(), ['query' => $params])->getBody();
|
|
$response = json_decode($response);
|
|
|
|
if (!$response->resultCount) {
|
|
return false;
|
|
}
|
|
|
|
$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) {
|
|
Log::error($e);
|
|
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public function getKey()
|
|
{
|
|
}
|
|
|
|
public function getSecret()
|
|
{
|
|
}
|
|
|
|
public function getEndpoint()
|
|
{
|
|
return config('koel.itunes.endpoint');
|
|
}
|
|
}
|