mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-03 07:04:07 +01:00
137 lines
3.7 KiB
PHP
137 lines
3.7 KiB
PHP
<?php
|
|
/*
|
|
* sysPass
|
|
*
|
|
* @author nuxsmin
|
|
* @link https://syspass.org
|
|
* @copyright 2012-2023, 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\Core\Exceptions\InvalidClassException;
|
|
use SP\Domain\Config\Ports\ConfigDataInterface;
|
|
use SP\Domain\Core\Context\ContextInterface;
|
|
use SP\Domain\Core\UI\ThemeContextInterface;
|
|
use SP\Domain\Core\UI\ThemeIconsInterface;
|
|
use SP\Domain\Core\UI\ThemeInterface;
|
|
use SP\Infrastructure\File\FileException;
|
|
use SP\Util\FileUtil;
|
|
|
|
use function SP\processException;
|
|
|
|
/**
|
|
* Class Theme
|
|
*
|
|
* @package SP
|
|
*/
|
|
final class Theme implements ThemeInterface
|
|
{
|
|
public function __construct(
|
|
private readonly ThemeContextInterface $themeContext,
|
|
private readonly ThemeIconsInterface $icons
|
|
) {
|
|
}
|
|
|
|
public static function getThemeName(ConfigDataInterface $configData, ContextInterface $context): ?string
|
|
{
|
|
$name = $configData->getSiteTheme();
|
|
|
|
if ($context->isLoggedIn()) {
|
|
return $context->getUserData()->getPreferences()->getTheme() ?? $name;
|
|
}
|
|
|
|
return $name;
|
|
}
|
|
|
|
/**
|
|
* Obtener los temas disponibles desde el directorio de temas
|
|
*/
|
|
public function getAvailable(): array
|
|
{
|
|
$directory = $this->themeContext->getViewsDirectory();
|
|
$themesAvailable = [];
|
|
|
|
while (false !== ($themeDir = $directory->read())) {
|
|
if (is_dir($themeDir) && $themeDir !== '.' && $themeDir !== '..') {
|
|
try {
|
|
$themeInfo = FileUtil::require(
|
|
FileUtil::buildPath($this->themeContext->getViewsPath(), $themeDir, 'index.php')
|
|
);
|
|
|
|
if (is_array($themeInfo) && isset($themeInfo['name'])) {
|
|
$themesAvailable[$themeDir] = $themeInfo['name'];
|
|
}
|
|
} catch (InvalidClassException|FileException $e) {
|
|
processException($e);
|
|
}
|
|
}
|
|
}
|
|
|
|
$directory->close();
|
|
|
|
return $themesAvailable;
|
|
}
|
|
|
|
public function getViewsPath(): string
|
|
{
|
|
return $this->themeContext->getViewsPath();
|
|
}
|
|
|
|
/**
|
|
* 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 getInfo(): array
|
|
{
|
|
try {
|
|
$themeInfo = FileUtil::require(FileUtil::buildPath($this->themeContext->getFullPath(), 'index.php'));
|
|
|
|
if (is_array($themeInfo)) {
|
|
return $themeInfo;
|
|
}
|
|
} catch (InvalidClassException|FileException $e) {
|
|
processException($e);
|
|
}
|
|
|
|
return [];
|
|
}
|
|
|
|
public function getUri(): string
|
|
{
|
|
return $this->themeContext->getUri();
|
|
}
|
|
|
|
public function getPath(): string
|
|
{
|
|
return $this->themeContext->getPath();
|
|
}
|
|
|
|
public function getIcons(): ThemeIconsInterface
|
|
{
|
|
return clone $this->icons;
|
|
}
|
|
}
|