repod/lib/Controller/EpisodesController.php

48 lines
1.3 KiB
PHP
Raw Normal View History

2023-08-24 10:48:10 +00:00
<?php
declare(strict_types=1);
namespace OCA\RePod\Controller;
2023-08-29 06:48:54 +00:00
use OCA\GPodderSync\Db\EpisodeAction\EpisodeActionRepository;
2023-08-24 10:48:10 +00:00
use OCA\RePod\AppInfo\Application;
2023-08-24 15:43:10 +00:00
use OCA\RePod\Core\EpisodeAction\EpisodeActionReader;
2023-08-29 06:48:54 +00:00
use OCA\RePod\Service\UserService;
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 06:48:54 +00:00
private EpisodeActionReader $episodeActionReader,
private EpisodeActionRepository $episodeActionRepository,
private UserService $userService
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-08-29 06:48:54 +00:00
public function list(string $url): JSONResponse
2023-08-24 15:43:10 +00:00
{
$client = $this->clientService->newClient();
$feed = $client->get($url);
return new JSONResponse($this->episodeActionReader->parseRssXml((string) $feed->getBody()), $feed->getStatusCode());
}
2023-08-29 06:48:54 +00:00
public function action(string $url): JSONResponse
{
$action = $this->episodeActionRepository->findByEpisodeUrl($url, $this->userService->getUserUID());
if ($action) {
return new JSONResponse($action->toArray());
}
return new JSONResponse([], Http::STATUS_NOT_FOUND);
}
2023-08-24 10:48:10 +00:00
}