123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- <?php
- namespace catcher\generate;
- use catcher\exceptions\FailedException;
- use catcher\generate\factory\Controller;
- use catcher\generate\factory\Migration;
- use catcher\generate\factory\Model;
- use catcher\generate\factory\Route;
- use catcher\generate\factory\SQL;
- use catcher\library\Composer;
- use think\facade\Db;
- class Generator
- {
- const NEED_PACKAGE = 'nikic/php-parser';
- /**
- * generate
- *
- * @time 2020年04月29日
- * @param $params
- * @return array
- */
- public function done($params)
- {
- // 判断是否安装了扩展包
- if (!(new Composer)->hasPackage(self::NEED_PACKAGE)) {
- throw new FailedException(
- sprintf('you must use [ composer require --dev %s]', self::NEED_PACKAGE)
- );
- }
- $params = \json_decode($params['data'], true);
- [$controller, $model] = $this->parseParams($params);
- $message = [];
- $files = [];
- $migration = '';
- $table = null;
- try {
- if ($params['create_controller']) {
- $files[] = (new Controller)->done($controller);
- array_push($message, 'controller created successfully');
- }
- if ($params['create_table']) {
- $table = (new SQL)->done($model);
- array_push($message, 'table created successfully');
- }
- if ($params['create_model']) {
- $files[] = (new Model)->done($model);
- array_push($message, 'model created successfully');
- }
- if ($params['create_migration']) {
- $migration = (new Migration)->done([$controller['module'], $model['table']]);
- array_push($message, 'migration created successfully');
- }
- // 只有创建了 Controller 最后成功才写入 route
- if ($params['create_controller']) {
- (new Route())->controller($controller['controller'])
- ->restful($controller['restful'])
- // ->methods((new Controller())->parseOtherMethods($controller['other_function']))
- ->done();
- }
- } catch (\Exception $exception) {
- $this->rollback($files, $migration, $table);
- throw new FailedException($exception->getFile() . $exception->getLine() . $exception->getMessage());
- }
- return $message;
- }
- /**
- * preview
- *
- * @time 2020年04月29日
- * @param $params
- * @return bool|string|string[]
- */
- public function preview($params)
- {
- $type = $params['type'];
- $params = \json_decode($params['data'], true);
- [$controller, $model] = $this->parseParams($params);
- switch ($type) {
- case 'controller':
- return (new Controller())->getContent($controller);
- case 'model':
- return (new Model())->getContent($model);
- default:
- break;
- }
- }
- /**
- * parse params
- *
- * @time 2020年04月28日
- * @param $params
- * @return array[]
- */
- protected function parseParams($params)
- {
- $module = $params['controller']['module'] ?? false;
- if (!$module) {
- throw new FailedException('请设置模块');
- }
- $controller = [
- 'module' => $module,
- 'model' => $params['controller']['model'] ?? '',
- 'controller' => $params['controller']['controller'] ?? '',
- 'restful' => $params['controller']['restful'],
- // 'other_function' => $params['controller']['other_function'],
- ];
- $table = $params['controller']['table'] ?? '';
- if ($table) {
- $table = \config('database.connections.mysql.prefix') . $table;
- }
- $model = [
- 'table' => $table,
- 'model' => $params['controller']['model'] ?? '',
- 'sql' => $params['table_fields'],
- 'extra' => $params['table_extra'],
- ];
- return [$controller, $model];
- }
- /**
- * 回滚
- *
- * @param $files
- * @param $migration
- * @param $table
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author JaguarJack <njphper@gmail.com>
- * @date 2020/7/11
- */
- protected function rollback($files, $migration, $table)
- {
- if ((new SQL())->hasTableExists($table)) {
- Db::query(sprintf('drop table %s', $table));
- }
- foreach ($files as $file) {
- unlink($file);
- }
- if ($migration && unlink($migration)) {
- $model = new class extends \think\Model {
- protected $name = 'migrations';
- };
- $migration = $model->order('version', 'desc')->find();
- $model->where('version', $migration->version)->delete();
- }
- }
- }
|