modify plugin name
This commit is contained in:
@@ -0,0 +1,340 @@
|
||||
<?php
|
||||
/**
|
||||
* Created by PhpStorm.
|
||||
* User: 向林
|
||||
* Date: 2016/8/9 0009
|
||||
* Time: 17:43
|
||||
*/
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Gii;
|
||||
|
||||
use Database\Connection;
|
||||
use Database\Db;
|
||||
use Exception;
|
||||
use Symfony\Component\Console\Input\InputInterface;
|
||||
|
||||
/**
|
||||
* Class gii
|
||||
*
|
||||
* @package Inter\utility
|
||||
*/
|
||||
class Gii
|
||||
{
|
||||
private ?string $tableName = NULL;
|
||||
|
||||
/** @var null|Connection */
|
||||
private ?Connection $db;
|
||||
|
||||
private InputInterface $input;
|
||||
|
||||
public string $modelPath = APP_PATH . 'models/';
|
||||
public string $modelNamespace = 'app\Model\\';
|
||||
|
||||
public string $controllerPath = APP_PATH . 'controllers/';
|
||||
public string $controllerNamespace = 'app\\Controller\\';
|
||||
|
||||
|
||||
public static array $createSqls = [];
|
||||
|
||||
|
||||
public array $keyword = [
|
||||
'ADD', 'ALL', 'ALTER', 'AND', 'AS', 'ASC', 'ASENSITIVE', 'BEFORE', 'BETWEEN', 'BIGINT', 'BINARY', 'BLOB', 'BOTH', 'BY', 'CALL', 'CASCADE', 'CASE', 'CHANGE', 'CHAR', 'CHARACTER', 'CHECK', 'COLLATE', 'COLUMN', 'CONDITION', 'CONNECTION', 'CONSTRAINT', 'CONTINUE', 'CONVERT', 'CREATE', 'CROSS', 'CURRENT_DATE', 'CURRENT_TIME', 'CURRENT_TIMESTAMP', 'CURRENT_USER', 'CURSOR', 'DATABASE', 'DATABASES', 'DAY_HOUR', 'DAY_MICROSECOND', 'DAY_MINUTE', 'DAY_SECOND', 'DEC', 'DECIMAL', 'DECLARE', 'DEFAULT', 'DELAYED', 'DELETE', 'DESC', 'DESCRIBE', 'DETERMINISTIC', 'DISTINCT', 'DISTINCTROW', 'DIV', 'DOUBLE', 'DROP', 'DUAL', 'EACH', 'ELSE', 'ELSEIF', 'ENCLOSED', 'ESCAPED', 'EXISTS', 'EXIT', 'EXPLAIN', 'FALSE', 'FETCH', 'FLOAT', 'FLOAT4', 'FLOAT8', 'FOR', 'FORCE', 'FOREIGN', 'FROM', 'FULLTEXT', 'GOTO', 'GRANT', 'GROUP', 'HAVING', 'HIGH_PRIORITY', 'HOUR_MICROSECOND', 'HOUR_MINUTE', 'HOUR_SECOND', 'IF', 'IGNORE', 'IN', 'INDEX', 'INFILE', 'INNER', 'INOUT', 'INSENSITIVE', 'INSERT', 'INT', 'INT1', 'INT2', 'INT3', 'INT4', 'INT8', 'INTEGER', 'INTERVAL', 'INTO', 'IS', 'ITERATE', 'JOIN', 'KEY', 'KEYS', 'KILL', 'LABEL', 'LEADING', 'LEAVE', 'LEFT', 'LIKE', 'LIMIT', 'LINEAR', 'LINES', 'LOAD', 'LOCALTIME', 'LOCALTIMESTAMP', 'LOCK', 'LONG', 'LONGBLOB', 'LONGTEXT', 'LOOP', 'LOW_PRIORITY', 'MATCH', 'MEDIUMBLOB', 'MEDIUMINT', 'MEDIUMTEXT', 'MIDDLEINT', 'MINUTE_MICROSECOND', 'MINUTE_SECOND', 'MOD', 'MODIFIES', 'NATURAL', 'NOT', 'NO_WRITE_TO_BINLOG', 'NULL', 'NUMERIC', 'ON', 'OPTIMIZE', 'OPTION', 'OPTIONALLY', 'OR', 'ORDER', 'OUT', 'OUTER', 'OUTFILE', 'PRECISION', 'PRIMARY', 'PROCEDURE', 'PURGE', 'RAID0', 'RANGE', 'READ', 'READS', 'REAL', 'REFERENCES', 'REGEXP', 'RELEASE', 'RENAME', 'REPEAT', 'REPLACE', 'REQUIRE', 'RESTRICT', 'RETURN', 'REVOKE', 'RIGHT', 'RLIKE', 'SCHEMA', 'SCHEMAS', 'SECOND_MICROSECOND', 'SELECT', 'SENSITIVE', 'SEPARATOR', 'SET', 'SHOW', 'SMALLINT', 'SPATIAL', 'SPECIFIC', 'SQL', 'SQLEXCEPTION', 'SQLSTATE', 'SQLWARNING', 'SQL_BIG_RESULT', 'SQL_CALC_FOUND_ROWS', 'SQL_SMALL_RESULT', 'SSL', 'STARTING', 'STRAIGHT_JOIN', 'TABLE', 'TERMINATED', 'THEN', 'TINYBLOB', 'TINYINT', 'TINYTEXT', 'TO', 'TRAILING', 'TRIGGER', 'TRUE', 'UNDO', 'UNION', 'UNIQUE', 'UNLOCK', 'UNSIGNED', 'UPDATE', 'USAGE', 'USE', 'USING', 'UTC_DATE', 'UTC_TIME', 'UTC_TIMESTAMP', 'VALUES', 'VARBINARY', 'VARCHAR', 'VARCHARACTER', 'VARYING', 'WHEN', 'WHERE', 'WHILE', 'WITH', 'WRITE', 'X509', 'XOR', 'YEAR_MONTH', 'ZEROFILL'
|
||||
];
|
||||
|
||||
/**
|
||||
* @param Connection|null $db
|
||||
*
|
||||
* @param InputInterface $input
|
||||
* @return array
|
||||
* @throws Exception
|
||||
*/
|
||||
public function run(?Connection $db, InputInterface $input): array
|
||||
{
|
||||
return $this->gen($input, $db);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param InputInterface $input
|
||||
* @param $db
|
||||
* @return array
|
||||
* @throws Exception
|
||||
*/
|
||||
public function gen(InputInterface $input, $db): array
|
||||
{
|
||||
$this->input = $input;
|
||||
$this->db = $db;
|
||||
|
||||
$make = $this->input->getOption('make');
|
||||
if (empty($make)) {
|
||||
throw new Exception('构建类型不能为空~');
|
||||
}
|
||||
switch (strtolower($make)) {
|
||||
case 'task':
|
||||
$task = new GiiTask();
|
||||
$task->setInput($this->input);
|
||||
return $task->generate();
|
||||
case 'middleware':
|
||||
$task = new GiiMiddleware();
|
||||
$task->setInput($this->input);
|
||||
return $task->generate();
|
||||
case 'rpc-client':
|
||||
$task = new GiiRpcClient();
|
||||
$task->setInput($this->input);
|
||||
return $task->generate();
|
||||
case 'rpc-service':
|
||||
$task = new GiiRpcService();
|
||||
$task->setInput($this->input);
|
||||
return $task->generate();
|
||||
case 'json-rpc':
|
||||
$task = new GiiJsonRpc();
|
||||
$task->setInput($this->input);
|
||||
return $task->create();
|
||||
default:
|
||||
return $this->getModel($make, $input);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param $make
|
||||
* @param $input
|
||||
* @return array
|
||||
* @throws Exception
|
||||
*/
|
||||
private function getModel($make, $input): array
|
||||
{
|
||||
return $this->makeByDatabases($make, $input);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param $make
|
||||
* @param InputInterface $input
|
||||
* @return array
|
||||
* @throws Exception
|
||||
*/
|
||||
private function makeByDatabases($make, InputInterface $input): array
|
||||
{
|
||||
if ($input->hasOption('name')) {
|
||||
$this->tableName = $input->getOption('name');
|
||||
}
|
||||
return match ($make) {
|
||||
'controller' => $this->getTable(1, 0),
|
||||
'model' => $this->getTable(0, 1),
|
||||
default => [],
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param $controller
|
||||
* @param $model
|
||||
* @return array
|
||||
*
|
||||
* @throws Exception
|
||||
*/
|
||||
private function getTable($controller, $model): array
|
||||
{
|
||||
$tables = $this->getFields($this->getTables());
|
||||
if (empty($tables)) {
|
||||
return [];
|
||||
}
|
||||
|
||||
$fileList = [];
|
||||
foreach ($tables as $key => $val) {
|
||||
$data = $this->createModelFile($key, $val);
|
||||
if ($controller == 1) {
|
||||
$fileList[] = $this->generateController($data);
|
||||
}
|
||||
if ($model == 1) {
|
||||
$fileList[] = $this->generateModel($data);
|
||||
}
|
||||
}
|
||||
return $fileList;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $data
|
||||
* @return string
|
||||
* @throws Exception
|
||||
*/
|
||||
private function generateModel(array $data): string
|
||||
{
|
||||
$controller = new GiiModel($data['classFileName'], $data['tableName'], $data['visible'], $data['res'], $data['fields']);
|
||||
$controller->setConnection($this->db);
|
||||
$controller->setModelPath($this->modelPath);
|
||||
$controller->setModelNamespace($this->modelNamespace);
|
||||
$controller->setInput($this->input);
|
||||
// $controller->setModule($this->input->getArgument('module'));
|
||||
$controller->setControllerPath($this->controllerPath);
|
||||
$controller->setControllerNamespace($this->controllerNamespace);
|
||||
return $controller->generate();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $data
|
||||
* @return string
|
||||
* @throws Exception
|
||||
*/
|
||||
private function generateController(array $data): string
|
||||
{
|
||||
$controller = new GiiController($data['classFileName'], $data['fields']);
|
||||
$controller->setConnection($this->db);
|
||||
$controller->setModelPath($this->modelPath);
|
||||
$controller->setInput($this->input);
|
||||
$controller->setModelNamespace($this->modelNamespace);
|
||||
$controller->setControllerPath($this->controllerPath);
|
||||
// $controller->setModule($this->input->getArgument('module'));
|
||||
$controller->setControllerNamespace($this->controllerNamespace);
|
||||
return $controller->generate();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array|string|null
|
||||
* @throws Exception
|
||||
*/
|
||||
private function getTables(): array|string|null
|
||||
{
|
||||
if (empty($this->tableName)) {
|
||||
return $this->showAll();
|
||||
}
|
||||
$res = $this->tableName;
|
||||
if (is_string($res)) {
|
||||
$res = explode(',', $this->tableName);
|
||||
}
|
||||
if (empty($res)) {
|
||||
return [];
|
||||
}
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
* @throws Exception
|
||||
*/
|
||||
private function showAll(): array
|
||||
{
|
||||
$res = [];
|
||||
$_tables = Db::findAllBySql('show tables from `' . $this->db->database . '`', [], $this->db);
|
||||
if (empty($_tables)) {
|
||||
return $res;
|
||||
}
|
||||
foreach ($_tables as $key => $val) {
|
||||
$res[] = array_shift($val);
|
||||
}
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $table
|
||||
* @return bool|int|null
|
||||
* @throws Exception
|
||||
*/
|
||||
private function getIndex($table): bool|int|null
|
||||
{
|
||||
$data = Db::findAllBySql('SHOW INDEX FROM ' . $table, [], $this->db);
|
||||
|
||||
return empty($data) ? NULL : $data[0];
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $tables
|
||||
*
|
||||
* @return array
|
||||
* @throws
|
||||
*/
|
||||
private function getFields($tables): array
|
||||
{
|
||||
$res = [];
|
||||
if (!is_array($tables)) {
|
||||
$tables = [$tables];
|
||||
}
|
||||
foreach ($tables as $key => $val) {
|
||||
if (empty($val)) continue;
|
||||
$_tmp = Db::findAllBySql('SHOW FULL FIELDS FROM `' . $this->db->database . '`.' . $val, [], $this->db);
|
||||
if (empty($_tmp)) {
|
||||
continue;
|
||||
}
|
||||
$res[$val] = $_tmp;
|
||||
}
|
||||
return $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $tableName
|
||||
* @param $tables
|
||||
*
|
||||
* @return array
|
||||
* @throws Exception
|
||||
*/
|
||||
public function createModelFile($tableName, $tables): array
|
||||
{
|
||||
$res = $visible = $fields = $keys = [];
|
||||
foreach ($tables as $_key => $_val) {
|
||||
$keys = $tableName;
|
||||
if ($_val['Extra'] == 'auto_increment' || $_val['Key'] == 'PRI') {
|
||||
$keys = $tableName;
|
||||
}
|
||||
if (!isset($keys) && !($index = $this->getIndex($tableName))) {
|
||||
$keys = $index['Column_name'];
|
||||
}
|
||||
if (in_array(strtoupper($_val['Field']), $this->keyword)) {
|
||||
throw new Exception('You can not use keyword "' . $_val['Field'] . '" as field at table "' . $tableName . '"');
|
||||
}
|
||||
array_push($visible, $this->createVisible($_val['Field']));
|
||||
array_push($fields, $_val);
|
||||
$res[] = $this->createSetFunc($_val['Field'], $_val['Comment']);
|
||||
}
|
||||
|
||||
$classFileName = $this->getClassName($tableName);
|
||||
|
||||
return [
|
||||
'classFileName' => $classFileName,
|
||||
'tableName' => $keys,
|
||||
'visible' => $visible,
|
||||
'fields' => $fields,
|
||||
'res' => $res,
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $field
|
||||
* @return string
|
||||
* 创建变量注释
|
||||
*/
|
||||
private function createVisible($field): string
|
||||
{
|
||||
return '
|
||||
* @property $' . $field;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $field
|
||||
* @param $comment
|
||||
* @return string
|
||||
* 暂时不知道干嘛用的
|
||||
*/
|
||||
private function createSetFunc($field, $comment): string
|
||||
{
|
||||
return '
|
||||
' . str_pad('\'' . $field . '\'', 20, ' ', STR_PAD_RIGHT) . '=> \'' . (empty($comment) ? ucfirst($field) : $comment) . '\',';
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $tableName
|
||||
* @return string
|
||||
* 构建类名称
|
||||
*/
|
||||
private function getClassName($tableName): string
|
||||
{
|
||||
$res = [];
|
||||
$tableName = str_replace($this->db->tablePrefix,'', $tableName);
|
||||
foreach (explode('_', $tableName) as $n => $val) {
|
||||
$res[] = ucfirst($val);
|
||||
}
|
||||
return implode('', $res);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user