No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FieldLogic.php 27KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\logic;
  14. use think\Model;
  15. use think\Db;
  16. /**
  17. * 字段逻辑定义
  18. * Class CatsLogic
  19. * @package admin\Logic
  20. */
  21. class FieldLogic extends Model
  22. {
  23. /**
  24. * 获得字段创建信息
  25. *
  26. * @access public
  27. * @param string $dtype 字段类型
  28. * @param string $fieldname 字段名称
  29. * @param string $dfvalue 默认值
  30. * @param string $fieldtitle 字段标题
  31. * @return array
  32. */
  33. function GetFieldMake($dtype, $fieldname, $dfvalue, $fieldtitle)
  34. {
  35. $fields = array();
  36. if("int" == $dtype)
  37. {
  38. empty($dfvalue) && $dfvalue = 0;
  39. $default_sql = '';
  40. if(preg_match("#[0-9]+#", $dfvalue))
  41. {
  42. $default_sql = "DEFAULT '$dfvalue'";
  43. }
  44. $maxlen = 10;
  45. $fields[0] = " `$fieldname` int($maxlen) NOT NULL $default_sql COMMENT '$fieldtitle';";
  46. $fields[1] = "int($maxlen)";
  47. $fields[2] = $maxlen;
  48. }
  49. else if("datetime" == $dtype)
  50. {
  51. empty($dfvalue) && $dfvalue = 0;
  52. $default_sql = '';
  53. if(preg_match("#[0-9\-]+#", $dfvalue))
  54. {
  55. $dfvalue = strtotime($dfvalue);
  56. empty($dfvalue) && $dfvalue = 0;
  57. $default_sql = "DEFAULT '$dfvalue'";
  58. }
  59. $maxlen = 11;
  60. $fields[0] = " `$fieldname` int($maxlen) NOT NULL $default_sql COMMENT '$fieldtitle';";
  61. $fields[1] = "int($maxlen)";
  62. $fields[2] = $maxlen;
  63. }
  64. else if("switch" == $dtype)
  65. {
  66. if(empty($dfvalue) || preg_match("#[^0-9]+#", $dfvalue))
  67. {
  68. $dfvalue = 1;
  69. }
  70. $maxlen = 1;
  71. $fields[0] = " `$fieldname` tinyint($maxlen) NOT NULL DEFAULT '$dfvalue' COMMENT '$fieldtitle';";
  72. $fields[1] = "tinyint($maxlen)";
  73. $fields[2] = $maxlen;
  74. }
  75. else if("float" == $dtype)
  76. {
  77. empty($dfvalue) && $dfvalue = 0;
  78. $default_sql = '';
  79. if(preg_match("#[0-9\.]+#", $dfvalue))
  80. {
  81. $default_sql = "DEFAULT '$dfvalue'";
  82. }
  83. $maxlen = 9;
  84. $fields[0] = " `$fieldname` float($maxlen,2) NOT NULL $default_sql COMMENT '$fieldtitle';";
  85. $fields[1] = "float($maxlen,2)";
  86. $fields[2] = $maxlen;
  87. }
  88. else if("decimal" == $dtype)
  89. {
  90. empty($dfvalue) && $dfvalue = 0;
  91. $default_sql = '';
  92. if(preg_match("#[0-9\.]+#", $dfvalue))
  93. {
  94. $default_sql = "DEFAULT '$dfvalue'";
  95. }
  96. $maxlen = 10;
  97. $fields[0] = " `$fieldname` decimal($maxlen,2) NOT NULL $default_sql COMMENT '$fieldtitle';";
  98. $fields[1] = "decimal($maxlen,2)";
  99. $fields[2] = $maxlen;
  100. }
  101. else if("img" == $dtype)
  102. {
  103. if(empty($dfvalue)) {
  104. $dfvalue = '';
  105. }
  106. $maxlen = 500;
  107. $fields[0] = " `$fieldname` varchar($maxlen) NOT NULL DEFAULT '$dfvalue' COMMENT '$fieldtitle';";
  108. $fields[1] = "varchar($maxlen)";
  109. $fields[2] = $maxlen;
  110. }
  111. else if("imgs" == $dtype)
  112. {
  113. if(empty($dfvalue)) {
  114. $dfvalue = '';
  115. }
  116. $maxlen = 10001;
  117. $fields[0] = " `$fieldname` text COMMENT '$fieldtitle|{$maxlen}';";
  118. $fields[1] = "text";
  119. $fields[2] = $maxlen;
  120. }
  121. else if("media" == $dtype)
  122. {
  123. $maxlen = 500;
  124. $fields[0] = " `$fieldname` varchar($maxlen) NOT NULL DEFAULT '$dfvalue' COMMENT '$fieldtitle';";
  125. $fields[1] = "varchar($maxlen)";
  126. $fields[2] = $maxlen;
  127. }
  128. else if("files" == $dtype)
  129. {
  130. if(empty($dfvalue)) {
  131. $dfvalue = '';
  132. }
  133. $maxlen = 10002;
  134. $fields[0] = " `$fieldname` text COMMENT '$fieldtitle|{$maxlen}';";
  135. $fields[1] = "text";
  136. $fields[2] = $maxlen;
  137. }
  138. else if("multitext" == $dtype)
  139. {
  140. $maxlen = 0;
  141. $fields[0] = " `$fieldname` text COMMENT '$fieldtitle';";
  142. $fields[1] = "text";
  143. $fields[2] = $maxlen;
  144. }
  145. else if("htmltext" == $dtype)
  146. {
  147. $maxlen = 0;
  148. $fields[0] = " `$fieldname` longtext CHARACTER SET utf8 COMMENT '$fieldtitle';";
  149. $fields[1] = "longtext";
  150. $fields[2] = $maxlen;
  151. }
  152. else if("checkbox" == $dtype)
  153. {
  154. $maxlen = 0;
  155. $dfvalueArr = explode(',', $dfvalue);
  156. if (64 < count($dfvalueArr)){
  157. $dfvalueArr = array_slice($dfvalueArr, 0, 64);
  158. $dfvalue = implode(',', $dfvalueArr);
  159. }
  160. $default_value = '';
  161. // $default_value = !empty($dfvalueArr[0]) ? $dfvalueArr[0] : '';
  162. $dfvalue = str_replace(',', "','", $dfvalue);
  163. $dfvalue = "'".$dfvalue."'";
  164. $fields[0] = " `$fieldname` SET($dfvalue) NULL DEFAULT '{$default_value}' COMMENT '$fieldtitle';";
  165. $fields[1] = "SET($dfvalue)";
  166. $fields[2] = $maxlen;
  167. }
  168. else if("select" == $dtype || "radio" == $dtype)
  169. {
  170. $maxlen = 0;
  171. $dfvalueArr = explode(',', $dfvalue);
  172. $default_value = !empty($dfvalueArr[0]) ? $dfvalueArr[0] : '';
  173. $dfvalue = str_replace(',', "','", $dfvalue);
  174. $dfvalue = "'".$dfvalue."'";
  175. $fields[0] = " `$fieldname` enum($dfvalue) NULL DEFAULT '{$default_value}' COMMENT '$fieldtitle';";
  176. $fields[1] = "enum($dfvalue)";
  177. $fields[2] = $maxlen;
  178. }
  179. else
  180. {
  181. if(empty($dfvalue))
  182. {
  183. $dfvalue = '';
  184. }
  185. $maxlen = 500;
  186. $fields[0] = " `$fieldname` varchar($maxlen) NOT NULL DEFAULT '$dfvalue' COMMENT '$fieldtitle';";
  187. $fields[1] = "varchar($maxlen)";
  188. $fields[2] = $maxlen;
  189. }
  190. return $fields;
  191. }
  192. /**
  193. * 检测频道模型相关的表字段是否已存在,包括:主表和附加表
  194. *
  195. * @access public
  196. * @param string $slave_table 附加表
  197. * @return string $fieldname 字段名
  198. * @return int $channel_id 模型ID
  199. * @param array $filter 过滤哪些字段
  200. */
  201. public function checkChannelFieldList($slave_table, $fieldname, $channel_id, $filter = array())
  202. {
  203. // 栏目表字段
  204. $arctypeFieldArr = Db::getTableFields(PREFIX.'arctype');
  205. foreach ($arctypeFieldArr as $key => $val) {
  206. if (!preg_match('/^type/i',$val)) {
  207. array_push($arctypeFieldArr, 'type'.$val);
  208. }
  209. }
  210. $masterFieldArr = Db::getTableFields(PREFIX.'archives'); // 文档主表字段
  211. $slaveFieldArr = Db::getTableFields($slave_table); // 文档附加表字段
  212. $addfields = ['pageurl','has_children','typelitpic','arcurl','typeurl']; // 额外与字段冲突的变量名
  213. $fieldArr = array_merge($slaveFieldArr, $masterFieldArr, $addfields, $arctypeFieldArr); // 合并字段
  214. if (!empty($fieldname)) {
  215. if (!empty($filter) && is_array($filter)) {
  216. foreach ($filter as $key => $val) {
  217. $k = array_search($val, $fieldArr);
  218. if (false !== $k) {
  219. unset($fieldArr[$k]);
  220. }
  221. }
  222. }
  223. return in_array($fieldname, $fieldArr);
  224. }
  225. return true;
  226. }
  227. /**
  228. * 检测指定表的字段是否已存在
  229. *
  230. * @access public
  231. * @param string $table 数据表
  232. * @return string $fieldname 字段名
  233. * @param array $filter 过滤哪些字段
  234. */
  235. public function checkTableFieldList($table, $fieldname, $filter = array())
  236. {
  237. $fieldArr = Db::getTableFields($table); // 表字段
  238. if (!empty($fieldname)) {
  239. if (!empty($filter) && is_array($filter)) {
  240. foreach ($filter as $key => $val) {
  241. $k = array_search($val, $fieldArr);
  242. if (false !== $k) {
  243. unset($fieldArr[$k]);
  244. }
  245. }
  246. }
  247. return in_array($fieldname, $fieldArr);
  248. }
  249. return true;
  250. }
  251. /**
  252. * 删除指定模型的表字段
  253. * @param int $id channelfield表ID
  254. * @return bool
  255. */
  256. public function delChannelField($id)
  257. {
  258. $code = 0;
  259. $msg = '参数有误!';
  260. if (!empty($id)) {
  261. $id = intval($id);
  262. $row = model('Channelfield')->getInfo($id, 'channel_id,name,ifsystem');
  263. if (!empty($row['ifsystem'])) {
  264. return array('code'=>0, 'msg'=>'禁止删除系统字段!');
  265. }
  266. $fieldname = $row['name'];
  267. $channel_id = $row['channel_id'];
  268. $table = Db::name('channeltype')->where('id',$channel_id)->getField('table');
  269. $table = PREFIX.$table.'_content';
  270. if ($this->checkChannelFieldList($table, $fieldname, $channel_id)) {
  271. $sql = "ALTER TABLE `{$table}` DROP COLUMN `{$fieldname}`;";
  272. if(false !== Db::execute($sql)) {
  273. /*重新生成数据表字段缓存文件*/
  274. try {
  275. schemaTable($table);
  276. } catch (\Exception $e) {}
  277. /*--end*/
  278. return array('code'=>1, 'msg'=>'删除成功!');
  279. } else {
  280. $code = 0;
  281. $msg = '删除失败!';
  282. }
  283. } else {
  284. $code = 2;
  285. $msg = '字段不存在!';
  286. }
  287. }
  288. return array('code'=>$code, 'msg'=>$msg);
  289. }
  290. /**
  291. * 删除栏目的表字段
  292. * @param int $id channelfield表ID
  293. * @return bool
  294. */
  295. public function delArctypeField($id)
  296. {
  297. $code = 0;
  298. $msg = '参数有误!';
  299. if (!empty($id)) {
  300. $id = intval($id);
  301. $row = model('Channelfield')->getInfo($id, 'name,ifsystem');
  302. if (!empty($row['ifsystem'])) {
  303. return array('code'=>0, 'msg'=>'禁止删除系统字段!');
  304. }
  305. $fieldname = $row['name'];
  306. $table = PREFIX.'arctype';
  307. if ($this->checkTableFieldList($table, $fieldname)) {
  308. $sql = "ALTER TABLE `{$table}` DROP COLUMN `{$fieldname}`;";
  309. if(false !== Db::execute($sql)) {
  310. /*重新生成数据表字段缓存文件*/
  311. try {
  312. schemaTable($table);
  313. } catch (\Exception $e) {}
  314. /*--end*/
  315. return array('code'=>1, 'msg'=>'删除成功!');
  316. } else {
  317. $code = 0;
  318. $msg = '删除失败!';
  319. }
  320. } else {
  321. $code = 2;
  322. $msg = '字段不存在!';
  323. }
  324. }
  325. return array('code'=>$code, 'msg'=>$msg);
  326. }
  327. /**
  328. * 同步模型附加表的字段记录
  329. * @author 小虎哥 by 2018-4-16
  330. */
  331. public function synChannelTableColumns($channel_id)
  332. {
  333. $this->synArchivesTableColumns($channel_id);
  334. $channelfieldArr = Db::name('channelfield')->field('name,dtype')->where('channel_id',$channel_id)->getAllWithIndex('name');
  335. $new_arr = array(); // 表字段数组
  336. $addData = array(); // 数据存储变量
  337. $table = Db::name('channeltype')->where('id',$channel_id)->getField('table');
  338. $tableExt = PREFIX.$table.'_content';
  339. $rowExt = Db::query("SHOW FULL COLUMNS FROM {$tableExt}");
  340. foreach ($rowExt as $key => $val) {
  341. $fieldname = $val['Field'];
  342. if (in_array($fieldname, array('id','add_time','update_time','aid','typeid'))) {
  343. continue;
  344. }
  345. $new_arr[] = $fieldname;
  346. // 对比字段记录 表字段有 字段新增记录没有
  347. if (empty($channelfieldArr[$fieldname])) {
  348. $ifcontrol = 0;
  349. $is_release = 0;
  350. $ifeditable = 1;
  351. $dtype = $this->toDtype($val['Type'], $val['Comment']);
  352. $dfvalue = $this->toDefault($val['Type'], $val['Default']);
  353. if (in_array($fieldname, array('content'))) {
  354. $ifsystem = 1;
  355. } else {
  356. $ifsystem = 0;
  357. }
  358. $maxlength = preg_replace('/^([^\(]+)\(([^\)]+)\)(.*)/i', '$2', $val['Type']);
  359. $maxlength = intval($maxlength);
  360. /*视频模型附加表内置的系统字段*/
  361. if (5 == $channel_id && in_array($fieldname, ['total_video','total_duration','courseware_free','courseware'])) {
  362. $ifsystem = 1;
  363. $ifcontrol = 1;
  364. $is_release = 1;
  365. $ifeditable = 0;
  366. } else if ($channel_id <= 8 || (50 <= $channel_id && $channel_id <= 100)) {
  367. if ('content' == $fieldname) {
  368. $is_release = 1;
  369. }
  370. }
  371. /*end*/
  372. $addData[] = array(
  373. 'name' => $fieldname,
  374. 'channel_id' => $channel_id,
  375. 'title' => !empty($val['Comment']) ? $val['Comment'] : $fieldname,
  376. 'dtype' => $dtype,
  377. 'define' => $val['Type'],
  378. 'maxlength' => $maxlength,
  379. 'dfvalue' => $dfvalue,
  380. 'is_release' => $is_release,
  381. 'ifeditable' => $ifeditable,
  382. 'ifsystem' => $ifsystem,
  383. 'ifmain' => 0,
  384. 'ifcontrol' => $ifcontrol,
  385. 'add_time' => getTime(),
  386. 'update_time' => getTime(),
  387. );
  388. }
  389. }
  390. if (!empty($addData)) {
  391. Db::name('channelfield')->insertAll($addData);
  392. }
  393. /*字段新增记录有,表字段没有*/
  394. foreach($channelfieldArr as $k => $v){
  395. if (!in_array($k, $new_arr)) {
  396. $map = array(
  397. 'channel_id' => $channel_id,
  398. 'ifmain' => 0,
  399. 'name' => $v['name'],
  400. );
  401. Db::name('channelfield')->where($map)->delete();
  402. }
  403. }
  404. /*--end*/
  405. \think\Cache::clear('channelfield');
  406. }
  407. /**
  408. * 同步文档主表的字段记录到指定模型
  409. * @author 小虎哥 by 2018-4-16
  410. */
  411. public function synArchivesTableColumns($channel_id = '')
  412. {
  413. $channelfieldArr = Db::name('channelfield')->field('name,dtype')->where('channel_id',$channel_id)->getAllWithIndex('name');
  414. $new_arr = array(); // 表字段数组
  415. $addData = array(); // 数据存储变量
  416. $controlFields = ['litpic','author'];
  417. $channeltype_system_ids = Db::name('channeltype')->where([
  418. 'ifsystem' => 1,
  419. ])->column('id');
  420. $table = PREFIX.'archives';
  421. $row = Db::query("SHOW FULL COLUMNS FROM {$table}");
  422. $row = array_reverse($row);
  423. foreach ($row as $key => $val) {
  424. $fieldname = $val['Field'];
  425. $new_arr[] = $fieldname;
  426. // 对比字段记录 表字段有 字段新增记录没有
  427. if (empty($channelfieldArr[$fieldname])) {
  428. $dtype = $this->toDtype($val['Type'], $val['Comment']);
  429. $dfvalue = $this->toDefault($val['Type'], $val['Default']);
  430. if (in_array($fieldname, $controlFields) && !in_array($channel_id, $channeltype_system_ids)) {
  431. $ifcontrol = 0;
  432. } else {
  433. $ifcontrol = 1;
  434. }
  435. $maxlength = preg_replace('/^([^\(]+)\(([^\)]+)\)(.*)/i', '$2', $val['Type']);
  436. $maxlength = intval($maxlength);
  437. $addData[] = array(
  438. 'name' => $fieldname,
  439. 'channel_id' => $channel_id,
  440. 'title' => !empty($val['Comment']) ? $val['Comment'] : $fieldname,
  441. 'dtype' => $dtype,
  442. 'define' => $val['Type'],
  443. 'maxlength' => $maxlength,
  444. 'dfvalue' => $dfvalue,
  445. 'ifeditable' => 1,
  446. 'ifsystem' => 1,
  447. 'ifmain' => 1,
  448. 'ifcontrol' => $ifcontrol,
  449. 'add_time' => getTime(),
  450. 'update_time' => getTime(),
  451. );
  452. }
  453. }
  454. if (!empty($addData)) {
  455. Db::name('channelfield')->insertAll($addData);
  456. }
  457. /*字段新增记录有,表字段没有*/
  458. foreach($channelfieldArr as $k => $v){
  459. if (!in_array($k, $new_arr)) {
  460. $map = array(
  461. 'channel_id' => $channel_id,
  462. 'ifmain' => 1,
  463. 'name' => $v['name'],
  464. );
  465. Db::name('channelfield')->where($map)->delete();
  466. }
  467. }
  468. /*--end*/
  469. }
  470. /**
  471. * 同步栏目主表的字段记录
  472. * @author 小虎哥 by 2018-4-16
  473. */
  474. public function synArctypeTableColumns($channel_id = '')
  475. {
  476. $cacheKey = md5("admin-FieldLogic-synArctypeTableColumns-{$channel_id}");
  477. $cacheValue = cache($cacheKey);
  478. if (!empty($cacheValue)) {
  479. return true;
  480. }
  481. $channel_id = !empty($channel_id) ? $channel_id : config('global.arctype_channel_id');
  482. $channelfieldArr = Db::name('channelfield')->field('name,dtype')->where('channel_id',$channel_id)->getAllWithIndex('name');
  483. $new_arr = array(); // 表字段数组
  484. $addData = array(); // 数据存储变量
  485. $table = PREFIX.'arctype';
  486. $row = Db::query("SHOW FULL COLUMNS FROM {$table}");
  487. $row = array_reverse($row);
  488. $arctypeTableFields = config('global.arctype_table_fields');
  489. foreach ($row as $key => $val) {
  490. $fieldname = $val['Field'];
  491. $new_arr[] = $fieldname;
  492. // 对比字段记录 表字段有 字段新增记录没有
  493. if (empty($channelfieldArr[$fieldname])) {
  494. $dtype = $this->toDtype($val['Type'], $val['Comment']);
  495. $dfvalue = $this->toDefault($val['Type'], $val['Default']);
  496. if (in_array($fieldname, $arctypeTableFields)) {
  497. $ifsystem = 1;
  498. } else {
  499. $ifsystem = 0;
  500. }
  501. $maxlength = preg_replace('/^([^\(]+)\(([^\)]+)\)(.*)/i', '$2', $val['Type']);
  502. $maxlength = intval($maxlength);
  503. $addData[] = array(
  504. 'name' => $fieldname,
  505. 'channel_id' => $channel_id,
  506. 'title' => !empty($val['Comment']) ? $val['Comment'] : $fieldname,
  507. 'dtype' => $dtype,
  508. 'define' => $val['Type'],
  509. 'maxlength' => $maxlength,
  510. 'dfvalue' => $dfvalue,
  511. 'ifeditable' => 1,
  512. 'ifsystem' => $ifsystem,
  513. 'ifmain' => 1,
  514. 'ifcontrol' => 1,
  515. 'add_time' => getTime(),
  516. 'update_time' => getTime(),
  517. );
  518. }
  519. }
  520. if (!empty($addData)) {
  521. Db::name('channelfield')->insertAll($addData);
  522. }
  523. /*字段新增记录有,表字段没有*/
  524. foreach($channelfieldArr as $k => $v){
  525. if (!in_array($k, $new_arr)) {
  526. $map = array(
  527. 'channel_id' => $channel_id,
  528. 'name' => $v['name'],
  529. );
  530. Db::name('channelfield')->where($map)->delete();
  531. }
  532. }
  533. /*--end*/
  534. /*修复v1.1.9版本的admin_id为系统字段*/
  535. Db::name('channelfield')->where('name','admin_id')->update(['ifsystem'=>1]);
  536. /*--end*/
  537. \think\Cache::clear('channelfield');
  538. \think\Cache::clear("arctype");
  539. cache($cacheKey, 1, null, 'channelfield');
  540. }
  541. /**
  542. * 表字段类型转为自定义字段类型
  543. * @author 小虎哥 by 2018-4-16
  544. */
  545. public function toDtype($fieldtype = '', $comment = '')
  546. {
  547. $commentArr = explode('|', $comment);
  548. if (preg_match('/^int/i', $fieldtype)) {
  549. $maxlen = preg_replace('/^int\((.*)\)/i', '$1', $fieldtype);
  550. if (11 == $maxlen) {
  551. $dtype = 'datetime';
  552. } else {
  553. $dtype = 'int';
  554. }
  555. } else if (preg_match('/^longtext/i', $fieldtype)) {
  556. $dtype = 'htmltext';
  557. } else if (preg_match('/^text/i', $fieldtype)) {
  558. $maxlen = end($commentArr);
  559. $maxlen = intval($maxlen);
  560. if (1001 == $maxlen || 10001 == $maxlen) {
  561. $dtype = 'imgs';
  562. } else if (1002 == $maxlen || 10002 == $maxlen) {
  563. $dtype = 'files';
  564. } else {
  565. $dtype = 'multitext';
  566. }
  567. } else if (preg_match('/^enum/i', $fieldtype)) {
  568. $dtype = 'select';
  569. } else if (preg_match('/^set/i', $fieldtype)) {
  570. $dtype = 'checkbox';
  571. } else if (preg_match('/^float/i', $fieldtype)) {
  572. $dtype = 'float';
  573. } else if (preg_match('/^decimal/i', $fieldtype)) {
  574. $dtype = 'decimal';
  575. } else if (preg_match('/^tinyint/i', $fieldtype)) {
  576. $dtype = 'switch';
  577. } else if (preg_match('/^varchar/i', $fieldtype)) {
  578. $maxlen = preg_replace('/^varchar\((.*)\)/i', '$1', $fieldtype);
  579. if (250 == $maxlen) {
  580. $dtype = 'img';
  581. } else if (1001 == $maxlen || 10001 == $maxlen) {
  582. $dtype = 'imgs';
  583. } else if (1002 == $maxlen || 10002 == $maxlen) {
  584. $dtype = 'files';
  585. } else {
  586. $dtype = 'text';
  587. }
  588. } else {
  589. $dtype = 'text';
  590. }
  591. return $dtype;
  592. }
  593. /**
  594. * 表字段的默认值
  595. * @author 小虎哥 by 2018-4-16
  596. */
  597. public function toDefault($fieldtype, $dfvalue = '')
  598. {
  599. if (preg_match('/^(enum|set)/i', $fieldtype)) {
  600. $str = preg_replace('/^(enum|set)\((.*)\)/i', '$2', $fieldtype);
  601. $str = str_replace("'", "", $str);
  602. } else {
  603. $str = $dfvalue;
  604. }
  605. $str = ("" != $str) ? $str : '';
  606. return $str;
  607. }
  608. /**
  609. * 处理栏目自定义字段的值
  610. * @author 小虎哥 by 2018-4-16
  611. */
  612. public function handleAddonField($channel_id, $dataExt)
  613. {
  614. $nowDataExt = array();
  615. if (!empty($dataExt) && !empty($channel_id)) {
  616. $fieldTypeList = model('Channelfield')->getListByWhere(array('channel_id'=>$channel_id), 'name,dtype', 'name');
  617. foreach ($dataExt as $key => $val) {
  618. $key = preg_replace('/^(.*)(_eyou_is_remote|_eyou_remote|_eyou_local)$/', '$1', $key);
  619. $dtype = !empty($fieldTypeList[$key]) ? $fieldTypeList[$key]['dtype'] : '';
  620. switch ($dtype) {
  621. case 'checkbox':
  622. {
  623. $val = implode(',', $val);
  624. break;
  625. }
  626. case 'switch':
  627. case 'int':
  628. {
  629. $val = intval($val);
  630. break;
  631. }
  632. case 'img':
  633. {
  634. $is_remote = !empty($dataExt[$key.'_eyou_is_remote']) ? $dataExt[$key.'_eyou_is_remote'] : 0;
  635. if (1 == $is_remote) {
  636. $val = $dataExt[$key.'_eyou_remote'];
  637. } else {
  638. $val = $dataExt[$key.'_eyou_local'];
  639. }
  640. break;
  641. }
  642. case 'imgs':
  643. {
  644. $imgData = [];
  645. $imgsIntroArr = !empty($dataExt[$key.'_eyou_intro']) ? $dataExt[$key.'_eyou_intro'] : [];
  646. foreach ($val as $k2 => $v2) {
  647. $v2 = trim($v2);
  648. if (!empty($v2)) {
  649. $imgData[] = [
  650. 'image_url' => $v2,
  651. 'intro' => !empty($imgsIntroArr[$k2]) ? $imgsIntroArr[$k2] : '',
  652. ];
  653. }
  654. }
  655. $val = serialize($imgData);
  656. break;
  657. }
  658. case 'files':
  659. {
  660. foreach ($val as $k2 => $v2) {
  661. if (empty($v2)) {
  662. unset($val[$k2]);
  663. continue;
  664. }
  665. $val[$k2] = trim($v2);
  666. }
  667. $val = implode(',', $val);
  668. break;
  669. }
  670. case 'datetime':
  671. {
  672. $val = !empty($val) ? strtotime($val) : getTime();
  673. break;
  674. }
  675. case 'decimal':
  676. {
  677. $moneyArr = explode('.', $val);
  678. $money1 = !empty($moneyArr[0]) ? intval($moneyArr[0]) : '0';
  679. $money2 = !empty($moneyArr[1]) ? intval(msubstr($moneyArr[1], 0, 2)) : '00';
  680. $val = $money1.'.'.$money2;
  681. break;
  682. }
  683. default:
  684. {
  685. if (is_array($val)) {
  686. $new_val = [];
  687. foreach ($val as $_k => $_v) {
  688. $_v = trim($_v);
  689. if (!empty($_v)) {
  690. $new_val[] = $_v;
  691. }
  692. }
  693. $val = $new_val;
  694. } else {
  695. $val = trim($val);
  696. }
  697. break;
  698. }
  699. }
  700. $nowDataExt[$key] = $val;
  701. }
  702. }
  703. return $nowDataExt;
  704. }
  705. }