ModuleServiceDiscoverCommand.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?php
  2. /**
  3. * @filename GetModuleTrait.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 catcher\CatchAdmin;
  13. use think\console\Command;
  14. use think\console\Input;
  15. use think\console\input\Option;
  16. use think\console\Output;
  17. class ModuleServiceDiscoverCommand extends Command
  18. {
  19. protected function configure()
  20. {
  21. $this->setName('catch-service:discover')
  22. ->addOption('module', '-m',Option::VALUE_REQUIRED, 'module name')
  23. ->setDescription('install catch module service');
  24. }
  25. protected function execute(Input $input, Output $output)
  26. {
  27. $module = $input->getOption('module');
  28. $moduleServices = $this->getServices($module);
  29. $services = [];
  30. $servicesPath = root_path() . 'vendor' . DIRECTORY_SEPARATOR . 'services.php';
  31. if (file_exists($servicesPath)) {
  32. $services = include $servicesPath;
  33. }
  34. $services = array_unique(array_merge($services, $moduleServices));
  35. $this->exportServices($services, $servicesPath);
  36. }
  37. /**
  38. * 导出服务
  39. *
  40. * @time 2020年06月20日
  41. * @param $services
  42. * @param $servicesPath
  43. * @return void
  44. */
  45. protected function exportServices($services, $servicesPath)
  46. {
  47. $exportArr = var_export($services, true);
  48. $currentTime = date('Y-m-d H:i:s');
  49. file_put_contents($servicesPath, <<<PHP
  50. <?php
  51. // This file is automatically generated at:{$currentTime}
  52. declare (strict_types = 1);
  53. return $exportArr;
  54. PHP
  55. );
  56. }
  57. /**
  58. * 获取服务
  59. *
  60. * @time 2020年06月20日
  61. * @param $module
  62. * @return array
  63. */
  64. protected function getServices($module)
  65. {
  66. if ($module) {
  67. $moduleInfo = CatchAdmin::getModuleInfo(CatchAdmin::directory() . $module);
  68. if (isset($moduleInfo['services']) && !empty($moduleInfo['services'])) {
  69. return $moduleInfo['enable'] ? $moduleInfo['services'] : [];
  70. } else {
  71. return [];
  72. }
  73. }
  74. return CatchAdmin::getEnabledService();
  75. }
  76. /**
  77. * 获取模块
  78. *
  79. * @time 2020年06月20日
  80. * @param $module
  81. * @return array
  82. */
  83. protected function getModules($module)
  84. {
  85. $moduleNames = [];
  86. if (!$module) {
  87. $modules = CatchAdmin::getModulesDirectory();
  88. foreach ($modules as $module) {
  89. $m = explode(DIRECTORY_SEPARATOR, trim($module, DIRECTORY_SEPARATOR));
  90. $moduleNames[] = array_pop($m);
  91. }
  92. return $moduleNames;
  93. }
  94. return [$module];
  95. }
  96. }