2023-08-24 12:48:10 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace OCA\RePod\Controller;
|
|
|
|
|
|
|
|
use OCA\RePod\AppInfo\Application;
|
2023-12-24 16:59:34 +01:00
|
|
|
use OCA\RePod\Core\EpisodeAction\EpisodeActionExtraData;
|
2023-08-24 17:43:10 +02:00
|
|
|
use OCA\RePod\Core\EpisodeAction\EpisodeActionReader;
|
2023-08-24 12:48:10 +02:00
|
|
|
use OCP\AppFramework\Controller;
|
2023-08-29 08:48:54 +02:00
|
|
|
use OCP\AppFramework\Http;
|
2023-08-24 17:43:10 +02:00
|
|
|
use OCP\AppFramework\Http\JSONResponse;
|
|
|
|
use OCP\Http\Client\IClientService;
|
2023-08-24 12:48:10 +02:00
|
|
|
use OCP\IRequest;
|
|
|
|
|
|
|
|
class EpisodesController extends Controller
|
|
|
|
{
|
2023-08-24 17:43:10 +02:00
|
|
|
public function __construct(
|
|
|
|
IRequest $request,
|
|
|
|
private IClientService $clientService,
|
2023-08-29 12:04:14 +02:00
|
|
|
private EpisodeActionReader $episodeActionReader
|
2023-08-24 17:43:10 +02:00
|
|
|
) {
|
2023-08-24 12:48:10 +02:00
|
|
|
parent::__construct(Application::APP_ID, $request);
|
|
|
|
}
|
2023-08-24 17:43:10 +02:00
|
|
|
|
2023-12-23 17:25:20 +01:00
|
|
|
public function list(string $url): JSONResponse {
|
2023-08-24 17:43:10 +02:00
|
|
|
$client = $this->clientService->newClient();
|
|
|
|
$feed = $client->get($url);
|
|
|
|
|
2023-12-24 16:59:34 +01: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 17:43:10 +02:00
|
|
|
}
|
2023-08-29 08:48:54 +02:00
|
|
|
|
2023-12-23 17:25:20 +01:00
|
|
|
public function action(string $url): JSONResponse {
|
2023-08-29 12:04:14 +02:00
|
|
|
$action = $this->episodeActionReader->findByEpisodeUrl($url);
|
2023-08-29 08:48:54 +02:00
|
|
|
|
|
|
|
if ($action) {
|
|
|
|
return new JSONResponse($action->toArray());
|
|
|
|
}
|
|
|
|
|
|
|
|
return new JSONResponse([], Http::STATUS_NOT_FOUND);
|
|
|
|
}
|
2023-08-24 12:48:10 +02:00
|
|
|
}
|