Files
sysPass/lib/SP/Core/UI/Theme.php
nuxsmin 42471b4680 * [MOD] Plugins module icon is now on main menu
* [MOD] Code refactoring
2018-08-31 00:11:55 +02:00

295 lines
7.1 KiB
PHP

<?php
/**
* sysPass
*
* @author nuxsmin
* @link https://syspass.org
* @copyright 2012-2018, 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\Core\UI;
use SP\Bootstrap;
use SP\Config\Config;
use SP\Config\ConfigData;
use SP\Core\Context\ContextInterface;
use SP\Core\Context\SessionContext;
use SP\Core\Exceptions\InvalidClassException;
use SP\Storage\File\FileCache;
use SP\Storage\File\FileException;
defined('APP_ROOT') || die();
/**
* Class Theme
*
* @package SP
*/
final class Theme implements ThemeInterface
{
const ICONS_CACHE_FILE = CACHE_PATH . DIRECTORY_SEPARATOR . 'icons.cache';
/**
* Cache expire time
*/
const CACHE_EXPIRE = 86400;
/**
* @var string
*/
private $themeUri = '';
/**
* @var string
*/
private $themePath = '';
/**
* @var string
*/
private $themePathFull = '';
/**
* @var string
*/
private $themeName = '';
/**
* @var string
*/
private $viewsPath = '';
/**
* @var ThemeIcons
*/
private $icons;
/**
* @var ConfigData
*/
private $configData;
/**
* @var SessionContext
*/
private $context;
/**
* @var string
*/
private $module;
/**
* @var FileCache
*/
private $fileCache;
/**
* Theme constructor.
*
* @param string $module
* @param Config $config
* @param ContextInterface $context
* @param FileCache $fileCache
*/
public function __construct($module, Config $config, ContextInterface $context, FileCache $fileCache)
{
$this->configData = $config->getConfigData();
$this->context = $context;
$this->fileCache = $fileCache;
$this->module = $module;
}
/**
* @param bool $force
*
* @throws InvalidClassException
*/
public function initialize($force = false)
{
if (is_dir(VIEW_PATH)) {
$this->initTheme($force);
$this->initIcons();
}
}
/**
* Inicializar el tema visual a utilizar
*
* @param bool $force Forzar la detección del tema para los inicios de sesión
*
* @return void
*/
public function initTheme($force = false)
{
if (empty($this->themeName) || $force === true) {
$this->themeName = $this->getUserTheme() ?: $this->getGlobalTheme();
}
$this->themeUri = Bootstrap::$WEBURI . '/app/modules/' . $this->module . 'themes' . $this->themeName;
$this->themePath = str_replace(APP_ROOT, '', VIEW_PATH) . DIRECTORY_SEPARATOR . $this->themeName;
$this->themePathFull = VIEW_PATH . DIRECTORY_SEPARATOR . $this->themeName;
$this->viewsPath = $this->themePathFull . DIRECTORY_SEPARATOR . 'views';
}
/**
* Obtener el tema visual del usuario
*
* @return string
*/
protected function getUserTheme()
{
return $this->context->isLoggedIn() ? $this->context->getUserData()->getPreferences()->getTheme() : null;
}
/**
* Devolver el tema visual de sysPass desde la configuración
*/
protected function getGlobalTheme()
{
return $this->configData->getSiteTheme();
}
/**
* Inicializar los iconos del tema actual
*
* @return ThemeIcons
* @throws InvalidClassException
*/
private function initIcons()
{
try {
if ($this->context->getAppStatus() !== SessionContext::APP_STATUS_RELOADED
&& !$this->fileCache->isExpired(self::ICONS_CACHE_FILE, self::CACHE_EXPIRE)
) {
$this->icons = $this->fileCache->load(self::ICONS_CACHE_FILE);
logger('Loaded icons cache', 'INFO');
return $this->icons;
}
} catch (FileException $e) {
processException($e);
}
$this->saveIcons();
return $this->icons;
}
/**
* @throws InvalidClassException
*/
private function saveIcons()
{
$iconsClass = $this->themePathFull . DIRECTORY_SEPARATOR . 'inc' . DIRECTORY_SEPARATOR . 'Icons.php';
if (file_exists($iconsClass)) {
if (!($this->icons = require $iconsClass) instanceof ThemeIcons) {
throw new InvalidClassException(__u('Clase no válida para iconos'));
}
try {
$this->fileCache->save(self::ICONS_CACHE_FILE, $this->icons);
logger('Saved icons cache', 'INFO');
} catch (FileException $e) {
processException($e);
}
}
}
/**
* Obtener los temas disponibles desde el directorio de temas
*
* @return array Con la información del tema
*/
public function getThemesAvailable()
{
$themesAvailable = [];
$themesDirs = dir(VIEW_PATH);
while (false !== ($themeDir = $themesDirs->read())) {
if ($themeDir !== '.' && $themeDir !== '..') {
$themeFile = VIEW_PATH . DIRECTORY_SEPARATOR . $themeDir . DIRECTORY_SEPARATOR . 'index.php';
if (file_exists($themeFile)) {
$themeInfo = require $themeFile;
$themesAvailable[$themeDir] = $themeInfo['name'];
}
}
}
$themesDirs->close();
return $themesAvailable;
}
/**
* Obtener la información del tema desde el archivo de información
*
* @return array (
* 'name' => string
* 'creator' => string
* 'version' => string
* 'js' => array
* 'css' => array
* )
*/
public function getThemeInfo()
{
$themeFile = $this->themePathFull . DIRECTORY_SEPARATOR . 'index.php';
if (file_exists($themeFile)) {
return include $themeFile;
}
return [];
}
/**
* @return string
*/
public function getThemeUri()
{
return $this->themeUri;
}
/**
* @return string
*/
public function getThemePath()
{
return $this->themePath;
}
/**
* @return string
*/
public function getThemeName()
{
return $this->themeName;
}
/**
* @return ThemeIcons
*/
public function getIcons()
{
return clone $this->icons;
}
/**
* @return string
*/
public function getViewsPath()
{
return $this->viewsPath;
}
}