repod/lib/Controller/EpisodesController.php

48 lines
1.4 KiB
PHP
Raw Normal View History

2023-08-24 10:48:10 +00:00
<?php
declare(strict_types=1);
namespace OCA\RePod\Controller;
use OCA\RePod\AppInfo\Application;
2023-12-24 15:59:34 +00:00
use OCA\RePod\Core\EpisodeAction\EpisodeActionExtraData;
2023-08-24 15:43:10 +00:00
use OCA\RePod\Core\EpisodeAction\EpisodeActionReader;
2023-08-24 10:48:10 +00:00
use OCP\AppFramework\Controller;
2023-08-29 06:48:54 +00:00
use OCP\AppFramework\Http;
2023-08-24 15:43:10 +00:00
use OCP\AppFramework\Http\JSONResponse;
use OCP\Http\Client\IClientService;
2023-08-24 10:48:10 +00:00
use OCP\IRequest;
class EpisodesController extends Controller
{
2023-08-24 15:43:10 +00:00
public function __construct(
IRequest $request,
private IClientService $clientService,
2023-08-29 10:04:14 +00:00
private EpisodeActionReader $episodeActionReader
2023-08-24 15:43:10 +00:00
) {
2023-08-24 10:48:10 +00:00
parent::__construct(Application::APP_ID, $request);
}
2023-08-24 15:43:10 +00:00
2023-12-23 16:25:20 +00:00
public function list(string $url): JSONResponse {
2023-08-24 15:43:10 +00:00
$client = $this->clientService->newClient();
$feed = $client->get($url);
2023-12-24 15:59:34 +00:00
$episodes = $this->episodeActionReader->parseRssXml((string) $feed->getBody());
usort($episodes, fn (EpisodeActionExtraData $a, EpisodeActionExtraData $b) => $b->getFetchedAtUnix() <=> $a->getFetchedAtUnix());
$episodes = array_intersect_key($episodes, array_unique(array_map(fn (EpisodeActionExtraData $episode) => $episode->getEpisodeGuid(), $episodes)));
return new JSONResponse($episodes, $feed->getStatusCode());
2023-08-24 15:43:10 +00:00
}
2023-08-29 06:48:54 +00:00
2023-12-23 16:25:20 +00:00
public function action(string $url): JSONResponse {
2023-08-29 10:04:14 +00:00
$action = $this->episodeActionReader->findByEpisodeUrl($url);
2023-08-29 06:48:54 +00:00
if ($action) {
return new JSONResponse($action->toArray());
}
return new JSONResponse([], Http::STATUS_NOT_FOUND);
}
2023-08-24 10:48:10 +00:00
}