CreateModuleCommand.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. <?php
  2. namespace catcher\command;
  3. use catcher\facade\FileSystem;
  4. use catcher\library\Composer;
  5. use catcher\library\Compress;
  6. use think\console\Command;
  7. use think\console\Input;
  8. use think\console\input\Argument;
  9. use think\console\Output;
  10. use catcher\CatchAdmin;
  11. use think\Exception;
  12. class CreateModuleCommand extends Command
  13. {
  14. protected $module;
  15. protected $moduleDir;
  16. protected $stubDir;
  17. /**
  18. * @var string
  19. */
  20. protected $name;
  21. /**
  22. * @var string
  23. */
  24. protected $description;
  25. protected $namespaces;
  26. protected function configure()
  27. {
  28. $this->setName('create:module')
  29. ->addArgument('module', Argument::REQUIRED, 'module name')
  30. ->setDescription('create module service');
  31. }
  32. protected function execute(Input $input, Output $output)
  33. {
  34. try {
  35. $this->module = strtolower($input->getArgument('module'));
  36. $this->name = $output->ask($input, '请输入模块中文名称');
  37. if (!$this->name) {
  38. while (true) {
  39. $this->name = $output->ask($input, '请输入模块中文名称');
  40. if ($this->name) {
  41. break;
  42. }
  43. }
  44. }
  45. $this->description = $output->ask($input, '请输入模块描述');
  46. $this->description = $this->description ? : '';
  47. $this->moduleDir = CatchAdmin::moduleDirectory($this->module);
  48. $this->stubDir = __DIR__ . DIRECTORY_SEPARATOR . 'stubs' . DIRECTORY_SEPARATOR;
  49. $psr4 = (new Composer())->psr4Autoload();
  50. foreach ($psr4 as $namespace => $des) {
  51. if ($des === CatchAdmin::$root) {
  52. $this->namespaces = $namespace . $this->module . '\\';
  53. break;
  54. }
  55. }
  56. $this->createFile();
  57. } catch (\Exception $exception) {
  58. $this->rollback();
  59. $output->error($exception->getMessage());
  60. exit;
  61. }
  62. $output->info('module created');
  63. }
  64. /**
  65. * 创建失败 rollback
  66. *
  67. * @time 2020年06月25日
  68. * @return void
  69. */
  70. protected function rollback()
  71. {
  72. FileSystem::deleteDirectory($this->moduleDir);
  73. }
  74. /**
  75. * 模块文件夹
  76. *
  77. * @time 2020年06月25日
  78. * @return string[]
  79. */
  80. protected function modulePath()
  81. {
  82. return [
  83. $this->moduleDir . 'controller',
  84. $this->moduleDir . 'model',
  85. $this->moduleDir . 'database' . DIRECTORY_SEPARATOR . 'migrations',
  86. $this->moduleDir . 'database' . DIRECTORY_SEPARATOR . 'seeds',
  87. ];
  88. }
  89. /**
  90. * 模块文件
  91. *
  92. * @time 2020年06月25日
  93. * @return string[]
  94. */
  95. protected function moduleFiles()
  96. {
  97. return [
  98. $this->moduleDir . ucfirst($this->module). 'Service.php',
  99. $this->moduleDir . 'module.json',
  100. $this->moduleDir . 'route.php',
  101. ];
  102. }
  103. /**
  104. * 创建路径
  105. *
  106. * @time 2020年06月25日
  107. * @return void
  108. */
  109. protected function createDir()
  110. {
  111. foreach ($this->modulePath() as $path)
  112. {
  113. CatchAdmin::makeDirectory($path);
  114. }
  115. }
  116. /**
  117. * 创建文件
  118. *
  119. * @time 2020年06月25日
  120. * @return void
  121. */
  122. protected function createFile()
  123. {
  124. $this->createDir();
  125. $this->createService();
  126. $this->createRoute();
  127. $this->createModuleJson();
  128. }
  129. /**
  130. * 创建 service
  131. *
  132. * @time 2020年06月25日
  133. * @return void
  134. */
  135. protected function createService()
  136. {
  137. $service = FileSystem::sharedGet(__DIR__ . DIRECTORY_SEPARATOR . 'stubs' . DIRECTORY_SEPARATOR . 'service.stub');
  138. $content = str_replace(['{NAMESPACE}', '{SERVICE}'],
  139. [substr($this->namespaces, 0, -1),
  140. ucfirst($this->module) . 'Service'], $service);
  141. FileSystem::put($this->moduleDir . ucfirst($this->module) . 'Service.php', $content);
  142. }
  143. /**
  144. * 创建 module.json
  145. *
  146. * @time 2020年06月25日
  147. * @return void
  148. */
  149. protected function createModuleJson()
  150. {
  151. $moduleJson = FileSystem::sharedGet(__DIR__ . DIRECTORY_SEPARATOR . 'stubs' . DIRECTORY_SEPARATOR . 'module.stub');
  152. $content = str_replace(['{NAME}','{DESCRIPTION}','{MODULE}', '{SERVICE}', '{KEYWORDS}'],
  153. [
  154. $this->name, $this->description,
  155. $this->module,
  156. '\\\\'. str_replace('\\', '\\\\',
  157. $this->namespaces . ucfirst($this->module) . 'Service'),
  158. ''
  159. ], $moduleJson);
  160. FileSystem::put($this->moduleDir . 'module.json', $content);
  161. }
  162. /**
  163. * 创建路由文件
  164. *
  165. * @time 2020年06月25日
  166. * @return void
  167. */
  168. protected function createRoute()
  169. {
  170. FileSystem::put($this->moduleDir . 'route.php', file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'stubs' . DIRECTORY_SEPARATOR . 'route.stub'));
  171. }
  172. }