2023-07-03 00:12:40 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace OCA\RePod\Controller;
|
|
|
|
|
|
|
|
use OCA\RePod\AppInfo\Application;
|
2023-07-28 02:37:57 +02:00
|
|
|
use OCA\RePod\Service\FyydService;
|
2023-07-03 00:12:40 +02:00
|
|
|
use OCP\AppFramework\Controller;
|
|
|
|
use OCP\AppFramework\Http\JSONResponse;
|
|
|
|
use OCP\IRequest;
|
|
|
|
|
2024-02-20 21:31:38 +01:00
|
|
|
class ToplistController extends Controller
|
2023-07-03 00:12:40 +02:00
|
|
|
{
|
2023-07-03 00:52:14 +02:00
|
|
|
public function __construct(
|
|
|
|
IRequest $request,
|
2023-07-28 02:37:57 +02:00
|
|
|
private FyydService $fyydService
|
2023-07-03 00:52:14 +02:00
|
|
|
) {
|
2023-07-03 00:12:40 +02:00
|
|
|
parent::__construct(Application::APP_ID, $request);
|
|
|
|
}
|
|
|
|
|
2024-01-10 17:50:06 +01:00
|
|
|
public function hot(): JSONResponse {
|
2023-12-24 16:59:34 +01:00
|
|
|
return new JSONResponse($this->fyydService->hot());
|
2023-07-03 00:12:40 +02:00
|
|
|
}
|
2024-01-10 17:50:06 +01:00
|
|
|
|
|
|
|
public function new(): JSONResponse {
|
|
|
|
return new JSONResponse($this->fyydService->latest());
|
|
|
|
}
|
2023-07-03 00:12:40 +02:00
|
|
|
}
|