koel/app/Services/iTunesService.php

76 lines
2 KiB
PHP
Raw Normal View History

2016-12-11 13:08:30 +00:00
<?php
namespace App\Services;
2017-08-05 22:27:26 +00:00
use Cache;
2016-12-11 13:21:45 +00:00
use Exception;
use Log;
2016-12-11 13:08:30 +00:00
2018-08-19 14:40:25 +00:00
class iTunesService extends ApiClient implements ApiConsumerInterface
2016-12-11 13:08:30 +00:00
{
/**
* 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 = '')
{
2016-12-11 13:21:45 +00:00
try {
2017-08-05 22:27:41 +00:00
return Cache::remember(md5("itunes_track_url_{$term}{$album}{$artist}"), 24 * 60 * 7,
2017-08-05 22:27:26 +00:00
function () use ($term, $album, $artist) {
$params = [
'term' => $term.($album ? " $album" : '').($artist ? " $artist" : ''),
'media' => 'music',
'entity' => 'song',
'limit' => 1,
];
2016-12-11 13:08:30 +00:00
2018-08-19 14:40:25 +00:00
$response = (string) $this->client->get($this->getEndpoint(), ['query' => $params])->getBody();
2017-08-05 22:27:26 +00:00
$response = json_decode($response);
2016-12-11 13:08:30 +00:00
2017-08-05 22:27:26 +00:00
if (!$response->resultCount) {
return false;
}
2016-12-11 13:08:30 +00:00
2017-08-05 22:27:26 +00:00
$trackUrl = $response->results[0]->trackViewUrl;
$connector = parse_url($trackUrl, PHP_URL_QUERY) ? '&' : '?';
$trackUrl .= "{$connector}at=".config('koel.itunes.affiliate_id');
2016-12-11 13:08:30 +00:00
2017-08-05 22:27:26 +00:00
return $trackUrl;
}
);
2016-12-11 13:21:45 +00:00
} catch (Exception $e) {
Log::error($e);
return false;
}
2016-12-11 13:08:30 +00:00
}
2018-08-19 14:40:25 +00:00
public function getKey()
{
}
public function getSecret()
{
}
public function getEndpoint()
{
return config('koel.itunes.endpoint');
}
2016-12-11 13:08:30 +00:00
}