2023-07-02 22:12:40 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace OCA\RePod\Controller;
|
|
|
|
|
|
|
|
use OCA\RePod\AppInfo\Application;
|
2023-07-28 00:37:57 +00:00
|
|
|
use OCA\RePod\Service\FyydService;
|
2023-07-02 22:12:40 +00:00
|
|
|
use OCP\AppFramework\Controller;
|
2024-10-18 13:19:45 +00:00
|
|
|
use OCP\AppFramework\Http\Attribute\FrontpageRoute;
|
|
|
|
use OCP\AppFramework\Http\Attribute\NoAdminRequired;
|
|
|
|
use OCP\AppFramework\Http\Attribute\NoCSRFRequired;
|
2023-07-02 22:12:40 +00:00
|
|
|
use OCP\AppFramework\Http\JSONResponse;
|
|
|
|
use OCP\IRequest;
|
|
|
|
|
2024-02-20 20:31:38 +00:00
|
|
|
class ToplistController extends Controller
|
2023-07-02 22:12:40 +00:00
|
|
|
{
|
2023-07-02 22:52:14 +00:00
|
|
|
public function __construct(
|
|
|
|
IRequest $request,
|
2024-11-12 09:11:21 +00:00
|
|
|
private readonly FyydService $fyydService
|
2023-07-02 22:52:14 +00:00
|
|
|
) {
|
2023-07-02 22:12:40 +00:00
|
|
|
parent::__construct(Application::APP_ID, $request);
|
|
|
|
}
|
|
|
|
|
2024-10-18 13:19:45 +00:00
|
|
|
#[NoAdminRequired]
|
|
|
|
#[NoCSRFRequired]
|
|
|
|
#[FrontpageRoute(verb: 'GET', url: '/toplist/hot')]
|
2024-01-10 16:50:06 +00:00
|
|
|
public function hot(): JSONResponse {
|
2023-12-24 15:59:34 +00:00
|
|
|
return new JSONResponse($this->fyydService->hot());
|
2023-07-02 22:12:40 +00:00
|
|
|
}
|
2024-01-10 16:50:06 +00:00
|
|
|
|
2024-10-18 13:19:45 +00:00
|
|
|
#[NoAdminRequired]
|
|
|
|
#[NoCSRFRequired]
|
|
|
|
#[FrontpageRoute(verb: 'GET', url: '/toplist/new')]
|
2024-01-10 16:50:06 +00:00
|
|
|
public function new(): JSONResponse {
|
|
|
|
return new JSONResponse($this->fyydService->latest());
|
|
|
|
}
|
2023-07-02 22:12:40 +00:00
|
|
|
}
|