122 lines
4.0 KiB
PHP
122 lines
4.0 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2016 Julius Härtl <jus@bitgrid.net>
|
|
*
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
|
*
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program 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 program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
namespace OCA\Deck\Controller;
|
|
|
|
use OCA\Deck\AppInfo\Application;
|
|
use OCA\Deck\Service\ConfigService;
|
|
use OCA\Deck\Service\PermissionService;
|
|
use OCA\Files\Event\LoadSidebar;
|
|
use OCA\Viewer\Event\LoadViewer;
|
|
use OCP\AppFramework\Http\ContentSecurityPolicy;
|
|
use OCP\Collaboration\Resources\LoadAdditionalScriptsEvent as CollaborationResourcesEvent;
|
|
use OCP\EventDispatcher\IEventDispatcher;
|
|
use OCP\IConfig;
|
|
use OCP\IInitialStateService;
|
|
use OCP\IRequest;
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
use OCP\AppFramework\Controller;
|
|
use OCA\Deck\Db\CardMapper;
|
|
use OCP\IURLGenerator;
|
|
use \OCP\AppFramework\Http\RedirectResponse;
|
|
use OCA\Deck\Db\Acl;
|
|
use OCA\Deck\Service\CardService;
|
|
|
|
class PageController extends Controller {
|
|
private PermissionService $permissionService;
|
|
private IInitialStateService $initialState;
|
|
private ConfigService $configService;
|
|
private IEventDispatcher $eventDispatcher;
|
|
private CardMapper $cardMapper;
|
|
private IURLGenerator $urlGenerator;
|
|
private CardService $cardService;
|
|
private IConfig $config;
|
|
|
|
public function __construct(
|
|
string $AppName,
|
|
IRequest $request,
|
|
PermissionService $permissionService,
|
|
IInitialStateService $initialStateService,
|
|
ConfigService $configService,
|
|
IEventDispatcher $eventDispatcher,
|
|
CardMapper $cardMapper,
|
|
IURLGenerator $urlGenerator,
|
|
CardService $cardService,
|
|
IConfig $config
|
|
) {
|
|
parent::__construct($AppName, $request);
|
|
|
|
$this->permissionService = $permissionService;
|
|
$this->initialState = $initialStateService;
|
|
$this->configService = $configService;
|
|
$this->eventDispatcher = $eventDispatcher;
|
|
$this->cardMapper = $cardMapper;
|
|
$this->urlGenerator = $urlGenerator;
|
|
$this->cardService = $cardService;
|
|
$this->config = $config;
|
|
}
|
|
|
|
/**
|
|
* Handle main html view from templates/main.php
|
|
* This will return the main angular application
|
|
*
|
|
* @NoAdminRequired
|
|
* @NoCSRFRequired
|
|
*/
|
|
public function index() {
|
|
$this->initialState->provideInitialState(Application::APP_ID, 'maxUploadSize', (int)\OCP\Util::uploadLimit());
|
|
$this->initialState->provideInitialState(Application::APP_ID, 'canCreate', $this->permissionService->canCreate());
|
|
$this->initialState->provideInitialState(Application::APP_ID, 'config', $this->configService->getAll());
|
|
|
|
$this->eventDispatcher->dispatchTyped(new LoadSidebar());
|
|
$this->eventDispatcher->dispatchTyped(new CollaborationResourcesEvent());
|
|
if (class_exists(LoadViewer::class)) {
|
|
$this->eventDispatcher->dispatchTyped(new LoadViewer());
|
|
}
|
|
|
|
$response = new TemplateResponse('deck', 'main');
|
|
|
|
if ($this->config->getSystemValueBool('debug', false)) {
|
|
$csp = new ContentSecurityPolicy();
|
|
$csp->addAllowedConnectDomain('*');
|
|
$csp->addAllowedScriptDomain('*');
|
|
$response->setContentSecurityPolicy($csp);
|
|
}
|
|
|
|
return $response;
|
|
}
|
|
|
|
/**
|
|
* @NoAdminRequired
|
|
* @NoCSRFRequired
|
|
*/
|
|
public function redirectToCard($cardId): RedirectResponse {
|
|
try {
|
|
$this->permissionService->checkPermission($this->cardMapper, $cardId, Acl::PERMISSION_READ);
|
|
return new RedirectResponse($this->cardService->getCardUrl($cardId));
|
|
} catch (\Exception $e) {
|
|
return new RedirectResponse($this->urlGenerator->linkToRouteAbsolute('deck.page.index'));
|
|
}
|
|
}
|
|
}
|