Crud.php 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479
  1. <?php
  2. namespace app\admin\command;
  3. use fast\Form;
  4. use think\Config;
  5. use think\console\Command;
  6. use think\console\Input;
  7. use think\console\input\Option;
  8. use think\console\Output;
  9. use think\Db;
  10. use think\Exception;
  11. use think\exception\ErrorException;
  12. use think\Lang;
  13. use think\Loader;
  14. class Crud extends Command
  15. {
  16. protected $stubList = [];
  17. protected $internalKeywords = [
  18. 'abstract', 'and', 'array', 'as', 'break', 'callable', 'case', 'catch', 'class', 'clone', 'const', 'continue', 'declare', 'default', 'die', 'do', 'echo', 'else', 'elseif', 'empty', 'enddeclare', 'endfor', 'endforeach', 'endif', 'endswitch', 'endwhile', 'eval', 'exit', 'extends', 'final', 'for', 'foreach', 'function', 'global', 'goto', 'if', 'implements', 'include', 'include_once', 'instanceof', 'insteadof', 'interface', 'isset', 'list', 'namespace', 'new', 'or', 'print', 'private', 'protected', 'public', 'require', 'require_once', 'return', 'static', 'switch', 'throw', 'trait', 'try', 'unset', 'use', 'var', 'while', 'xor'
  19. ];
  20. /**
  21. * Selectpage搜索字段关联
  22. */
  23. protected $fieldSelectpageMap = [
  24. 'nickname' => ['user_id', 'user_ids', 'admin_id', 'admin_ids']
  25. ];
  26. /**
  27. * Enum类型识别为单选框的结尾字符,默认会识别为单选下拉列表
  28. */
  29. protected $enumRadioSuffix = ['data', 'state', 'status'];
  30. /**
  31. * Set类型识别为复选框的结尾字符,默认会识别为多选下拉列表
  32. */
  33. protected $setCheckboxSuffix = ['data', 'state', 'status'];
  34. /**
  35. * Int类型识别为日期时间的结尾字符,默认会识别为日期文本框
  36. */
  37. protected $intDateSuffix = ['time'];
  38. /**
  39. * 开关后缀
  40. */
  41. protected $switchSuffix = ['switch'];
  42. /**
  43. * 富文本后缀
  44. */
  45. protected $editorSuffix = ['content'];
  46. /**
  47. * 城市后缀
  48. */
  49. protected $citySuffix = ['city'];
  50. /**
  51. * JSON后缀
  52. */
  53. protected $jsonSuffix = ['json'];
  54. /**
  55. * Selectpage对应的后缀
  56. */
  57. protected $selectpageSuffix = ['_id', '_ids'];
  58. /**
  59. * Selectpage多选对应的后缀
  60. */
  61. protected $selectpagesSuffix = ['_ids'];
  62. /**
  63. * 以指定字符结尾的字段格式化函数
  64. */
  65. protected $fieldFormatterSuffix = [
  66. 'status' => ['type' => ['varchar', 'enum'], 'name' => 'status'],
  67. 'icon' => 'icon',
  68. 'flag' => 'flag',
  69. 'url' => 'url',
  70. 'image' => 'image',
  71. 'images' => 'images',
  72. 'avatar' => 'image',
  73. 'switch' => 'toggle',
  74. 'time' => ['type' => ['int', 'timestamp'], 'name' => 'datetime']
  75. ];
  76. /**
  77. * 识别为图片字段
  78. */
  79. protected $imageField = ['image', 'images', 'avatar', 'avatars'];
  80. /**
  81. * 识别为文件字段
  82. */
  83. protected $fileField = ['file', 'files'];
  84. /**
  85. * 保留字段
  86. */
  87. protected $reservedField = ['admin_id'];
  88. /**
  89. * 排除字段
  90. */
  91. protected $ignoreFields = [];
  92. /**
  93. * 排序字段
  94. */
  95. protected $sortField = 'weigh';
  96. /**
  97. * 筛选字段
  98. * @var string
  99. */
  100. protected $headingFilterField = 'status';
  101. /**
  102. * 添加时间字段
  103. * @var string
  104. */
  105. protected $createTimeField = 'createtime';
  106. /**
  107. * 更新时间字段
  108. * @var string
  109. */
  110. protected $updateTimeField = 'updatetime';
  111. /**
  112. * 软删除时间字段
  113. * @var string
  114. */
  115. protected $deleteTimeField = 'deletetime';
  116. /**
  117. * 编辑器的Class
  118. */
  119. protected $editorClass = 'editor';
  120. /**
  121. * langList的key最长字节数
  122. */
  123. protected $fieldMaxLen = 0;
  124. protected function configure()
  125. {
  126. $this
  127. ->setName('crud')
  128. ->addOption('table', 't', Option::VALUE_REQUIRED, 'table name without prefix', null)
  129. ->addOption('controller', 'c', Option::VALUE_OPTIONAL, 'controller name', null)
  130. ->addOption('model', 'm', Option::VALUE_OPTIONAL, 'model name', null)
  131. ->addOption('fields', 'i', Option::VALUE_OPTIONAL, 'model visible fields', null)
  132. ->addOption('force', 'f', Option::VALUE_OPTIONAL, 'force override or force delete,without tips', null)
  133. ->addOption('local', 'l', Option::VALUE_OPTIONAL, 'local model', 1)
  134. ->addOption('relation', 'r', Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'relation table name without prefix', null)
  135. ->addOption('relationmodel', 'e', Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'relation model name', null)
  136. ->addOption('relationforeignkey', 'k', Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'relation foreign key', null)
  137. ->addOption('relationprimarykey', 'p', Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'relation primary key', null)
  138. ->addOption('relationfields', 's', Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'relation table fields', null)
  139. ->addOption('relationmode', 'o', Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'relation table mode,hasone or belongsto', null)
  140. ->addOption('delete', 'd', Option::VALUE_OPTIONAL, 'delete all files generated by CRUD', null)
  141. ->addOption('menu', 'u', Option::VALUE_OPTIONAL, 'create menu when CRUD completed', null)
  142. ->addOption('setcheckboxsuffix', null, Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'automatically generate checkbox component with suffix', null)
  143. ->addOption('enumradiosuffix', null, Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'automatically generate radio component with suffix', null)
  144. ->addOption('imagefield', null, Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'automatically generate image component with suffix', null)
  145. ->addOption('filefield', null, Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'automatically generate file component with suffix', null)
  146. ->addOption('intdatesuffix', null, Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'automatically generate date component with suffix', null)
  147. ->addOption('switchsuffix', null, Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'automatically generate switch component with suffix', null)
  148. ->addOption('citysuffix', null, Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'automatically generate citypicker component with suffix', null)
  149. ->addOption('jsonsuffix', null, Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'automatically generate fieldlist component with suffix', null)
  150. ->addOption('selectpagesuffix', null, Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'automatically generate selectpage component with suffix', null)
  151. ->addOption('selectpagessuffix', null, Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'automatically generate multiple selectpage component with suffix', null)
  152. ->addOption('ignorefields', null, Option::VALUE_OPTIONAL | Option::VALUE_IS_ARRAY, 'ignore fields', null)
  153. ->addOption('sortfield', null, Option::VALUE_OPTIONAL, 'sort field', null)
  154. ->addOption('headingfilterfield', null, Option::VALUE_OPTIONAL, 'heading filter field', null)
  155. ->addOption('editorclass', null, Option::VALUE_OPTIONAL, 'automatically generate editor class', null)
  156. ->addOption('db', null, Option::VALUE_OPTIONAL, 'database config name', 'database')
  157. ->setDescription('Build CRUD controller and model from table');
  158. }
  159. protected function execute(Input $input, Output $output)
  160. {
  161. $adminPath = dirname(__DIR__) . DS;
  162. //数据库
  163. $db = $input->getOption('db');
  164. //表名
  165. $table = $input->getOption('table') ?: '';
  166. //自定义控制器
  167. $controller = $input->getOption('controller');
  168. //自定义模型
  169. $model = $input->getOption('model');
  170. $model = $model ? $model : $controller;
  171. //验证器类
  172. $validate = $model;
  173. //自定义显示字段
  174. $fields = $input->getOption('fields');
  175. //强制覆盖
  176. $force = $input->getOption('force');
  177. //是否为本地model,为0时表示为全局model将会把model放在app/common/model中
  178. $local = $input->getOption('local');
  179. if (!$table) {
  180. throw new Exception('table name can\'t empty');
  181. }
  182. //是否生成菜单
  183. $menu = $input->getOption("menu");
  184. //关联表
  185. $relation = $input->getOption('relation');
  186. //自定义关联表模型
  187. $relationModel = $input->getOption('relationmodel');
  188. //模式
  189. $relationMode = $mode = $input->getOption('relationmode');
  190. //外键
  191. $relationForeignKey = $input->getOption('relationforeignkey');
  192. //主键
  193. $relationPrimaryKey = $input->getOption('relationprimarykey');
  194. //关联表显示字段
  195. $relationFields = $input->getOption('relationfields');
  196. //复选框后缀
  197. $setcheckboxsuffix = $input->getOption('setcheckboxsuffix');
  198. //单选框后缀
  199. $enumradiosuffix = $input->getOption('enumradiosuffix');
  200. //图片后缀
  201. $imagefield = $input->getOption('imagefield');
  202. //文件后缀
  203. $filefield = $input->getOption('filefield');
  204. //日期后缀
  205. $intdatesuffix = $input->getOption('intdatesuffix');
  206. //开关后缀
  207. $switchsuffix = $input->getOption('switchsuffix');
  208. //城市后缀
  209. $citysuffix = $input->getOption('citysuffix');
  210. //JSON配置后缀
  211. $jsonsuffix = $input->getOption('jsonsuffix');
  212. //selectpage后缀
  213. $selectpagesuffix = $input->getOption('selectpagesuffix');
  214. //selectpage多选后缀
  215. $selectpagessuffix = $input->getOption('selectpagessuffix');
  216. //排除字段
  217. $ignoreFields = $input->getOption('ignorefields');
  218. //排序字段
  219. $sortfield = $input->getOption('sortfield');
  220. //顶部筛选过滤字段
  221. $headingfilterfield = $input->getOption('headingfilterfield');
  222. //编辑器Class
  223. $editorclass = $input->getOption('editorclass');
  224. if ($setcheckboxsuffix) {
  225. $this->setCheckboxSuffix = $setcheckboxsuffix;
  226. }
  227. if ($enumradiosuffix) {
  228. $this->enumRadioSuffix = $enumradiosuffix;
  229. }
  230. if ($imagefield) {
  231. $this->imageField = $imagefield;
  232. }
  233. if ($filefield) {
  234. $this->fileField = $filefield;
  235. }
  236. if ($intdatesuffix) {
  237. $this->intDateSuffix = $intdatesuffix;
  238. }
  239. if ($switchsuffix) {
  240. $this->switchSuffix = $switchsuffix;
  241. }
  242. if ($citysuffix) {
  243. $this->citySuffix = $citysuffix;
  244. }
  245. if ($jsonsuffix) {
  246. $this->jsonSuffix = $jsonsuffix;
  247. }
  248. if ($selectpagesuffix) {
  249. $this->selectpageSuffix = $selectpagesuffix;
  250. }
  251. if ($selectpagessuffix) {
  252. $this->selectpagesSuffix = $selectpagessuffix;
  253. }
  254. if ($ignoreFields) {
  255. $this->ignoreFields = $ignoreFields;
  256. }
  257. if ($editorclass) {
  258. $this->editorClass = $editorclass;
  259. }
  260. if ($sortfield) {
  261. $this->sortField = $sortfield;
  262. }
  263. if ($headingfilterfield) {
  264. $this->headingFilterField = $headingfilterfield;
  265. }
  266. $this->reservedField = array_merge($this->reservedField, [$this->createTimeField, $this->updateTimeField, $this->deleteTimeField]);
  267. $dbconnect = Db::connect($db);
  268. $dbname = Config::get($db . '.database');
  269. $prefix = Config::get($db . '.prefix');
  270. //模块
  271. $moduleName = 'admin';
  272. $modelModuleName = $local ? $moduleName : 'common';
  273. $validateModuleName = $local ? $moduleName : 'common';
  274. //检查主表
  275. $modelName = $table = stripos($table, $prefix) === 0 ? substr($table, strlen($prefix)) : $table;
  276. $modelTableType = 'table';
  277. $modelTableTypeName = $modelTableName = $modelName;
  278. $modelTableInfo = $dbconnect->query("SHOW TABLE STATUS LIKE '{$modelTableName}'", [], true);
  279. if (!$modelTableInfo) {
  280. $modelTableType = 'name';
  281. $modelTableName = $prefix . $modelName;
  282. $modelTableInfo = $dbconnect->query("SHOW TABLE STATUS LIKE '{$modelTableName}'", [], true);
  283. if (!$modelTableInfo) {
  284. throw new Exception("table not found");
  285. }
  286. }
  287. $modelTableInfo = $modelTableInfo[0];
  288. $relations = [];
  289. //检查关联表
  290. if ($relation) {
  291. $relationArr = $relation;
  292. $relations = [];
  293. foreach ($relationArr as $index => $relationTable) {
  294. $relationName = stripos($relationTable, $prefix) === 0 ? substr($relationTable, strlen($prefix)) : $relationTable;
  295. $relationTableType = 'table';
  296. $relationTableTypeName = $relationTableName = $relationName;
  297. $relationTableInfo = $dbconnect->query("SHOW TABLE STATUS LIKE '{$relationTableName}'", [], true);
  298. if (!$relationTableInfo) {
  299. $relationTableType = 'name';
  300. $relationTableName = $prefix . $relationName;
  301. $relationTableInfo = $dbconnect->query("SHOW TABLE STATUS LIKE '{$relationTableName}'", [], true);
  302. if (!$relationTableInfo) {
  303. throw new Exception("relation table not found");
  304. }
  305. }
  306. $relationTableInfo = $relationTableInfo[0];
  307. $relationModel = isset($relationModel[$index]) ? $relationModel[$index] : '';
  308. list($relationNamespace, $relationName, $relationFile) = $this->getModelData($modelModuleName, $relationModel, $relationName);
  309. $relations[] = [
  310. //关联表基础名
  311. 'relationName' => $relationName,
  312. //关联表类命名空间
  313. 'relationNamespace' => $relationNamespace,
  314. //关联模型名
  315. 'relationModel' => $relationModel,
  316. //关联文件
  317. 'relationFile' => $relationFile,
  318. //关联表名称
  319. 'relationTableName' => $relationTableName,
  320. //关联表信息
  321. 'relationTableInfo' => $relationTableInfo,
  322. //关联模型表类型(name或table)
  323. 'relationTableType' => $relationTableType,
  324. //关联模型表类型名称
  325. 'relationTableTypeName' => $relationTableTypeName,
  326. //关联模式
  327. 'relationFields' => isset($relationFields[$index]) ? explode(',', $relationFields[$index]) : [],
  328. //关联模式
  329. 'relationMode' => isset($relationMode[$index]) ? $relationMode[$index] : 'belongsto',
  330. //关联表外键
  331. 'relationForeignKey' => isset($relationForeignKey[$index]) ? $relationForeignKey[$index] : Loader::parseName($relationName) . '_id',
  332. //关联表主键
  333. 'relationPrimaryKey' => isset($relationPrimaryKey[$index]) ? $relationPrimaryKey[$index] : '',
  334. ];
  335. }
  336. }
  337. //根据表名匹配对应的Fontawesome图标
  338. $iconPath = ROOT_PATH . str_replace('/', DS, '/public/assets/libs/font-awesome/less/variables.less');
  339. $iconName = is_file($iconPath) && stripos(file_get_contents($iconPath), '@fa-var-' . $table . ':') ? 'fa fa-' . $table : 'fa fa-circle-o';
  340. //控制器
  341. list($controllerNamespace, $controllerName, $controllerFile, $controllerArr) = $this->getControllerData($moduleName, $controller, $table);
  342. //模型
  343. list($modelNamespace, $modelName, $modelFile, $modelArr) = $this->getModelData($modelModuleName, $model, $table);
  344. //验证器
  345. list($validateNamespace, $validateName, $validateFile, $validateArr) = $this->getValidateData($validateModuleName, $validate, $table);
  346. //处理基础文件名,取消所有下划线并转换为小写
  347. $baseNameArr = $controllerArr;
  348. $baseFileName = Loader::parseName(array_pop($baseNameArr), 0);
  349. array_push($baseNameArr, $baseFileName);
  350. $controllerBaseName = strtolower(implode(DS, $baseNameArr));
  351. $controllerUrl = strtolower(implode('/', $baseNameArr));
  352. //视图文件
  353. $viewArr = $controllerArr;
  354. $lastValue = array_pop($viewArr);
  355. $viewArr[] = Loader::parseName($lastValue, 0);
  356. array_unshift($viewArr, 'view');
  357. $viewDir = $adminPath . strtolower(implode(DS, $viewArr)) . DS;
  358. //最终将生成的文件路径
  359. $javascriptFile = ROOT_PATH . 'public' . DS . 'assets' . DS . 'js' . DS . 'backend' . DS . $controllerBaseName . '.js';
  360. $addFile = $viewDir . 'add.html';
  361. $editFile = $viewDir . 'edit.html';
  362. $indexFile = $viewDir . 'index.html';
  363. $recyclebinFile = $viewDir . 'recyclebin.html';
  364. $langFile = $adminPath . 'lang' . DS . Lang::detect() . DS . $controllerBaseName . '.php';
  365. //是否为删除模式
  366. $delete = $input->getOption('delete');
  367. if ($delete) {
  368. $readyFiles = [$controllerFile, $modelFile, $validateFile, $addFile, $editFile, $indexFile, $recyclebinFile, $langFile, $javascriptFile];
  369. foreach ($readyFiles as $k => $v) {
  370. $output->warning($v);
  371. }
  372. if (!$force) {
  373. $output->info("Are you sure you want to delete all those files? Type 'yes' to continue: ");
  374. $line = fgets(defined('STDIN') ? STDIN : fopen('php://stdin', 'r'));
  375. if (trim($line) != 'yes') {
  376. throw new Exception("Operation is aborted!");
  377. }
  378. }
  379. foreach ($readyFiles as $k => $v) {
  380. if (file_exists($v)) {
  381. unlink($v);
  382. }
  383. //删除空文件夹
  384. switch ($v) {
  385. case $modelFile:
  386. $this->removeEmptyBaseDir($v, $modelArr);
  387. break;
  388. case $validateFile:
  389. $this->removeEmptyBaseDir($v, $validateArr);
  390. break;
  391. case $addFile:
  392. case $editFile:
  393. case $indexFile:
  394. case $recyclebinFile:
  395. $this->removeEmptyBaseDir($v, $viewArr);
  396. break;
  397. default:
  398. $this->removeEmptyBaseDir($v, $controllerArr);
  399. }
  400. }
  401. $output->info("Delete Successed");
  402. return;
  403. }
  404. //非覆盖模式时如果存在控制器文件则报错
  405. if (is_file($controllerFile) && !$force) {
  406. throw new Exception("controller already exists!\nIf you need to rebuild again, use the parameter --force=true ");
  407. }
  408. //非覆盖模式时如果存在模型文件则报错
  409. if (is_file($modelFile) && !$force) {
  410. throw new Exception("model already exists!\nIf you need to rebuild again, use the parameter --force=true ");
  411. }
  412. //非覆盖模式时如果存在验证文件则报错
  413. if (is_file($validateFile) && !$force) {
  414. throw new Exception("validate already exists!\nIf you need to rebuild again, use the parameter --force=true ");
  415. }
  416. require $adminPath . 'common.php';
  417. //从数据库中获取表字段信息
  418. $sql = "SELECT * FROM `information_schema`.`columns` "
  419. . "WHERE TABLE_SCHEMA = ? AND table_name = ? "
  420. . "ORDER BY ORDINAL_POSITION";
  421. //加载主表的列
  422. $columnList = $dbconnect->query($sql, [$dbname, $modelTableName]);
  423. $fieldArr = [];
  424. foreach ($columnList as $k => $v) {
  425. $fieldArr[] = $v['COLUMN_NAME'];
  426. }
  427. // 加载关联表的列
  428. foreach ($relations as $index => &$relation) {
  429. $relationColumnList = $dbconnect->query($sql, [$dbname, $relation['relationTableName']]);
  430. $relationFieldList = [];
  431. foreach ($relationColumnList as $k => $v) {
  432. $relationFieldList[] = $v['COLUMN_NAME'];
  433. }
  434. if (!$relation['relationPrimaryKey']) {
  435. foreach ($relationColumnList as $k => $v) {
  436. if ($v['COLUMN_KEY'] == 'PRI') {
  437. $relation['relationPrimaryKey'] = $v['COLUMN_NAME'];
  438. break;
  439. }
  440. }
  441. }
  442. // 如果主键为空
  443. if (!$relation['relationPrimaryKey']) {
  444. throw new Exception('Relation Primary key not found!');
  445. }
  446. // 如果主键不在表字段中
  447. if (!in_array($relation['relationPrimaryKey'], $relationFieldList)) {
  448. throw new Exception('Relation Primary key not found in table!');
  449. }
  450. $relation['relationColumnList'] = $relationColumnList;
  451. $relation['relationFieldList'] = $relationFieldList;
  452. }
  453. unset($relation);
  454. $addList = [];
  455. $editList = [];
  456. $javascriptList = [];
  457. $langList = [];
  458. $field = 'id';
  459. $order = 'id';
  460. $priDefined = false;
  461. $priKey = '';
  462. $relationPrimaryKey = '';
  463. foreach ($columnList as $k => $v) {
  464. if ($v['COLUMN_KEY'] == 'PRI') {
  465. $priKey = $v['COLUMN_NAME'];
  466. break;
  467. }
  468. }
  469. if (!$priKey) {
  470. throw new Exception('Primary key not found!');
  471. }
  472. $order = $priKey;
  473. //如果是关联模型
  474. foreach ($relations as $index => &$relation) {
  475. if ($relation['relationMode'] == 'hasone') {
  476. $relationForeignKey = $relation['relationForeignKey'] ? $relation['relationForeignKey'] : $table . "_id";
  477. $relationPrimaryKey = $relation['relationPrimaryKey'] ? $relation['relationPrimaryKey'] : $priKey;
  478. if (!in_array($relationForeignKey, $relation['relationFieldList'])) {
  479. throw new Exception('relation table [' . $relation['relationTableName'] . '] must be contain field [' . $relationForeignKey . ']');
  480. }
  481. if (!in_array($relationPrimaryKey, $fieldArr)) {
  482. throw new Exception('table [' . $modelTableName . '] must be contain field [' . $relationPrimaryKey . ']');
  483. }
  484. } else {
  485. $relationForeignKey = $relation['relationForeignKey'] ? $relation['relationForeignKey'] : Loader::parseName($relation['relationName']) . "_id";
  486. $relationPrimaryKey = $relation['relationPrimaryKey'] ? $relation['relationPrimaryKey'] : $relation['relationPriKey'];
  487. if (!in_array($relationForeignKey, $fieldArr)) {
  488. throw new Exception('table [' . $modelTableName . '] must be contain field [' . $relationForeignKey . ']');
  489. }
  490. if (!in_array($relationPrimaryKey, $relation['relationFieldList'])) {
  491. throw new Exception('relation table [' . $relation['relationTableName'] . '] must be contain field [' . $relationPrimaryKey . ']');
  492. }
  493. }
  494. $relation['relationForeignKey'] = $relationForeignKey;
  495. $relation['relationPrimaryKey'] = $relationPrimaryKey;
  496. $relation['relationClassName'] = $modelNamespace != $relation['relationNamespace'] ? $relation['relationNamespace'] . '\\' . $relation['relationName'] : $relation['relationName'];
  497. }
  498. unset($relation);
  499. try {
  500. Form::setEscapeHtml(false);
  501. $setAttrArr = [];
  502. $getAttrArr = [];
  503. $getEnumArr = [];
  504. $appendAttrList = [];
  505. $controllerAssignList = [];
  506. $headingHtml = '{:build_heading()}';
  507. $recyclebinHtml = '';
  508. //循环所有字段,开始构造视图的HTML和JS信息
  509. foreach ($columnList as $k => $v) {
  510. $field = $v['COLUMN_NAME'];
  511. $itemArr = [];
  512. // 这里构建Enum和Set类型的列表数据
  513. if (in_array($v['DATA_TYPE'], ['enum', 'set', 'tinyint'])) {
  514. if ($v['DATA_TYPE'] !== 'tinyint') {
  515. $itemArr = substr($v['COLUMN_TYPE'], strlen($v['DATA_TYPE']) + 1, -1);
  516. $itemArr = explode(',', str_replace("'", '', $itemArr));
  517. }
  518. $itemArr = $this->getItemArray($itemArr, $field, $v['COLUMN_COMMENT']);
  519. //如果类型为tinyint且有使用备注数据
  520. if ($itemArr && $v['DATA_TYPE'] == 'tinyint') {
  521. $v['DATA_TYPE'] = 'enum';
  522. }
  523. }
  524. // 语言列表
  525. if ($v['COLUMN_COMMENT'] != '') {
  526. $langList[] = $this->getLangItem($field, $v['COLUMN_COMMENT']);
  527. }
  528. $inputType = '';
  529. //保留字段不能修改和添加
  530. if ($v['COLUMN_KEY'] != 'PRI' && !in_array($field, $this->reservedField) && !in_array($field, $this->ignoreFields)) {
  531. $inputType = $this->getFieldType($v);
  532. // 如果是number类型时增加一个步长
  533. $step = $inputType == 'number' && $v['NUMERIC_SCALE'] > 0 ? "0." . str_repeat(0, $v['NUMERIC_SCALE'] - 1) . "1" : 0;
  534. $attrArr = ['id' => "c-{$field}"];
  535. $cssClassArr = ['form-control'];
  536. $fieldName = "row[{$field}]";
  537. $defaultValue = $v['COLUMN_DEFAULT'];
  538. $editValue = "{\$row.{$field}|htmlentities}";
  539. // 如果默认值非null,则是一个必选项
  540. if ($v['IS_NULLABLE'] == 'NO') {
  541. $attrArr['data-rule'] = 'required';
  542. }
  543. if ($inputType == 'select') {
  544. $cssClassArr[] = 'selectpicker';
  545. $attrArr['class'] = implode(' ', $cssClassArr);
  546. if ($v['DATA_TYPE'] == 'set') {
  547. $attrArr['multiple'] = '';
  548. $fieldName .= "[]";
  549. }
  550. $attrArr['name'] = $fieldName;
  551. $this->getEnum($getEnumArr, $controllerAssignList, $field, $itemArr, $v['DATA_TYPE'] == 'set' ? 'multiple' : 'select');
  552. $itemArr = $this->getLangArray($itemArr, false);
  553. //添加一个获取器
  554. $this->getAttr($getAttrArr, $field, $v['DATA_TYPE'] == 'set' ? 'multiple' : 'select');
  555. if ($v['DATA_TYPE'] == 'set') {
  556. $this->setAttr($setAttrArr, $field, $inputType);
  557. }
  558. $this->appendAttr($appendAttrList, $field);
  559. $formAddElement = $this->getReplacedStub('html/select', ['field' => $field, 'fieldName' => $fieldName, 'fieldList' => $this->getFieldListName($field), 'attrStr' => Form::attributes($attrArr), 'selectedValue' => $defaultValue]);
  560. $formEditElement = $this->getReplacedStub('html/select', ['field' => $field, 'fieldName' => $fieldName, 'fieldList' => $this->getFieldListName($field), 'attrStr' => Form::attributes($attrArr), 'selectedValue' => "\$row.{$field}"]);
  561. } elseif ($inputType == 'datetime') {
  562. $cssClassArr[] = 'datetimepicker';
  563. $attrArr['class'] = implode(' ', $cssClassArr);
  564. $format = "YYYY-MM-DD HH:mm:ss";
  565. $phpFormat = "Y-m-d H:i:s";
  566. $fieldFunc = '';
  567. switch ($v['DATA_TYPE']) {
  568. case 'year':
  569. $format = "YYYY";
  570. $phpFormat = 'Y';
  571. break;
  572. case 'date':
  573. $format = "YYYY-MM-DD";
  574. $phpFormat = 'Y-m-d';
  575. break;
  576. case 'time':
  577. $format = "HH:mm:ss";
  578. $phpFormat = 'H:i:s';
  579. break;
  580. case 'timestamp':
  581. $fieldFunc = 'datetime';
  582. // no break
  583. case 'datetime':
  584. $format = "YYYY-MM-DD HH:mm:ss";
  585. $phpFormat = 'Y-m-d H:i:s';
  586. break;
  587. default:
  588. $fieldFunc = 'datetime';
  589. $this->getAttr($getAttrArr, $field, $inputType);
  590. $this->setAttr($setAttrArr, $field, $inputType);
  591. $this->appendAttr($appendAttrList, $field);
  592. break;
  593. }
  594. $defaultDateTime = "{:date('{$phpFormat}')}";
  595. $attrArr['data-date-format'] = $format;
  596. $attrArr['data-use-current'] = "true";
  597. $formAddElement = Form::text($fieldName, $defaultDateTime, $attrArr);
  598. $formEditElement = Form::text($fieldName, ($fieldFunc ? "{:\$row.{$field}?{$fieldFunc}(\$row.{$field}):''}" : "{\$row.{$field}{$fieldFunc}}"), $attrArr);
  599. } elseif ($inputType == 'checkbox' || $inputType == 'radio') {
  600. unset($attrArr['data-rule']);
  601. $fieldName = $inputType == 'checkbox' ? $fieldName .= "[]" : $fieldName;
  602. $attrArr['name'] = "row[{$fieldName}]";
  603. $this->getEnum($getEnumArr, $controllerAssignList, $field, $itemArr, $inputType);
  604. $itemArr = $this->getLangArray($itemArr, false);
  605. //添加一个获取器
  606. $this->getAttr($getAttrArr, $field, $inputType);
  607. if ($inputType == 'checkbox') {
  608. $this->setAttr($setAttrArr, $field, $inputType);
  609. }
  610. $this->appendAttr($appendAttrList, $field);
  611. $defaultValue = $inputType == 'radio' && !$defaultValue ? key($itemArr) : $defaultValue;
  612. $formAddElement = $this->getReplacedStub('html/' . $inputType, ['field' => $field, 'fieldName' => $fieldName, 'fieldList' => $this->getFieldListName($field), 'attrStr' => Form::attributes($attrArr), 'selectedValue' => $defaultValue]);
  613. $formEditElement = $this->getReplacedStub('html/' . $inputType, ['field' => $field, 'fieldName' => $fieldName, 'fieldList' => $this->getFieldListName($field), 'attrStr' => Form::attributes($attrArr), 'selectedValue' => "\$row.{$field}"]);
  614. } elseif ($inputType == 'textarea') {
  615. $cssClassArr[] = $this->isMatchSuffix($field, $this->editorSuffix) ? $this->editorClass : '';
  616. $attrArr['class'] = implode(' ', $cssClassArr);
  617. $attrArr['rows'] = 5;
  618. $formAddElement = Form::textarea($fieldName, $defaultValue, $attrArr);
  619. $formEditElement = Form::textarea($fieldName, $editValue, $attrArr);
  620. } elseif ($inputType == 'switch') {
  621. unset($attrArr['data-rule']);
  622. if ($defaultValue === '1' || $defaultValue === 'Y') {
  623. $yes = $defaultValue;
  624. $no = $defaultValue === '1' ? '0' : 'N';
  625. } else {
  626. $no = $defaultValue;
  627. $yes = $defaultValue === '0' ? '1' : 'Y';
  628. }
  629. if (!$itemArr) {
  630. $itemArr = [$yes => 'Yes', $no => 'No'];
  631. }
  632. $stateNoClass = 'fa-flip-horizontal text-gray';
  633. $formAddElement = $this->getReplacedStub('html/' . $inputType, ['field' => $field, 'fieldName' => $fieldName, 'fieldYes' => $yes, 'fieldNo' => $no, 'attrStr' => Form::attributes($attrArr), 'fieldValue' => $defaultValue, 'fieldSwitchClass' => $defaultValue == $no ? $stateNoClass : '']);
  634. $formEditElement = $this->getReplacedStub('html/' . $inputType, ['field' => $field, 'fieldName' => $fieldName, 'fieldYes' => $yes, 'fieldNo' => $no, 'attrStr' => Form::attributes($attrArr), 'fieldValue' => "{\$row.{$field}}", 'fieldSwitchClass' => "{eq name=\"\$row.{$field}\" value=\"{$no}\"}fa-flip-horizontal text-gray{/eq}"]);
  635. } elseif ($inputType == 'citypicker') {
  636. $attrArr['class'] = implode(' ', $cssClassArr);
  637. $attrArr['data-toggle'] = "city-picker";
  638. $formAddElement = sprintf("<div class='control-relative'>%s</div>", Form::input('text', $fieldName, $defaultValue, $attrArr));
  639. $formEditElement = sprintf("<div class='control-relative'>%s</div>", Form::input('text', $fieldName, $editValue, $attrArr));
  640. } elseif ($inputType == 'fieldlist') {
  641. $itemArr = $this->getItemArray($itemArr, $field, $v['COLUMN_COMMENT']);
  642. $itemKey = isset($itemArr['key']) ? ucfirst($itemArr['key']) : 'Key';
  643. $itemValue = isset($itemArr['value']) ? ucfirst($itemArr['value']) : 'Value';
  644. $formAddElement = $this->getReplacedStub('html/' . $inputType, ['field' => $field, 'fieldName' => $fieldName, 'itemKey' => $itemKey, 'itemValue' => $itemValue, 'fieldValue' => $defaultValue]);
  645. $formEditElement = $this->getReplacedStub('html/' . $inputType, ['field' => $field, 'fieldName' => $fieldName, 'itemKey' => $itemKey, 'itemValue' => $itemValue, 'fieldValue' => $editValue]);
  646. } else {
  647. $search = $replace = '';
  648. //特殊字段为关联搜索
  649. if ($this->isMatchSuffix($field, $this->selectpageSuffix)) {
  650. $inputType = 'text';
  651. $defaultValue = '';
  652. $attrArr['data-rule'] = 'required';
  653. $cssClassArr[] = 'selectpage';
  654. $selectpageController = str_replace('_', '/', substr($field, 0, strripos($field, '_')));
  655. $attrArr['data-source'] = $selectpageController . "/index";
  656. //如果是类型表需要特殊处理下
  657. if ($selectpageController == 'category') {
  658. $attrArr['data-source'] = 'category/selectpage';
  659. $attrArr['data-params'] = '##replacetext##';
  660. $search = '"##replacetext##"';
  661. $replace = '\'{"custom[type]":"' . $table . '"}\'';
  662. } elseif ($selectpageController == 'admin') {
  663. $attrArr['data-source'] = 'auth/admin/selectpage';
  664. } elseif ($selectpageController == 'user') {
  665. $attrArr['data-source'] = 'user/user/index';
  666. }
  667. if ($this->isMatchSuffix($field, $this->selectpagesSuffix)) {
  668. $attrArr['data-multiple'] = 'true';
  669. }
  670. foreach ($this->fieldSelectpageMap as $m => $n) {
  671. if (in_array($field, $n)) {
  672. $attrArr['data-field'] = $m;
  673. break;
  674. }
  675. }
  676. }
  677. //因为有自动完成可输入其它内容
  678. $step = array_intersect($cssClassArr, ['selectpage']) ? 0 : $step;
  679. $attrArr['class'] = implode(' ', $cssClassArr);
  680. $isUpload = false;
  681. if ($this->isMatchSuffix($field, array_merge($this->imageField, $this->fileField))) {
  682. $isUpload = true;
  683. }
  684. //如果是步长则加上步长
  685. if ($step) {
  686. $attrArr['step'] = $step;
  687. }
  688. //如果是图片加上个size
  689. if ($isUpload) {
  690. $attrArr['size'] = 50;
  691. }
  692. $formAddElement = Form::input($inputType, $fieldName, $defaultValue, $attrArr);
  693. $formEditElement = Form::input($inputType, $fieldName, $editValue, $attrArr);
  694. if ($search && $replace) {
  695. $formAddElement = str_replace($search, $replace, $formAddElement);
  696. $formEditElement = str_replace($search, $replace, $formEditElement);
  697. }
  698. //如果是图片或文件
  699. if ($isUpload) {
  700. $formAddElement = $this->getImageUpload($field, $formAddElement);
  701. $formEditElement = $this->getImageUpload($field, $formEditElement);
  702. }
  703. }
  704. //构造添加和编辑HTML信息
  705. $addList[] = $this->getFormGroup($field, $formAddElement);
  706. $editList[] = $this->getFormGroup($field, $formEditElement);
  707. }
  708. //过滤text类型字段
  709. if ($v['DATA_TYPE'] != 'text' && $inputType != 'fieldlist') {
  710. //主键
  711. if ($v['COLUMN_KEY'] == 'PRI' && !$priDefined) {
  712. $priDefined = true;
  713. $javascriptList[] = "{checkbox: true}";
  714. }
  715. if ($this->deleteTimeField == $field) {
  716. $recyclebinHtml = $this->getReplacedStub('html/recyclebin-html', ['controllerUrl' => $controllerUrl]);
  717. continue;
  718. }
  719. if (!$fields || in_array($field, explode(',', $fields))) {
  720. //构造JS列信息
  721. $javascriptList[] = $this->getJsColumn($field, $v['DATA_TYPE'], $inputType && in_array($inputType, ['select', 'checkbox', 'radio']) ? '_text' : '', $itemArr);
  722. }
  723. if ($this->headingFilterField && $this->headingFilterField == $field && $itemArr) {
  724. $headingHtml = $this->getReplacedStub('html/heading-html', ['field' => $field, 'fieldName' => Loader::parseName($field, 1, false)]);
  725. }
  726. //排序方式,如果有指定排序字段,否则按主键排序
  727. $order = $field == $this->sortField ? $this->sortField : $order;
  728. }
  729. }
  730. //循环关联表,追加语言包和JS列
  731. foreach ($relations as $index => $relation) {
  732. foreach ($relation['relationColumnList'] as $k => $v) {
  733. // 不显示的字段直接过滤掉
  734. if ($relation['relationFields'] && !in_array($v['COLUMN_NAME'], $relation['relationFields'])) {
  735. continue;
  736. }
  737. $relationField = strtolower($relation['relationName']) . "." . $v['COLUMN_NAME'];
  738. // 语言列表
  739. if ($v['COLUMN_COMMENT'] != '') {
  740. $langList[] = $this->getLangItem($relationField, $v['COLUMN_COMMENT']);
  741. }
  742. //过滤text类型字段
  743. if ($v['DATA_TYPE'] != 'text') {
  744. //构造JS列信息
  745. $javascriptList[] = $this->getJsColumn($relationField, $v['DATA_TYPE']);
  746. }
  747. }
  748. }
  749. //JS最后一列加上操作列
  750. $javascriptList[] = str_repeat(" ", 24) . "{field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}";
  751. $addList = implode("\n", array_filter($addList));
  752. $editList = implode("\n", array_filter($editList));
  753. $javascriptList = implode(",\n", array_filter($javascriptList));
  754. $langList = implode(",\n", array_filter($langList));
  755. //数组等号对齐
  756. $langList = array_filter(explode(",\n", $langList . ",\n"));
  757. foreach ($langList as &$line) {
  758. if (preg_match("/^\s+'([^']+)'\s*=>\s*'([^']+)'\s*/is", $line, $matches)) {
  759. $line = " '{$matches[1]}'" . str_pad('=>', ($this->fieldMaxLen - strlen($matches[1]) + 3), ' ', STR_PAD_LEFT) . " '{$matches[2]}'";
  760. }
  761. }
  762. unset($line);
  763. $langList = implode(",\n", array_filter($langList));
  764. //表注释
  765. $tableComment = $modelTableInfo['Comment'];
  766. $tableComment = mb_substr($tableComment, -1) == '表' ? mb_substr($tableComment, 0, -1) . '管理' : $tableComment;
  767. $modelInit = '';
  768. if ($priKey != $order) {
  769. $modelInit = $this->getReplacedStub('mixins' . DS . 'modelinit', ['order' => $order]);
  770. }
  771. $data = [
  772. 'modelConnection' => $db == 'database' ? '' : "protected \$connection = '{$db}';",
  773. 'controllerNamespace' => $controllerNamespace,
  774. 'modelNamespace' => $modelNamespace,
  775. 'validateNamespace' => $validateNamespace,
  776. 'controllerUrl' => $controllerUrl,
  777. 'controllerName' => $controllerName,
  778. 'controllerAssignList' => implode("\n", $controllerAssignList),
  779. 'modelName' => $modelName,
  780. 'modelTableName' => $modelTableName,
  781. 'modelTableType' => $modelTableType,
  782. 'modelTableTypeName' => $modelTableTypeName,
  783. 'validateName' => $validateName,
  784. 'tableComment' => $tableComment,
  785. 'iconName' => $iconName,
  786. 'pk' => $priKey,
  787. 'order' => $order,
  788. 'table' => $table,
  789. 'tableName' => $modelTableName,
  790. 'addList' => $addList,
  791. 'editList' => $editList,
  792. 'javascriptList' => $javascriptList,
  793. 'langList' => $langList,
  794. 'sofeDeleteClassPath' => in_array($this->deleteTimeField, $fieldArr) ? "use traits\model\SoftDelete;" : '',
  795. 'softDelete' => in_array($this->deleteTimeField, $fieldArr) ? "use SoftDelete;" : '',
  796. 'modelAutoWriteTimestamp' => in_array($this->createTimeField, $fieldArr) || in_array($this->updateTimeField, $fieldArr) ? "'int'" : 'false',
  797. 'createTime' => in_array($this->createTimeField, $fieldArr) ? "'{$this->createTimeField}'" : 'false',
  798. 'updateTime' => in_array($this->updateTimeField, $fieldArr) ? "'{$this->updateTimeField}'" : 'false',
  799. 'deleteTime' => in_array($this->deleteTimeField, $fieldArr) ? "'{$this->deleteTimeField}'" : 'false',
  800. 'relationSearch' => $relations ? 'true' : 'false',
  801. 'relationWithList' => '',
  802. 'relationMethodList' => '',
  803. 'controllerIndex' => '',
  804. 'recyclebinJs' => '',
  805. 'headingHtml' => $headingHtml,
  806. 'recyclebinHtml' => $recyclebinHtml,
  807. 'visibleFieldList' => $fields ? "\$row->visible(['" . implode("','", array_filter(explode(',', $fields))) . "']);" : '',
  808. 'appendAttrList' => implode(",\n", $appendAttrList),
  809. 'getEnumList' => implode("\n\n", $getEnumArr),
  810. 'getAttrList' => implode("\n\n", $getAttrArr),
  811. 'setAttrList' => implode("\n\n", $setAttrArr),
  812. 'modelInit' => $modelInit,
  813. ];
  814. //如果使用关联模型
  815. if ($relations) {
  816. $relationWithList = $relationMethodList = $relationVisibleFieldList = [];
  817. foreach ($relations as $index => $relation) {
  818. //需要构造关联的方法
  819. $relation['relationMethod'] = strtolower($relation['relationName']);
  820. //关联的模式
  821. $relation['relationMode'] = $relation['relationMode'] == 'hasone' ? 'hasOne' : 'belongsTo';
  822. //关联字段
  823. $relation['relationPrimaryKey'] = $relation['relationPrimaryKey'] ? $relation['relationPrimaryKey'] : $priKey;
  824. //预载入的方法
  825. $relationWithList[] = $relation['relationMethod'];
  826. unset($relation['relationColumnList'], $relation['relationFieldList'], $relation['relationTableInfo']);
  827. //构造关联模型的方法
  828. $relationMethodList[] = $this->getReplacedStub('mixins' . DS . 'modelrelationmethod', $relation);
  829. //如果设置了显示主表字段,则必须显式将关联表字段显示
  830. if ($fields) {
  831. $relationVisibleFieldList[] = "\$row->visible(['{$relation['relationMethod']}']);";
  832. }
  833. //显示的字段
  834. if ($relation['relationFields']) {
  835. $relationVisibleFieldList[] = "\$row->getRelation('" . $relation['relationMethod'] . "')->visible(['" . implode("','", $relation['relationFields']) . "']);";
  836. }
  837. }
  838. $data['relationWithList'] = "->with(['" . implode("','", $relationWithList) . "'])";
  839. $data['relationMethodList'] = implode("\n\n", $relationMethodList);
  840. $data['relationVisibleFieldList'] = implode("\n\t\t\t\t", $relationVisibleFieldList);
  841. //需要重写index方法
  842. $data['controllerIndex'] = $this->getReplacedStub('controllerindex', $data);
  843. } elseif ($fields) {
  844. $data = array_merge($data, ['relationWithList' => '', 'relationMethodList' => '', 'relationVisibleFieldList' => '']);
  845. //需要重写index方法
  846. $data['controllerIndex'] = $this->getReplacedStub('controllerindex', $data);
  847. }
  848. // 生成控制器文件
  849. $this->writeToFile('controller', $data, $controllerFile);
  850. // 生成模型文件
  851. $this->writeToFile('model', $data, $modelFile);
  852. if ($relations) {
  853. foreach ($relations as $i => $relation) {
  854. $relation['modelNamespace'] = $data['modelNamespace'];
  855. if (!is_file($relation['relationFile'])) {
  856. // 生成关联模型文件
  857. $this->writeToFile('relationmodel', $relation, $relation['relationFile']);
  858. }
  859. }
  860. }
  861. // 生成验证文件
  862. $this->writeToFile('validate', $data, $validateFile);
  863. // 生成视图文件
  864. $this->writeToFile('add', $data, $addFile);
  865. $this->writeToFile('edit', $data, $editFile);
  866. $this->writeToFile('index', $data, $indexFile);
  867. if ($recyclebinHtml) {
  868. $this->writeToFile('recyclebin', $data, $recyclebinFile);
  869. $recyclebinTitle = in_array('title', $fieldArr) ? 'title' : (in_array('name', $fieldArr) ? 'name' : '');
  870. $recyclebinTitleJs = $recyclebinTitle ? "\n {field: '{$recyclebinTitle}', title: __('" . (ucfirst($recyclebinTitle)) . "'), align: 'left'}," : '';
  871. $data['recyclebinJs'] = $this->getReplacedStub('mixins/recyclebinjs', ['recyclebinTitleJs' => $recyclebinTitleJs, 'controllerUrl' => $controllerUrl]);
  872. }
  873. // 生成JS文件
  874. $this->writeToFile('javascript', $data, $javascriptFile);
  875. // 生成语言文件
  876. $this->writeToFile('lang', $data, $langFile);
  877. } catch (ErrorException $e) {
  878. throw new Exception("Code: " . $e->getCode() . "\nLine: " . $e->getLine() . "\nMessage: " . $e->getMessage() . "\nFile: " . $e->getFile());
  879. }
  880. //继续生成菜单
  881. if ($menu) {
  882. exec("php think menu -c {$controllerUrl}");
  883. }
  884. $output->info("Build Successed");
  885. }
  886. protected function getEnum(&$getEnum, &$controllerAssignList, $field, $itemArr = '', $inputType = '')
  887. {
  888. if (!in_array($inputType, ['datetime', 'select', 'multiple', 'checkbox', 'radio'])) {
  889. return;
  890. }
  891. $fieldList = $this->getFieldListName($field);
  892. $methodName = 'get' . ucfirst($fieldList);
  893. foreach ($itemArr as $k => &$v) {
  894. $v = "__('" . mb_ucfirst($v) . "')";
  895. }
  896. unset($v);
  897. $itemString = $this->getArrayString($itemArr);
  898. $getEnum[] = <<<EOD
  899. public function {$methodName}()
  900. {
  901. return [{$itemString}];
  902. }
  903. EOD;
  904. $controllerAssignList[] = <<<EOD
  905. \$this->view->assign("{$fieldList}", \$this->model->{$methodName}());
  906. EOD;
  907. }
  908. protected function getAttr(&$getAttr, $field, $inputType = '')
  909. {
  910. if (!in_array($inputType, ['datetime', 'select', 'multiple', 'checkbox', 'radio'])) {
  911. return;
  912. }
  913. $attrField = ucfirst($this->getCamelizeName($field));
  914. $getAttr[] = $this->getReplacedStub("mixins" . DS . $inputType, ['field' => $field, 'methodName' => "get{$attrField}TextAttr", 'listMethodName' => "get{$attrField}List"]);
  915. }
  916. protected function setAttr(&$setAttr, $field, $inputType = '')
  917. {
  918. if (!in_array($inputType, ['datetime', 'checkbox', 'select'])) {
  919. return;
  920. }
  921. $attrField = ucfirst($this->getCamelizeName($field));
  922. if ($inputType == 'datetime') {
  923. $return = <<<EOD
  924. return \$value === '' ? null : (\$value && !is_numeric(\$value) ? strtotime(\$value) : \$value);
  925. EOD;
  926. } elseif (in_array($inputType, ['checkbox', 'select'])) {
  927. $return = <<<EOD
  928. return is_array(\$value) ? implode(',', \$value) : \$value;
  929. EOD;
  930. }
  931. $setAttr[] = <<<EOD
  932. protected function set{$attrField}Attr(\$value)
  933. {
  934. $return
  935. }
  936. EOD;
  937. }
  938. protected function appendAttr(&$appendAttrList, $field)
  939. {
  940. $appendAttrList[] = <<<EOD
  941. '{$field}_text'
  942. EOD;
  943. }
  944. /**
  945. * 移除相对的空目录
  946. * @param $parseFile
  947. * @param $parseArr
  948. * @return bool
  949. */
  950. protected function removeEmptyBaseDir($parseFile, $parseArr)
  951. {
  952. if (count($parseArr) > 1) {
  953. $parentDir = dirname($parseFile);
  954. for ($i = 0; $i < count($parseArr); $i++) {
  955. try {
  956. $iterator = new \FilesystemIterator($parentDir);
  957. $isDirEmpty = !$iterator->valid();
  958. if ($isDirEmpty) {
  959. rmdir($parentDir);
  960. $parentDir = dirname($parentDir);
  961. } else {
  962. return true;
  963. }
  964. } catch (\UnexpectedValueException $e) {
  965. return false;
  966. }
  967. }
  968. }
  969. return true;
  970. }
  971. /**
  972. * 获取控制器相关信息
  973. * @param $module
  974. * @param $controller
  975. * @param $table
  976. * @return array
  977. */
  978. protected function getControllerData($module, $controller, $table)
  979. {
  980. return $this->getParseNameData($module, $controller, $table, 'controller');
  981. }
  982. /**
  983. * 获取模型相关信息
  984. * @param $module
  985. * @param $model
  986. * @param $table
  987. * @return array
  988. */
  989. protected function getModelData($module, $model, $table)
  990. {
  991. return $this->getParseNameData($module, $model, $table, 'model');
  992. }
  993. /**
  994. * 获取验证器相关信息
  995. * @param $module
  996. * @param $validate
  997. * @param $table
  998. * @return array
  999. */
  1000. protected function getValidateData($module, $validate, $table)
  1001. {
  1002. return $this->getParseNameData($module, $validate, $table, 'validate');
  1003. }
  1004. /**
  1005. * 获取已解析相关信息
  1006. * @param string $module 模块名称
  1007. * @param string $name 自定义名称
  1008. * @param string $table 数据表名
  1009. * @param string $type 解析类型,本例中为controller、model、validate
  1010. * @return array
  1011. */
  1012. protected function getParseNameData($module, $name, $table, $type)
  1013. {
  1014. $arr = [];
  1015. if (!$name) {
  1016. $parseName = Loader::parseName($table, 1);
  1017. $parseArr = [$table];
  1018. } else {
  1019. $name = str_replace(['.', '/', '\\'], '/', $name);
  1020. $arr = explode('/', $name);
  1021. $parseName = ucfirst(array_pop($arr));
  1022. $parseArr = $arr;
  1023. array_push($parseArr, $parseName);
  1024. }
  1025. //类名不能为内部关键字
  1026. if (in_array(strtolower($parseName), $this->internalKeywords)) {
  1027. throw new Exception('Unable to use internal variable:' . $parseName);
  1028. }
  1029. $appNamespace = Config::get('app_namespace');
  1030. $parseNamespace = "{$appNamespace}\\{$module}\\{$type}" . ($arr ? "\\" . implode("\\", $arr) : "");
  1031. $moduleDir = APP_PATH . $module . DS;
  1032. $parseFile = $moduleDir . $type . DS . ($arr ? implode(DS, $arr) . DS : '') . $parseName . '.php';
  1033. return [$parseNamespace, $parseName, $parseFile, $parseArr];
  1034. }
  1035. /**
  1036. * 写入到文件
  1037. * @param string $name
  1038. * @param array $data
  1039. * @param string $pathname
  1040. * @return mixed
  1041. */
  1042. protected function writeToFile($name, $data, $pathname)
  1043. {
  1044. foreach ($data as $index => &$datum) {
  1045. $datum = is_array($datum) ? '' : $datum;
  1046. }
  1047. unset($datum);
  1048. $content = $this->getReplacedStub($name, $data);
  1049. if (!is_dir(dirname($pathname))) {
  1050. mkdir(dirname($pathname), 0755, true);
  1051. }
  1052. return file_put_contents($pathname, $content);
  1053. }
  1054. /**
  1055. * 获取替换后的数据
  1056. * @param string $name
  1057. * @param array $data
  1058. * @return string
  1059. */
  1060. protected function getReplacedStub($name, $data)
  1061. {
  1062. foreach ($data as $index => &$datum) {
  1063. $datum = is_array($datum) ? '' : $datum;
  1064. }
  1065. unset($datum);
  1066. $search = $replace = [];
  1067. foreach ($data as $k => $v) {
  1068. $search[] = "{%{$k}%}";
  1069. $replace[] = $v;
  1070. }
  1071. $stubname = $this->getStub($name);
  1072. if (isset($this->stubList[$stubname])) {
  1073. $stub = $this->stubList[$stubname];
  1074. } else {
  1075. $this->stubList[$stubname] = $stub = file_get_contents($stubname);
  1076. }
  1077. $content = str_replace($search, $replace, $stub);
  1078. return $content;
  1079. }
  1080. /**
  1081. * 获取基础模板
  1082. * @param string $name
  1083. * @return string
  1084. */
  1085. protected function getStub($name)
  1086. {
  1087. return __DIR__ . DS . 'Crud' . DS . 'stubs' . DS . $name . '.stub';
  1088. }
  1089. protected function getLangItem($field, $content)
  1090. {
  1091. if ($content || !Lang::has($field)) {
  1092. $this->fieldMaxLen = strlen($field) > $this->fieldMaxLen ? strlen($field) : $this->fieldMaxLen;
  1093. $content = str_replace(',', ',', $content);
  1094. if (stripos($content, ':') !== false && stripos($content, ',') && stripos($content, '=') !== false) {
  1095. list($fieldLang, $item) = explode(':', $content);
  1096. $itemArr = [$field => $fieldLang];
  1097. foreach (explode(',', $item) as $k => $v) {
  1098. $valArr = explode('=', $v);
  1099. if (count($valArr) == 2) {
  1100. list($key, $value) = $valArr;
  1101. $itemArr[$field . ' ' . $key] = $value;
  1102. $this->fieldMaxLen = strlen($field . ' ' . $key) > $this->fieldMaxLen ? strlen($field . ' ' . $key) : $this->fieldMaxLen;
  1103. }
  1104. }
  1105. } else {
  1106. $itemArr = [$field => $content];
  1107. }
  1108. $resultArr = [];
  1109. foreach ($itemArr as $k => $v) {
  1110. $resultArr[] = " '" . mb_ucfirst($k) . "' => '{$v}'";
  1111. }
  1112. return implode(",\n", $resultArr);
  1113. } else {
  1114. return '';
  1115. }
  1116. }
  1117. /**
  1118. * 读取数据和语言数组列表
  1119. * @param array $arr
  1120. * @param boolean $withTpl
  1121. * @return array
  1122. */
  1123. protected function getLangArray($arr, $withTpl = true)
  1124. {
  1125. $langArr = [];
  1126. foreach ($arr as $k => $v) {
  1127. $langArr[$k] = is_numeric($k) ? ($withTpl ? "{:" : "") . "__('" . mb_ucfirst($v) . "')" . ($withTpl ? "}" : "") : $v;
  1128. }
  1129. return $langArr;
  1130. }
  1131. /**
  1132. * 将数据转换成带字符串
  1133. * @param array $arr
  1134. * @return string
  1135. */
  1136. protected function getArrayString($arr)
  1137. {
  1138. if (!is_array($arr)) {
  1139. return $arr;
  1140. }
  1141. $stringArr = [];
  1142. foreach ($arr as $k => $v) {
  1143. $is_var = in_array(substr($v, 0, 1), ['$', '_']);
  1144. if (!$is_var) {
  1145. $v = str_replace("'", "\'", $v);
  1146. $k = str_replace("'", "\'", $k);
  1147. }
  1148. $stringArr[] = "'" . $k . "' => " . ($is_var ? $v : "'{$v}'");
  1149. }
  1150. return implode(", ", $stringArr);
  1151. }
  1152. protected function getItemArray($item, $field, $comment)
  1153. {
  1154. $itemArr = [];
  1155. $comment = str_replace(',', ',', $comment);
  1156. if (stripos($comment, ':') !== false && stripos($comment, ',') && stripos($comment, '=') !== false) {
  1157. list($fieldLang, $item) = explode(':', $comment);
  1158. $itemArr = [];
  1159. foreach (explode(',', $item) as $k => $v) {
  1160. $valArr = explode('=', $v);
  1161. if (count($valArr) == 2) {
  1162. list($key, $value) = $valArr;
  1163. $itemArr[$key] = $field . ' ' . $key;
  1164. }
  1165. }
  1166. } else {
  1167. foreach ($item as $k => $v) {
  1168. $itemArr[$v] = is_numeric($v) ? $field . ' ' . $v : $v;
  1169. }
  1170. }
  1171. return $itemArr;
  1172. }
  1173. protected function getFieldType(& $v)
  1174. {
  1175. $inputType = 'text';
  1176. switch ($v['DATA_TYPE']) {
  1177. case 'bigint':
  1178. case 'int':
  1179. case 'mediumint':
  1180. case 'smallint':
  1181. case 'tinyint':
  1182. $inputType = 'number';
  1183. break;
  1184. case 'enum':
  1185. case 'set':
  1186. $inputType = 'select';
  1187. break;
  1188. case 'decimal':
  1189. case 'double':
  1190. case 'float':
  1191. $inputType = 'number';
  1192. break;
  1193. case 'longtext':
  1194. case 'text':
  1195. case 'mediumtext':
  1196. case 'smalltext':
  1197. case 'tinytext':
  1198. $inputType = 'textarea';
  1199. break;
  1200. case 'year':
  1201. case 'date':
  1202. case 'time':
  1203. case 'datetime':
  1204. case 'timestamp':
  1205. $inputType = 'datetime';
  1206. break;
  1207. default:
  1208. break;
  1209. }
  1210. $fieldsName = $v['COLUMN_NAME'];
  1211. // 指定后缀说明也是个时间字段
  1212. if ($this->isMatchSuffix($fieldsName, $this->intDateSuffix)) {
  1213. $inputType = 'datetime';
  1214. }
  1215. // 指定后缀结尾且类型为enum,说明是个单选框
  1216. if ($this->isMatchSuffix($fieldsName, $this->enumRadioSuffix) && $v['DATA_TYPE'] == 'enum') {
  1217. $inputType = "radio";
  1218. }
  1219. // 指定后缀结尾且类型为set,说明是个复选框
  1220. if ($this->isMatchSuffix($fieldsName, $this->setCheckboxSuffix) && $v['DATA_TYPE'] == 'set') {
  1221. $inputType = "checkbox";
  1222. }
  1223. // 指定后缀结尾且类型为char或tinyint且长度为1,说明是个Switch复选框
  1224. if ($this->isMatchSuffix($fieldsName, $this->switchSuffix) && ($v['COLUMN_TYPE'] == 'tinyint(1)' || $v['COLUMN_TYPE'] == 'char(1)') && $v['COLUMN_DEFAULT'] !== '' && $v['COLUMN_DEFAULT'] !== null) {
  1225. $inputType = "switch";
  1226. }
  1227. // 指定后缀结尾城市选择框
  1228. if ($this->isMatchSuffix($fieldsName, $this->citySuffix) && ($v['DATA_TYPE'] == 'varchar' || $v['DATA_TYPE'] == 'char')) {
  1229. $inputType = "citypicker";
  1230. }
  1231. // 指定后缀结尾JSON配置
  1232. if ($this->isMatchSuffix($fieldsName, $this->jsonSuffix) && ($v['DATA_TYPE'] == 'varchar' || $v['DATA_TYPE'] == 'text')) {
  1233. $inputType = "fieldlist";
  1234. }
  1235. return $inputType;
  1236. }
  1237. /**
  1238. * 判断是否符合指定后缀
  1239. * @param string $field 字段名称
  1240. * @param mixed $suffixArr 后缀
  1241. * @return boolean
  1242. */
  1243. protected function isMatchSuffix($field, $suffixArr)
  1244. {
  1245. $suffixArr = is_array($suffixArr) ? $suffixArr : explode(',', $suffixArr);
  1246. foreach ($suffixArr as $k => $v) {
  1247. if (preg_match("/{$v}$/i", $field)) {
  1248. return true;
  1249. }
  1250. }
  1251. return false;
  1252. }
  1253. /**
  1254. * 获取表单分组数据
  1255. * @param string $field
  1256. * @param string $content
  1257. * @return string
  1258. */
  1259. protected function getFormGroup($field, $content)
  1260. {
  1261. $langField = mb_ucfirst($field);
  1262. return <<<EOD
  1263. <div class="form-group">
  1264. <label class="control-label col-xs-12 col-sm-2">{:__('{$langField}')}:</label>
  1265. <div class="col-xs-12 col-sm-8">
  1266. {$content}
  1267. </div>
  1268. </div>
  1269. EOD;
  1270. }
  1271. /**
  1272. * 获取图片模板数据
  1273. * @param string $field
  1274. * @param string $content
  1275. * @return string
  1276. */
  1277. protected function getImageUpload($field, $content)
  1278. {
  1279. $uploadfilter = $selectfilter = '';
  1280. if ($this->isMatchSuffix($field, $this->imageField)) {
  1281. $uploadfilter = ' data-mimetype="image/gif,image/jpeg,image/png,image/jpg,image/bmp"';
  1282. $selectfilter = ' data-mimetype="image/*"';
  1283. }
  1284. $multiple = substr($field, -1) == 's' ? ' data-multiple="true"' : ' data-multiple="false"';
  1285. $preview = ' data-preview-id="p-' . $field . '"';
  1286. $previewcontainer = $preview ? '<ul class="row list-inline plupload-preview" id="p-' . $field . '"></ul>' : '';
  1287. return <<<EOD
  1288. <div class="input-group">
  1289. {$content}
  1290. <div class="input-group-addon no-border no-padding">
  1291. <span><button type="button" id="plupload-{$field}" class="btn btn-danger plupload" data-input-id="c-{$field}"{$uploadfilter}{$multiple}{$preview}><i class="fa fa-upload"></i> {:__('Upload')}</button></span>
  1292. <span><button type="button" id="fachoose-{$field}" class="btn btn-primary fachoose" data-input-id="c-{$field}"{$selectfilter}{$multiple}><i class="fa fa-list"></i> {:__('Choose')}</button></span>
  1293. </div>
  1294. <span class="msg-box n-right" for="c-{$field}"></span>
  1295. </div>
  1296. {$previewcontainer}
  1297. EOD;
  1298. }
  1299. /**
  1300. * 获取JS列数据
  1301. * @param string $field
  1302. * @param string $datatype
  1303. * @param string $extend
  1304. * @param array $itemArr
  1305. * @return string
  1306. */
  1307. protected function getJsColumn($field, $datatype = '', $extend = '', $itemArr = [])
  1308. {
  1309. $lang = mb_ucfirst($field);
  1310. $formatter = '';
  1311. foreach ($this->fieldFormatterSuffix as $k => $v) {
  1312. if (preg_match("/{$k}$/i", $field)) {
  1313. if (is_array($v)) {
  1314. if (in_array($datatype, $v['type'])) {
  1315. $formatter = $v['name'];
  1316. break;
  1317. }
  1318. } else {
  1319. $formatter = $v;
  1320. break;
  1321. }
  1322. }
  1323. }
  1324. $html = str_repeat(" ", 24) . "{field: '{$field}', title: __('{$lang}')";
  1325. if ($datatype == 'set') {
  1326. $formatter = 'label';
  1327. }
  1328. foreach ($itemArr as $k => &$v) {
  1329. if (substr($v, 0, 3) !== '__(') {
  1330. $v = "__('" . mb_ucfirst($v) . "')";
  1331. }
  1332. }
  1333. unset($v);
  1334. $searchList = json_encode($itemArr, JSON_FORCE_OBJECT | JSON_UNESCAPED_UNICODE);
  1335. $searchList = str_replace(['":"', '"}', ')","'], ['":', '}', '),"'], $searchList);
  1336. if ($itemArr) {
  1337. $html .= ", searchList: " . $searchList;
  1338. }
  1339. if (in_array($datatype, ['date', 'datetime']) || $formatter === 'datetime') {
  1340. $html .= ", operate:'RANGE', addclass:'datetimerange'";
  1341. } elseif (in_array($datatype, ['float', 'double', 'decimal'])) {
  1342. $html .= ", operate:'BETWEEN'";
  1343. }
  1344. if (in_array($datatype, ['set'])) {
  1345. $html .= ", operate:'FIND_IN_SET'";
  1346. }
  1347. if (in_array($formatter, ['image', 'images'])) {
  1348. $html .= ", events: Table.api.events.image";
  1349. }
  1350. if ($itemArr && !$formatter) {
  1351. $formatter = 'normal';
  1352. }
  1353. if ($formatter) {
  1354. $html .= ", formatter: Table.api.formatter." . $formatter . "}";
  1355. } else {
  1356. $html .= "}";
  1357. }
  1358. return $html;
  1359. }
  1360. protected function getCamelizeName($uncamelized_words, $separator = '_')
  1361. {
  1362. $uncamelized_words = $separator . str_replace($separator, " ", strtolower($uncamelized_words));
  1363. return ltrim(str_replace(" ", "", ucwords($uncamelized_words)), $separator);
  1364. }
  1365. protected function getFieldListName($field)
  1366. {
  1367. return $this->getCamelizeName($field) . 'List';
  1368. }
  1369. }