repod/lib/Controller/PageController.php

64 lines
1.3 KiB
PHP
Raw Normal View History

2023-06-24 15:18:27 +00:00
<?php
declare(strict_types=1);
namespace OCA\RePod\Controller;
use OCA\RePod\AppInfo\Application;
use OCP\AppFramework\Controller;
2023-07-02 22:12:40 +00:00
use OCP\AppFramework\Http\ContentSecurityPolicy;
2023-06-24 15:18:27 +00:00
use OCP\AppFramework\Http\TemplateResponse;
use OCP\IConfig;
use OCP\IRequest;
2023-06-24 15:18:27 +00:00
use OCP\Util;
class PageController extends Controller
{
public function __construct(
IRequest $request,
private IConfig $config
) {
parent::__construct(Application::APP_ID, $request);
}
2023-06-24 15:18:27 +00:00
/**
* @NoAdminRequired
* @NoCSRFRequired
*/
2023-12-23 16:25:20 +00:00
public function index(): TemplateResponse {
Util::addScript(Application::APP_ID, 'main');
2023-06-24 15:18:27 +00:00
2023-07-02 22:12:40 +00:00
$csp = new ContentSecurityPolicy();
$csp->addAllowedImageDomain('*');
2023-08-27 10:45:19 +00:00
$csp->addAllowedMediaDomain('*');
2023-07-02 22:12:40 +00:00
if ($this->config->getSystemValueBool('debug', false)) {
/** @psalm-suppress DeprecatedMethod */
$csp->allowEvalScript();
$csp->addAllowedConnectDomain('*');
$csp->addAllowedScriptDomain('*');
}
$response = new TemplateResponse(Application::APP_ID, 'main');
2023-07-02 22:12:40 +00:00
$response->setContentSecurityPolicy($csp);
2023-07-27 21:01:24 +00:00
2023-07-02 22:12:40 +00:00
return $response;
2023-06-24 15:18:27 +00:00
}
/**
* @NoAdminRequired
* @NoCSRFRequired
*/
public function discover(): TemplateResponse {
return $this->index();
}
/**
* @NoAdminRequired
* @NoCSRFRequired
*/
public function feed(): TemplateResponse {
return $this->index();
}
2023-06-24 15:18:27 +00:00
}