mirror of
https://github.com/nextcloud/server.git
synced 2024-12-28 07:58:42 +00:00
606241caeb
Signed-off-by: Julius Knorr <jus@bitgrid.net>
86 lines
2.1 KiB
PHP
86 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OC\Core\Controller;
|
|
|
|
use bantu\IniGetWrapper\IniGetWrapper;
|
|
use OC\Authentication\Token\IProvider;
|
|
use OC\CapabilitiesManager;
|
|
use OC\Files\FilenameValidator;
|
|
use OC\Template\JSConfigHelper;
|
|
use OCP\App\IAppManager;
|
|
use OCP\AppFramework\Controller;
|
|
use OCP\AppFramework\Http;
|
|
use OCP\AppFramework\Http\Attribute\FrontpageRoute;
|
|
use OCP\AppFramework\Http\Attribute\NoCSRFRequired;
|
|
use OCP\AppFramework\Http\Attribute\OpenAPI;
|
|
use OCP\AppFramework\Http\Attribute\PublicPage;
|
|
use OCP\AppFramework\Http\DataDisplayResponse;
|
|
use OCP\Defaults;
|
|
use OCP\IConfig;
|
|
use OCP\IGroupManager;
|
|
use OCP\IInitialStateService;
|
|
use OCP\IRequest;
|
|
use OCP\ISession;
|
|
use OCP\IURLGenerator;
|
|
use OCP\IUserSession;
|
|
use OCP\L10N\IFactory;
|
|
use OCP\ServerVersion;
|
|
|
|
#[OpenAPI(scope: OpenAPI::SCOPE_IGNORE)]
|
|
class OCJSController extends Controller {
|
|
private JSConfigHelper $helper;
|
|
|
|
public function __construct(
|
|
string $appName,
|
|
IRequest $request,
|
|
IFactory $l10nFactory,
|
|
Defaults $defaults,
|
|
IAppManager $appManager,
|
|
ISession $session,
|
|
IUserSession $userSession,
|
|
IConfig $config,
|
|
IGroupManager $groupManager,
|
|
IniGetWrapper $iniWrapper,
|
|
IURLGenerator $urlGenerator,
|
|
CapabilitiesManager $capabilitiesManager,
|
|
IInitialStateService $initialStateService,
|
|
IProvider $tokenProvider,
|
|
FilenameValidator $filenameValidator,
|
|
ServerVersion $serverVersion,
|
|
) {
|
|
parent::__construct($appName, $request);
|
|
|
|
$this->helper = new JSConfigHelper(
|
|
$serverVersion,
|
|
$l10nFactory->get('lib'),
|
|
$defaults,
|
|
$appManager,
|
|
$session,
|
|
$userSession->getUser(),
|
|
$config,
|
|
$groupManager,
|
|
$iniWrapper,
|
|
$urlGenerator,
|
|
$capabilitiesManager,
|
|
$initialStateService,
|
|
$tokenProvider,
|
|
$filenameValidator,
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @NoTwoFactorRequired
|
|
*/
|
|
#[PublicPage]
|
|
#[NoCSRFRequired]
|
|
#[FrontpageRoute(verb: 'GET', url: '/core/js/oc.js')]
|
|
public function getConfig(): DataDisplayResponse {
|
|
$data = $this->helper->getConfig();
|
|
|
|
return new DataDisplayResponse($data, Http::STATUS_OK, ['Content-type' => 'text/javascript']);
|
|
}
|
|
}
|