Files
sysPass/app/modules/web/Controllers/Helpers/LayoutHelper.php

359 lines
12 KiB
PHP

<?php
/**
* sysPass
*
* @author nuxsmin
* @link http://syspass.org
* @copyright 2012-2017, 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\Helpers;
use SP\Bootstrap;
use SP\Core\Acl\Acl;
use SP\Core\Acl\ActionsInterface;
use SP\Core\Exceptions\SPException;
use SP\Core\Language;
use SP\Core\Plugin\PluginUtil;
use SP\Core\SessionUtil;
use SP\Core\UI\Theme;
use SP\Core\UI\ThemeInterface;
use SP\Html\DataGrid\DataGridAction;
use SP\Mgmt\Notices\Notice;
use SP\Util\Checks;
use SP\Util\Util;
/**
* Class LayoutHelper
*
* @package SP\Modules\Web\Controllers\Helpers
*/
class LayoutHelper extends HelperBase
{
/** @var bool */
protected $loggedIn;
/** @var ThemeInterface */
protected $theme;
/**
* @param Theme $theme
*/
public function inject(Theme $theme)
{
$this->theme = $theme;
}
/**
* Sets a full layout page
*
* @param Acl $acl
* @param string $page Page/view name
* @return LayoutHelper
*/
public function getFullLayout(Acl $acl, $page = '')
{
$this->setPage($page);
$this->initBody();
$this->getSessionBar();
$this->getMenu($acl);
$this->view->addPartial('body-content');
$this->view->addPartial('body-footer');
$this->view->addPartial('body-end');
return $this;
}
/**
* Establecer la variable de página de la vista
*
* @param $page
*/
public function setPage($page)
{
$this->view->assign('page', $page);
}
/**
* Inicializar las variables para la vista principal de la aplicación
*/
public function initBody()
{
$this->view->assign('startTime', microtime());
$this->view->addPartial('header');
$this->view->addPartial('body-start');
$this->view->assign('useLayout', true);
$this->view->assign('isInstalled', $this->configData->isInstalled());
$this->view->assign('sk', SessionUtil::getSessionKey(true, $this->configData));
$this->view->assign('appInfo', Util::getAppInfo());
$this->view->assign('appVersion', Util::getVersionString());
$this->view->assign('isDemoMode', $this->configData->isDemoEnabled());
$this->view->assign('icons', $this->theme->getIcons());
$this->view->assign('logoIcon', Bootstrap::$WEBURI . '/public/images/logo_icon.png');
$this->view->assign('logoNoText', Bootstrap::$WEBURI . '/public/images/logo_icon.svg');
$this->view->assign('logo', Bootstrap::$WEBURI . '/public/images/logo_full_bg.png');
$this->view->assign('logonobg', Bootstrap::$WEBURI . '/public/images/logo_full_nobg.png');
$this->view->assign('httpsEnabled', Checks::httpsEnabled());
$this->loggedIn = $this->session->isLoggedIn();
$this->view->assign('loggedIn', $this->loggedIn);
$this->view->assign('lang', $this->loggedIn ? Language::$userLang : Language::$globalLang);
$this->view->assign('loadApp', $this->session->getAuthCompleted());
try {
// Cargar la clave pública en la sesión
SessionUtil::loadPublicKey();
} catch (SPException $e) {
debugLog($e->getMessage(), true);
}
$this->getResourcesLinks();
$this->setResponseHeaders();
}
/**
* Obtener los datos para la cabcera de la página
*/
protected function getResourcesLinks()
{
$version = Util::getVersionStringNormalized();
$jsVersionHash = md5($version);
$this->view->append('jsLinks', Bootstrap::$WEBROOT . '/public/js/js.php?v=' . $jsVersionHash);
$this->view->append('jsLinks', Bootstrap::$WEBROOT . '/public/js/js.php?g=1&v=' . $jsVersionHash);
$themeInfo = $this->theme->getThemeInfo();
if (isset($themeInfo['js'])) {
$themeJsBase = urlencode($this->theme->getThemePath() . DIRECTORY_SEPARATOR . 'js');
$themeJsFiles = urlencode(implode(',', $themeInfo['js']));
$this->view->append('jsLinks', Bootstrap::$WEBROOT . '/public/js/js.php?f=' . $themeJsFiles . '&b=' . $themeJsBase . '&v=' . $jsVersionHash);
}
$userPreferences = $this->session->getUserData()->getPreferences();
if ($this->loggedIn && $userPreferences->getUserId() > 0) {
$resultsAsCards = $userPreferences->isResultsAsCards();
} else {
$resultsAsCards = $this->configData->isResultsAsCards();
}
$cssVersionHash = md5($version . $resultsAsCards);
$this->view->append('cssLinks', Bootstrap::$WEBROOT . '/public/css/css.php?v=' . $cssVersionHash);
if (isset($themeInfo['css'])) {
if ($resultsAsCards) {
$themeInfo['css'][] = 'search-card.min.css';
} else {
$themeInfo['css'][] = 'search-grid.min.css';
}
if ($this->configData->isDokuwikiEnabled()) {
$themeInfo['css'][] = 'styles-wiki.min.css';
}
$themeCssBase = urlencode($this->theme->getThemePath() . DIRECTORY_SEPARATOR . 'css');
$themeCssFiles = urlencode(implode(',', $themeInfo['css']));
$this->view->append('cssLinks', Bootstrap::$WEBROOT . '/public/css/css.php?f=' . $themeCssFiles . '&b=' . $themeCssBase . '&v=' . $jsVersionHash);
}
// Cargar los recursos de los plugins
foreach (PluginUtil::getLoadedPlugins() as $Plugin) {
$base = str_replace(BASE_PATH, '', $Plugin->getBase());
$jsResources = $Plugin->getJsResources();
$cssResources = $Plugin->getCssResources();
if (count($jsResources) > 0) {
$this->view->append('jsLinks', Bootstrap::$WEBROOT . '/public/js/js.php?f=' . urlencode(implode(',', $jsResources)) . '&b=' . urlencode($base . DIRECTORY_SEPARATOR . 'js') . '&v=' . $jsVersionHash);
}
if (count($cssResources) > 0) {
$this->view->append('cssLinks', Bootstrap::$WEBROOT . '/public/css/css.php?f=' . urlencode(implode(',', $cssResources)) . '&b=' . urlencode($base . DIRECTORY_SEPARATOR . 'css') . '&v=' . $jsVersionHash);
}
}
}
/**
* Establecer las cabeceras HTTP
*/
private function setResponseHeaders()
{
// UTF8 Headers
header('Content-Type: text/html; charset=UTF-8');
// Cache Control
header('Cache-Control: public, no-cache, max-age=0, must-revalidate');
header('Pragma: public; max-age=0');
}
/**
* Obtener los datos para la mostrar la barra de sesión
*/
public function getSessionBar()
{
$this->view->addPartial('sessionbar');
$userType = null;
$userData = $this->session->getUserData();
$icons = $this->theme->getIcons();
if ($userData->getIsAdminApp()) {
$userType = $icons->getIconAppAdmin();
} elseif ($userData->getIsAdminAcc()) {
$userType = $icons->getIconAccAdmin();
}
$this->view->assign('userType', $userType);
$this->view->assign('userId', $userData->getId());
$this->view->assign('userLogin', mb_strtoupper($userData->getLogin()));
$this->view->assign('userName', $userData->getName() ?: mb_strtoupper($this->view->userLogin));
$this->view->assign('userGroup', $userData->getUserGroupId());
$this->view->assign('showPassIcon', !($this->configData->isLdapEnabled() && $userData->getIsLdap()));
$this->view->assign('userNotices', count(Notice::getItem()->getAllActiveForUser()));
}
/**
* Obtener los datos para mostrar el menú de acciones
*
* @param Acl $acl
*/
public function getMenu(Acl $acl)
{
$this->view->addPartial('body-header-menu');
$icons = $this->theme->getIcons();
$actionSearch = new DataGridAction();
$actionSearch->setId(ActionsInterface::ACCOUNT);
$actionSearch->setTitle(__('Buscar'));
$actionSearch->setIcon($icons->getIconSearch());
$actionSearch->setData([
'historyReset' => 1,
'view' => 'search',
'route' => Acl::getActionRoute(ActionsInterface::ACCOUNT)
]);
$this->view->append('actions', $actionSearch);
if ($acl->checkUserAccess(ActionsInterface::ACCOUNT_CREATE)) {
$actionNewAccount = new DataGridAction();
$actionNewAccount->setId(ActionsInterface::ACCOUNT_CREATE);
$actionNewAccount->setTitle(__('Nueva Cuenta'));
$actionNewAccount->setIcon($icons->getIconAdd());
$actionNewAccount->setData([
'historyReset' => 0,
'view' => 'account',
'route' => Acl::getActionRoute(ActionsInterface::ACCOUNT_CREATE)
]);
$this->view->append('actions', $actionNewAccount);
}
if ($acl->checkUserAccess(ActionsInterface::ACCESS_MANAGE)) {
$actionAccessManager = new DataGridAction();
$actionAccessManager->setId(ActionsInterface::ACCESS_MANAGE);
$actionAccessManager->setTitle(__('Usuarios y Accesos'));
$actionAccessManager->setIcon($icons->getIconAccount());
$actionAccessManager->setData([
'historyReset' => 0,
'view' => 'datatabs',
'route' => Acl::getActionRoute(ActionsInterface::ACCESS_MANAGE)
]);
$this->view->append('actions', $actionAccessManager);
}
if ($acl->checkUserAccess(ActionsInterface::ITEMS_MANAGE)) {
$actionItemManager = new DataGridAction();
$actionItemManager->setId(ActionsInterface::ITEMS_MANAGE);
$actionItemManager->setTitle(__('Elementos y Personalización'));
$actionItemManager->setIcon($icons->getIconGroup());
$actionItemManager->setData([
'historyReset' => 0,
'view' => 'datatabs',
'route' => Acl::getActionRoute(ActionsInterface::ITEMS_MANAGE)
]);
$this->view->append('actions', $actionItemManager);
}
if ($acl->checkUserAccess(ActionsInterface::CONFIG)) {
$actionConfigManager = new DataGridAction();
$actionConfigManager->setId('config');
$actionConfigManager->setTitle(__('Configuración'));
$actionConfigManager->setIcon($icons->getIconSettings());
$actionConfigManager->setData([
'historyReset' => 1,
'view' => 'config',
'route' => Acl::getActionRoute(ActionsInterface::CONFIG)
]);
$this->view->append('actions', $actionConfigManager);
}
if ($acl->checkUserAccess(ActionsInterface::EVENTLOG) && $this->configData->isLogEnabled()) {
$actionEventlog = new DataGridAction();
$actionEventlog->setId(ActionsInterface::EVENTLOG);
$actionEventlog->setTitle(__('Registro de Eventos'));
$actionEventlog->setIcon($icons->getIconHeadline());
$actionEventlog->setData([
'historyReset' => 1,
'view' => 'eventlog',
'route' => Acl::getActionRoute(ActionsInterface::EVENTLOG)
]);
$this->view->append('actions', $actionEventlog);
}
}
/**
* Sets a full layout page
*
* @param string $template
* @param string $page Page/view name
* @return LayoutHelper
*/
public function getPublicLayout($template, $page = '')
{
$this->setPage($page);
$this->initBody();
$this->view->addPartial('body-header');
$this->view->addTemplate($template);
$this->view->addPartial('body-footer');
$this->view->addPartial('body-end');
return $this;
}
/**
* @param bool $loggedIn
*/
protected function setLoggedIn($loggedIn)
{
$this->loggedIn = (bool)$loggedIn;
$this->view->assign('loggedIn', $this->loggedIn);
}
}