Generator.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <?php
  2. namespace catcher\generate;
  3. use catcher\exceptions\FailedException;
  4. use catcher\generate\factory\Controller;
  5. use catcher\generate\factory\Migration;
  6. use catcher\generate\factory\Model;
  7. use catcher\generate\factory\Route;
  8. use catcher\generate\factory\SQL;
  9. use catcher\library\Composer;
  10. use think\facade\Db;
  11. class Generator
  12. {
  13. const NEED_PACKAGE = 'nikic/php-parser';
  14. /**
  15. * generate
  16. *
  17. * @time 2020年04月29日
  18. * @param $params
  19. * @return array
  20. */
  21. public function done($params)
  22. {
  23. // 判断是否安装了扩展包
  24. if (!(new Composer)->hasPackage(self::NEED_PACKAGE)) {
  25. throw new FailedException(
  26. sprintf('you must use [ composer require --dev %s]', self::NEED_PACKAGE)
  27. );
  28. }
  29. $params = \json_decode($params['data'], true);
  30. [$controller, $model] = $this->parseParams($params);
  31. $message = [];
  32. $files = [];
  33. $migration = '';
  34. $table = null;
  35. try {
  36. if ($params['create_controller']) {
  37. $files[] = (new Controller)->done($controller);
  38. array_push($message, 'controller created successfully');
  39. }
  40. if ($params['create_table']) {
  41. $table = (new SQL)->done($model);
  42. array_push($message, 'table created successfully');
  43. }
  44. if ($params['create_model']) {
  45. $files[] = (new Model)->done($model);
  46. array_push($message, 'model created successfully');
  47. }
  48. if ($params['create_migration']) {
  49. $migration = (new Migration)->done([$controller['module'], $model['table']]);
  50. array_push($message, 'migration created successfully');
  51. }
  52. // 只有创建了 Controller 最后成功才写入 route
  53. if ($params['create_controller']) {
  54. (new Route())->controller($controller['controller'])
  55. ->restful($controller['restful'])
  56. // ->methods((new Controller())->parseOtherMethods($controller['other_function']))
  57. ->done();
  58. }
  59. } catch (\Exception $exception) {
  60. $this->rollback($files, $migration, $table);
  61. throw new FailedException($exception->getFile() . $exception->getLine() . $exception->getMessage());
  62. }
  63. return $message;
  64. }
  65. /**
  66. * preview
  67. *
  68. * @time 2020年04月29日
  69. * @param $params
  70. * @return bool|string|string[]
  71. */
  72. public function preview($params)
  73. {
  74. $type = $params['type'];
  75. $params = \json_decode($params['data'], true);
  76. [$controller, $model] = $this->parseParams($params);
  77. switch ($type) {
  78. case 'controller':
  79. return (new Controller())->getContent($controller);
  80. case 'model':
  81. return (new Model())->getContent($model);
  82. default:
  83. break;
  84. }
  85. }
  86. /**
  87. * parse params
  88. *
  89. * @time 2020年04月28日
  90. * @param $params
  91. * @return array[]
  92. */
  93. protected function parseParams($params)
  94. {
  95. $module = $params['controller']['module'] ?? false;
  96. if (!$module) {
  97. throw new FailedException('请设置模块');
  98. }
  99. $controller = [
  100. 'module' => $module,
  101. 'model' => $params['controller']['model'] ?? '',
  102. 'controller' => $params['controller']['controller'] ?? '',
  103. 'restful' => $params['controller']['restful'],
  104. // 'other_function' => $params['controller']['other_function'],
  105. ];
  106. $table = $params['controller']['table'] ?? '';
  107. if ($table) {
  108. $table = \config('database.connections.mysql.prefix') . $table;
  109. }
  110. $model = [
  111. 'table' => $table,
  112. 'model' => $params['controller']['model'] ?? '',
  113. 'sql' => $params['table_fields'],
  114. 'extra' => $params['table_extra'],
  115. ];
  116. return [$controller, $model];
  117. }
  118. /**
  119. * 回滚
  120. *
  121. * @param $files
  122. * @param $migration
  123. * @param $table
  124. * @throws \think\db\exception\DataNotFoundException
  125. * @throws \think\db\exception\DbException
  126. * @throws \think\db\exception\ModelNotFoundException
  127. * @author JaguarJack <njphper@gmail.com>
  128. * @date 2020/7/11
  129. */
  130. protected function rollback($files, $migration, $table)
  131. {
  132. if ((new SQL())->hasTableExists($table)) {
  133. Db::query(sprintf('drop table %s', $table));
  134. }
  135. foreach ($files as $file) {
  136. unlink($file);
  137. }
  138. if ($migration && unlink($migration)) {
  139. $model = new class extends \think\Model {
  140. protected $name = 'migrations';
  141. };
  142. $migration = $model->order('version', 'desc')->find();
  143. $model->where('version', $migration->version)->delete();
  144. }
  145. }
  146. }