Crud.php 59 KB

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