InstallCatchModuleCommand.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. /**
  3. * @filename InstallCatchModuleCommand.php
  4. * @createdAt 2020/2/24
  5. * @project https://github.com/yanwenwu/catch-admin
  6. * @document http://doc.catchadmin.com
  7. * @author JaguarJack <njphper@gmail.com>
  8. * @copyright By CatchAdmin
  9. * @license https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt
  10. */
  11. namespace catcher\command\install;
  12. use catchAdmin\permissions\model\Permissions;
  13. use catcher\CatchAdmin;
  14. use catcher\exceptions\FailedException;
  15. use catcher\library\Composer;
  16. use catcher\library\Compress;
  17. use catcher\facade\FileSystem;
  18. use catcher\library\InstallCatchModule;
  19. use catcher\library\Zip;
  20. use think\console\Command;
  21. use think\console\Input;
  22. use think\console\input\Argument;
  23. use think\console\input\Option;
  24. use think\console\Output;
  25. use think\facade\Console;
  26. class InstallCatchModuleCommand extends Command
  27. {
  28. protected function configure()
  29. {
  30. $this->setName('catch-install:module')
  31. ->addArgument('module', Argument::REQUIRED, 'module name')
  32. ->addOption('app', '-app', Option::VALUE_NONE, 'module install at [app] path')
  33. ->setDescription('install catch module');
  34. }
  35. protected function execute(Input $input, Output $output)
  36. {
  37. $module = $input->getArgument('module');
  38. $install = (new InstallCatchModule())->setModule($module)
  39. ->setInstallPath($input->getOption('app'));
  40. $output->info('start download module ' . $module);
  41. if (!$install->download()) {
  42. exit($output->error("install module [$module] failed"));
  43. }
  44. $install->install();
  45. $output->info("install module [ $module ] successfully");
  46. }
  47. }