themes add and some fix
This commit is contained in:
111
kernel/services/AdminThemeService.php
Normal file → Executable file
111
kernel/services/AdminThemeService.php
Normal file → Executable file
@ -4,12 +4,16 @@ namespace kernel\services;
|
||||
|
||||
use DirectoryIterator;
|
||||
use kernel\helpers\Debug;
|
||||
use kernel\helpers\Files;
|
||||
use kernel\helpers\Manifest;
|
||||
use kernel\helpers\RESTClient;
|
||||
use kernel\models\Option;
|
||||
use ZipArchive;
|
||||
|
||||
class AdminThemeService
|
||||
{
|
||||
protected array $errors = [];
|
||||
|
||||
protected Option $option;
|
||||
protected string $active_theme;
|
||||
protected ModuleService $moduleService;
|
||||
@ -22,6 +26,24 @@ class AdminThemeService
|
||||
$this->moduleService = new ModuleService();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public function getErrors(): array
|
||||
{
|
||||
return $this->errors;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $msg
|
||||
* @return void
|
||||
*/
|
||||
public function addError($msg): void
|
||||
{
|
||||
$this->errors[] = $msg;
|
||||
}
|
||||
|
||||
|
||||
public function findActiveAdminTheme(): void
|
||||
{
|
||||
$model = Option::where("key", "active_admin_theme")->first();
|
||||
@ -50,7 +72,7 @@ class AdminThemeService
|
||||
$info = [];
|
||||
$theme = getConst($theme);
|
||||
$info['path'] = $theme;
|
||||
if (file_exists($theme . "/manifest.json")){
|
||||
if (file_exists($theme . "/manifest.json")) {
|
||||
$manifest = file_get_contents($theme . "/manifest.json");
|
||||
$manifest = Manifest::getWithVars($manifest);
|
||||
$manifest['preview'] = $manifest['resource'] . "/" . $manifest['preview'];
|
||||
@ -60,6 +82,11 @@ class AdminThemeService
|
||||
return $info;
|
||||
}
|
||||
|
||||
public function getAdminThemeInfoBySlug(string $slug)
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
|
||||
public function isInstall(string $slug): bool
|
||||
{
|
||||
$adminThemePaths = Option::where("key", "admin_theme_paths")->first();
|
||||
@ -85,12 +112,13 @@ class AdminThemeService
|
||||
public function isLastVersion(string $slug): bool
|
||||
{
|
||||
if ($this->moduleService->isServerAvailable()) {
|
||||
$modules_info = RESTClient::request($_ENV['MODULE_SHOP_URL'] . '/api/module_shop/gb_slug');
|
||||
$modulesInfo = RESTClient::request($_ENV['MODULE_SHOP_URL'] . '/api/module_shop/gb_slug');
|
||||
|
||||
$modules_info = json_decode($modules_info->getBody()->getContents(), true);
|
||||
$modulesInfo = json_decode($modulesInfo->getBody()->getContents(), true);
|
||||
|
||||
$themeInfo = $this->getAdminThemeInfo($slug);
|
||||
foreach ($modules_info as $mod) {
|
||||
// Debug::dd($themeInfo);
|
||||
foreach ($modulesInfo as $mod) {
|
||||
if ($mod['slug'] === $themeInfo['slug'] && $mod['version'] === $themeInfo['version']) {
|
||||
return true;
|
||||
}
|
||||
@ -99,4 +127,79 @@ class AdminThemeService
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
public function pack(string $path): void
|
||||
{
|
||||
$themeName = basename($path);
|
||||
|
||||
$tmpThemeDirFull = RESOURCES_DIR . '/tmp/ad/' . $themeName . "/";
|
||||
|
||||
$fileHelper = new Files();
|
||||
$fileHelper->copy_folder(ROOT_DIR . $path, $tmpThemeDirFull . 'meta/');
|
||||
$fileHelper->copy_folder(RESOURCES_DIR . '/' . $themeName, $tmpThemeDirFull . 'resources/');
|
||||
|
||||
if (!is_dir(RESOURCES_DIR . '/tmp/admin_themes')) {
|
||||
$old_mask = umask(0);
|
||||
mkdir(RESOURCES_DIR . '/tmp/admin_themes', 0775, true);
|
||||
umask($old_mask);
|
||||
}
|
||||
$fileHelper->pack($tmpThemeDirFull, RESOURCES_DIR . '/tmp/admin_themes/' . $themeName . '.igt');
|
||||
}
|
||||
|
||||
public function install(string $path): bool
|
||||
{
|
||||
$zip = new ZipArchive;
|
||||
$tmpThemeDir = md5(time());
|
||||
$res = $zip->open(ROOT_DIR . $path);
|
||||
if ($res === TRUE) {
|
||||
$tmpThemeDirFull = RESOURCES_DIR . '/tmp/ad/' . $tmpThemeDir . "/";
|
||||
$zip->extractTo($tmpThemeDirFull);
|
||||
$zip->close();
|
||||
} else {
|
||||
$this->addError('unable to open zip archive');
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!file_exists($tmpThemeDirFull . "meta/manifest.json")){
|
||||
$this->addError('manifest.json not found');
|
||||
return false;
|
||||
}
|
||||
|
||||
$manifestJson = getConst(file_get_contents($tmpThemeDirFull . "meta/manifest.json"));
|
||||
$manifest = Manifest::getWithVars($manifestJson);
|
||||
|
||||
$fileHelper = new Files();
|
||||
if (isset($manifest['theme_path'])) {
|
||||
$fileHelper->copy_folder($tmpThemeDirFull . "meta", $manifest['theme_path']);
|
||||
} else {
|
||||
$fileHelper->copy_folder($tmpThemeDirFull . "meta", APP_DIR . '/admin_themes/' . $manifest['slug']);
|
||||
}
|
||||
|
||||
if (isset($manifest['resource_path'])) {
|
||||
$fileHelper->copy_folder($tmpThemeDirFull . "resources", $manifest['resource_path']);
|
||||
} else {
|
||||
$fileHelper->copy_folder($tmpThemeDirFull . "resources", RESOURCES_DIR . '/' . $manifest['slug']);
|
||||
}
|
||||
|
||||
$fileHelper->recursiveRemoveDir($tmpThemeDirFull);
|
||||
unlink(ROOT_DIR . $path);
|
||||
return true;
|
||||
}
|
||||
|
||||
public function uninstall(string $path): void
|
||||
{
|
||||
$themeInfo = $this->getAdminThemeInfo(APP_DIR . '/admin_themes/' . basename($path));
|
||||
|
||||
$active_admin_theme = Option::where("key", "active_admin_theme")->first();
|
||||
if ($active_admin_theme->value === ROOT_DIR . $path) {
|
||||
$this->setActiveAdminTheme(KERNEL_ADMIN_THEMES_DIR . '/default');
|
||||
}
|
||||
$fileHelper = new Files();
|
||||
if (file_exists(ROOT_DIR . $path)) {
|
||||
$fileHelper->recursiveRemoveDir(ROOT_DIR . $path);
|
||||
}
|
||||
if (file_exists(RESOURCES_DIR . '/' . $themeInfo['slug'])) {
|
||||
$fileHelper->recursiveRemoveDir(RESOURCES_DIR . '/' . $themeInfo['slug']);
|
||||
}
|
||||
}
|
||||
}
|
0
kernel/services/ConsoleService.php
Normal file → Executable file
0
kernel/services/ConsoleService.php
Normal file → Executable file
0
kernel/services/KernelService.php
Normal file → Executable file
0
kernel/services/KernelService.php
Normal file → Executable file
0
kernel/services/MigrationService.php
Normal file → Executable file
0
kernel/services/MigrationService.php
Normal file → Executable file
8
kernel/services/ModuleService.php
Normal file → Executable file
8
kernel/services/ModuleService.php
Normal file → Executable file
@ -362,11 +362,15 @@ class ModuleService
|
||||
if (file_exists(KERNEL_APP_MODULES_DIR . '/' . $moduleName)) {
|
||||
$fileHelper->copy_folder(KERNEL_APP_MODULES_DIR . '/' . $moduleName, $tmpModuleDirFull . 'kernel/');
|
||||
} else {
|
||||
mkdir($tmpModuleDirFull . 'kernel/');
|
||||
$old_mask = umask(0);
|
||||
mkdir($tmpModuleDirFull . 'kernel/', 0775, true);
|
||||
umask($old_mask);
|
||||
}
|
||||
|
||||
if (!is_dir(RESOURCES_DIR . '/tmp/modules')) {
|
||||
mkdir(RESOURCES_DIR . '/tmp/modules', 0777, true);
|
||||
$old_mask = umask(0);
|
||||
mkdir(RESOURCES_DIR . '/tmp/modules', 0775, true);
|
||||
umask($old_mask);
|
||||
}
|
||||
$fileHelper->pack($tmpModuleDirFull, RESOURCES_DIR . '/tmp/modules/' . $moduleName . '.igm');
|
||||
}
|
||||
|
0
kernel/services/ModuleShopService.php
Normal file → Executable file
0
kernel/services/ModuleShopService.php
Normal file → Executable file
0
kernel/services/TokenService.php
Normal file → Executable file
0
kernel/services/TokenService.php
Normal file → Executable file
Reference in New Issue
Block a user