nextcloud-gpodder/lib/Controller/PersonalSettingsController.php

77 lines
1.9 KiB
PHP
Raw Normal View History

2022-07-17 10:33:43 +00:00
<?php
declare(strict_types=1);
namespace OCA\GPodderSync\Controller;
2022-09-17 19:03:14 +00:00
use GuzzleHttp\Psr7\BufferStream;
use GuzzleHttp\Psr7\StreamWrapper;
use OCA\GPodderSync\Core\PodcastData\PodcastDataReader;
use OCA\GPodderSync\Core\PodcastData\PodcastMetricsReader;
2022-07-17 16:23:16 +00:00
use OCP\AppFramework\Controller;
use OCP\AppFramework\Http;
2022-07-17 16:23:16 +00:00
use OCP\AppFramework\Http\JSONResponse;
2022-09-17 19:03:14 +00:00
use OCP\AppFramework\Http\StreamResponse;
use OCP\AppFramework\OCS\OCSException;
use OCP\Http\Client\IClient;
use OCP\Http\Client\IClientService;
2022-07-17 10:33:43 +00:00
use OCP\IRequest;
2022-07-17 16:23:16 +00:00
class PersonalSettingsController extends Controller {
2022-07-17 10:33:43 +00:00
2022-07-17 16:23:16 +00:00
private string $userId;
private PodcastMetricsReader $metricsReader;
private PodcastDataReader $dataReader;
2022-07-17 10:33:43 +00:00
2022-09-17 19:03:14 +00:00
// TODO: Use httpClient via PodcastDataReader instead
private IClient $httpClient;
2022-07-17 10:33:43 +00:00
public function __construct(
string $AppName,
IRequest $request,
2022-07-17 16:23:16 +00:00
string $UserId,
PodcastMetricsReader $metricsReader,
PodcastDataReader $dataReader,
2022-09-17 19:03:14 +00:00
IClientService $httpClientService,
2022-07-17 10:33:43 +00:00
) {
parent::__construct($AppName, $request);
2022-07-17 16:23:16 +00:00
$this->userId = $UserId ?? '';
$this->metricsReader = $metricsReader;
$this->dataReader = $dataReader;
2022-09-17 19:03:14 +00:00
$this->httpClient = $httpClientService->newClient();
2022-07-17 10:33:43 +00:00
}
/**
*
* @NoAdminRequired
* @NoCSRFRequired
*
* @return JSONResponse
*/
public function metrics(): JSONResponse {
$metrics = $this->metricsReader->metrics($this->userId);
2022-07-17 10:33:43 +00:00
return new JSONResponse([
2022-09-17 15:20:26 +00:00
'subscriptions' => $metrics,
2022-07-17 10:33:43 +00:00
]);
}
/**
* @NoAdminRequired
* @NoCSRFRequired
*
* @param string $url
* @return JsonResponse
*/
public function podcastData(string $url = ''): JsonResponse {
if ($url === '') {
return new JSONResponse([
'message' => "Missing query parameter 'url'.",
'data' => null,
], statusCode: Http::STATUS_BAD_REQUEST);
}
return new JsonResponse([
'data' => $this->dataReader->getCachedOrFetchPodcastData($url, $this->userId),
]);
}
2022-07-17 10:33:43 +00:00
}