Files
sysPass/app/modules/web/Controllers/Bootstrap/GetEnvironmentController.php
Rubén D 4e346d9f1a chore: Bootstrap refactoring
Signed-off-by: Rubén D <nuxsmin@syspass.org>
2024-04-20 11:59:23 +02:00

180 lines
5.3 KiB
PHP

<?php
/*
* sysPass
*
* @author nuxsmin
* @link https://syspass.org
* @copyright 2012-2024, Rubén Domínguez nuxsmin@$syspass.org
*
* This file is part of sysPass.
*
* sysPass is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* sysPass 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
*/
namespace SP\Modules\Web\Controllers\Bootstrap;
use Exception;
use JsonException;
use SP\Core\Application;
use SP\Core\Crypt\CryptPKI;
use SP\Domain\Core\Crypt\CryptPKIInterface;
use SP\Domain\Core\Exceptions\SPException;
use SP\Domain\Import\Services\ImportStrategy;
use SP\Domain\Plugin\Ports\PluginManagerService;
use SP\Infrastructure\File\FileException;
use SP\Modules\Web\Controllers\SimpleControllerBase;
use SP\Modules\Web\Controllers\Traits\JsonTrait;
use SP\Mvc\Controller\SimpleControllerHelper;
use SP\Providers\Auth\Browser\BrowserAuthService;
use function SP\logger;
use function SP\processException;
/**
* Class GetEnvironmentController
*
* @package SP\Modules\Web\Controllers
*/
final class GetEnvironmentController extends SimpleControllerBase
{
use JsonTrait;
public function __construct(
Application $application,
SimpleControllerHelper $simpleControllerHelper,
private readonly CryptPKIInterface $cryptPKI,
private readonly BrowserAuthService $browser,
private readonly PluginManagerService $pluginManagerService
) {
parent::__construct($application, $simpleControllerHelper);
}
/**
* Returns environment data
*
* @return bool
* @throws JsonException
* @throws SPException
*/
public function getEnvironmentAction(): bool
{
$checkStatus = $this->session->getAuthCompleted()
&& ($this->session->getUserData()->getIsAdminApp()
|| $this->configData->isDemoEnabled());
$data = [
'lang' => $this->getJsLang(),
'locale' => $this->configData->getSiteLang(),
'app_root' => $this->uriContext->getWebUri(),
'max_file_size' => $this->configData->getFilesAllowedSize(),
'check_updates' => $checkStatus && $this->configData->isCheckUpdates(),
'check_notices' => $checkStatus && $this->configData->isCheckNotices(),
'check_notifications' => $this->getNotificationsEnabled(),
'timezone' => date_default_timezone_get(),
'debug' => DEBUG || $this->configData->isDebug(),
'cookies_enabled' => $this->getCookiesEnabled(),
'plugins' => $this->getPlugins(),
'loggedin' => $this->session->isLoggedIn(),
'authbasic_autologin' => $this->getAuthBasicAutologinEnabled(),
'pki_key' => $this->getPublicKey(),
'pki_max_size' => CryptPKI::getMaxDataSize(),
'import_allowed_mime' => ImportStrategy::ALLOWED_MIME,
'files_allowed_mime' => $this->configData->getFilesAllowedMime(),
'session_timeout' => $this->configData->getSessionTimeout(),
'csrf' => $this->getCSRF(),
];
return $this->returnJsonResponseData($data);
}
/**
* @return array
*/
private function getJsLang(): array
{
return require RESOURCES_PATH . DIRECTORY_SEPARATOR . 'strings.js.inc';
}
/**
* @return bool
*/
private function getNotificationsEnabled(): bool
{
if ($this->session->isLoggedIn()) {
return $this->session
->getUserData()
->getPreferences()
->isCheckNotifications();
}
return false;
}
/**
* @return bool
*/
private function getCookiesEnabled(): bool
{
return $this->router->request()->cookies()->get(session_name()) !== null;
}
/**
* @return array
*/
private function getPlugins(): array
{
try {
return $this->pluginManagerService->getEnabled();
} catch (Exception $e) {
processException($e);
}
return [];
}
/**
* @return bool
*/
private function getAuthBasicAutologinEnabled(): bool
{
return $this->browser->getServerAuthUser() !== null && $this->configData->isAuthBasicAutoLoginEnabled();
}
/**
* @return string
*/
private function getPublicKey(): string
{
try {
return $this->session->getPublicKey() ?: $this->cryptPKI->getPublicKey();
} catch (FileException $e) {
processException($e);
return '';
}
}
/**
* Generate the CSRF token if not set
*
* @return string|null
*/
private function getCSRF(): ?string
{
logger(sprintf('CSRF key (get): %s', $this->session->getCSRF()));
return $this->session->getCSRF();
}
}