repod/lib/Service/ItunesService.php
Michel Roux c951a93b8c
All checks were successful
repod / xml (push) Successful in 16s
repod / php (push) Successful in 57s
repod / nodejs (push) Successful in 2m8s
repod / release (push) Has been skipped
feat: add unified search integration
2024-01-18 11:43:58 +01:00

49 lines
1.1 KiB
PHP

<?php
declare(strict_types=1);
namespace OCA\RePod\Service;
use OCA\GPodderSync\Core\PodcastData\PodcastData;
use OCP\Http\Client\IClientService;
class ItunesService implements IPodProvider
{
private const BASE_URL = 'https://itunes.apple.com/';
public function __construct(
private IClientService $clientService,
private UserService $userService
) {}
public function search(string $value): array {
$podcasts = [];
$client = $this->clientService->newClient();
$response = $client->get(self::BASE_URL.'search', [
'query' => [
'media' => 'podcast',
'term' => $value,
'country' => $this->userService->getCountryCode(),
],
]);
$json = (array) json_decode((string) $response->getBody(), true, flags: JSON_THROW_ON_ERROR);
if (array_key_exists('results', $json) && is_array($json['results'])) {
/** @var string[] $feed */
foreach ($json['results'] as $feed) {
$podcasts[] = new PodcastData(
$feed['trackName'],
$feed['artistName'],
$feed['feedUrl'],
$feed['primaryGenreName'],
$feed['artworkUrl600'],
strtotime($feed['releaseDate'])
);
}
}
return $podcasts;
}
}