nextcloud-app-radio/lib/Controller/PageController.php

60 lines
1.8 KiB
PHP
Raw Permalink Normal View History

2020-10-12 15:29:36 +00:00
<?php
2020-11-24 14:16:53 +00:00
/**
* Radio App.
2020-11-24 14:16:53 +00:00
*
* @author Jonas Heinrich
2021-01-15 10:21:53 +00:00
* @copyright 2021 Jonas Heinrich <onny@project-insanity.org>
2020-11-24 14:16:53 +00:00
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
2020-10-12 15:29:36 +00:00
declare(strict_types=1);
namespace OCA\Radio\Controller;
use OCA\Radio\AppInfo\Application;
2020-10-12 15:29:36 +00:00
use OCP\AppFramework\Controller;
use OCP\AppFramework\Http\Attribute\NoAdminRequired;
use OCP\AppFramework\Http\Attribute\NoCSRFRequired;
use OCP\AppFramework\Http\ContentSecurityPolicy;
use OCP\AppFramework\Http\TemplateResponse;
use OCP\IRequest;
2020-10-12 15:29:36 +00:00
use OCP\Util;
class PageController extends Controller
{
public function __construct(IRequest $request) {
parent::__construct(Application::APP_ID, $request);
}
2020-10-12 15:29:36 +00:00
#[NoAdminRequired]
#[NoCSRFRequired]
public function index(): TemplateResponse {
Util::addScript(Application::APP_ID, 'radio-main');
Util::addStyle(Application::APP_ID, 'icons');
2020-10-12 15:29:36 +00:00
// Allow radio-browser hosts in the csp
$policy = new ContentSecurityPolicy();
$policy->addAllowedConnectDomain('https://de1.api.radio-browser.info');
$policy->addAllowedImageDomain('*');
$policy->addAllowedMediaDomain('*');
2020-10-12 15:29:36 +00:00
$response = new TemplateResponse(Application::APP_ID, 'main');
$response->setContentSecurityPolicy($policy);
2020-10-12 15:29:36 +00:00
return $response;
}
}