CreateModule.php 4.5 KB

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