install, uninstall. pack to ModuleService
This commit is contained in:
@ -22,31 +22,11 @@ class ModuleController extends ConsoleController
|
||||
throw new \Exception('Missing module path "--path" specified');
|
||||
}
|
||||
|
||||
$zip = new ZipArchive;
|
||||
$tmpModuleDir = md5(time());
|
||||
$res = $zip->open(ROOT_DIR . $this->argv['path']);
|
||||
if ($res === TRUE) {
|
||||
$tmpModuleDirFull = RESOURCES_DIR . '/tmp/ad/' . $tmpModuleDir . "/";
|
||||
$zip->extractTo($tmpModuleDirFull);
|
||||
$zip->close();
|
||||
$this->out->r('Архив распакован', 'green');
|
||||
if (file_exists(ROOT_DIR . $this->argv['path'])) {
|
||||
$moduleService = new ModuleService();
|
||||
$moduleService->installModule($this->argv['path']);
|
||||
} else {
|
||||
$this->out->r('Message: Ошибка чтения архива', 'red');
|
||||
}
|
||||
|
||||
if (file_exists($tmpModuleDirFull . "/app/manifest.json")){
|
||||
$manifestJson = getConst(file_get_contents($tmpModuleDirFull . "/app/manifest.json"));
|
||||
$manifest = Manifest::getWithVars($manifestJson);
|
||||
$this->out->r('manifest.json инициализирован', 'green');
|
||||
|
||||
$fileHelper = new Files();
|
||||
$fileHelper->copy_folder($tmpModuleDirFull . '/app', $manifest['app_module_path']);
|
||||
$fileHelper->copy_folder($tmpModuleDirFull . '/kernel', $manifest['kernel_module_path']);
|
||||
|
||||
$this->out->r("Удаляем временные файлы", 'green');
|
||||
$fileHelper->recursiveRemoveDir($tmpModuleDirFull);
|
||||
|
||||
$this->out->r("Модуль " . $manifest['name'] . " установлен", 'green');
|
||||
$this->out->r("Модуль не найден", 'red');
|
||||
}
|
||||
}
|
||||
|
||||
@ -61,25 +41,15 @@ class ModuleController extends ConsoleController
|
||||
|
||||
if (file_exists(ROOT_DIR . $this->argv['path'])) {
|
||||
$moduleService = new ModuleService();
|
||||
$moduleInfo = $moduleService->getModuleInfo(APP_DIR . '/modules/' . basename($this->argv['path']));
|
||||
|
||||
if ($moduleService->isActive($moduleInfo['slug'])) {
|
||||
$moduleService->setActiveModule($moduleInfo['slug']);
|
||||
}
|
||||
|
||||
$fileHelper = new Files();
|
||||
if (file_exists(APP_DIR . '/modules/' . $moduleInfo['slug'])) {
|
||||
$fileHelper->recursiveRemoveDir(APP_DIR . '/modules/'. $moduleInfo['slug']);
|
||||
}
|
||||
if (file_exists(KERNEL_APP_MODULES_DIR . '/' . $moduleInfo['slug'])) {
|
||||
$fileHelper->recursiveRemoveDir(KERNEL_APP_MODULES_DIR . '/' . $moduleInfo['slug']);
|
||||
}
|
||||
$this->out->r("Модуль удален", 'green');
|
||||
$moduleService->uninstallModule($this->argv['path']);
|
||||
} else {
|
||||
$this->out->r("Модуль не найден", 'red');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function actionPackModule(): void
|
||||
{
|
||||
if (!isset($this->argv['path'])) {
|
||||
@ -87,22 +57,10 @@ class ModuleController extends ConsoleController
|
||||
}
|
||||
|
||||
if (file_exists(ROOT_DIR . $this->argv['path'])) {
|
||||
$moduleName = basename($this->argv['path']);
|
||||
|
||||
$tmpModuleDirFull = RESOURCES_DIR . '/tmp/ad/' . $moduleName . "/";
|
||||
|
||||
$fileHelper = new Files();
|
||||
$fileHelper->copy_folder(APP_DIR . '/modules/' . $moduleName, $tmpModuleDirFull . 'app/');
|
||||
$fileHelper->copy_folder(KERNEL_APP_MODULES_DIR . '/' . $moduleName, $tmpModuleDirFull . 'kernel/');
|
||||
|
||||
$this->out->r("Модуль собран во временную папку", 'green');
|
||||
|
||||
$fileHelper->pack($tmpModuleDirFull, RESOURCES_DIR . '/tmp/modules/' . $moduleName . '.itguild');
|
||||
|
||||
$this->out->r("Архив создан", 'green');
|
||||
$fileHelper->recursiveRemoveDir($tmpModuleDirFull);
|
||||
$this->out->r("Временная папка удалена", 'green');
|
||||
|
||||
$moduleService = new ModuleService();
|
||||
$moduleService->packModule($this->argv['path']);
|
||||
} else {
|
||||
$this->out->r("Модуль не найден", 'red');
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user