InstallLocalModuleCommand.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. namespace catcher\command\install;
  12. use catcher\library\InstallLocalModule;
  13. use think\console\Command;
  14. use think\console\Input;
  15. use think\console\input\Argument;
  16. use think\console\input\Option;
  17. use think\console\Output;
  18. class InstallLocalModuleCommand extends Command
  19. {
  20. protected function configure()
  21. {
  22. $this->setName('local:install')
  23. ->addArgument('module', Argument::REQUIRED, 'module name')
  24. ->setDescription('install catch local module');
  25. }
  26. protected function execute(Input $input, Output $output)
  27. {
  28. $installedModule = $input->getArgument('module');
  29. $install = new InstallLocalModule($installedModule);
  30. if (!$install->localModuleExist()) {
  31. while (true) {
  32. $modules = $install->getLocalModulesInfo(false);
  33. if (!count($modules)) {
  34. $output->error('Input module not found and All local modules had been enabled');exit;
  35. }
  36. $choose = '';
  37. $i = 1;
  38. foreach ($modules as $k => $module) {
  39. $choose .= ($i++) . ':' . ($module['name']) . ($module['enable'] ? '(开启)' : '(未开启)') . PHP_EOL;
  40. }
  41. $answer = $output->ask($input, $choose);
  42. if (isset($modules[$answer-1])) {
  43. $installedModule = $modules[$answer - 1]['name'];
  44. break;
  45. }
  46. }
  47. }
  48. $install = new InstallLocalModule($installedModule);
  49. if (!$install->isModuleEnabled()) {
  50. $output->error($installedModule . ' has been enabled!');
  51. exit;
  52. }
  53. if (!$install->done()) {
  54. $output->error(sprintf('module [%s] has been installed, You can use [php think enable:module $module] to start it.', $installedModule));
  55. }
  56. $output->info(sprintf('module [%s] installed successfully', $installedModule));
  57. }
  58. }