控制台应用,yzncms本身基于tp5.1框架,里面的队列用不了,bug,坑
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.

Service.php 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Yzncms [ 御宅男工作室 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2018 http://yzncms.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 御宅男 <530765310@qq.com>
  10. // +----------------------------------------------------------------------
  11. // +----------------------------------------------------------------------
  12. // | cms处理类
  13. // +----------------------------------------------------------------------
  14. namespace addons\cms\library;
  15. use app\cms\model\ModelField;
  16. use think\Db;
  17. use think\facade\Validate;
  18. class Service
  19. {
  20. private static $ext_table = '_data';
  21. //查询解析模型数据用以构造from表单
  22. public static function getFieldList($modelId, $id = null)
  23. {
  24. $list = ModelField::where('modelid', $modelId)->where('status', 1)->order('listorder DESC,id DESC')->select();
  25. if (!empty($list)) {
  26. //编辑信息时查询出已有信息
  27. if ($id) {
  28. $modelInfo = Db::name('Model')->where('id', $modelId)->field('tablename,type')->find();
  29. $dataInfo = Db::name($modelInfo['tablename'])->where('id', $id)->find();
  30. //查询附表信息
  31. if ($modelInfo['type'] == 2 && !empty($dataInfo)) {
  32. $dataInfoExt = Db::name($modelInfo['tablename'] . self::$ext_table)->where('did', $dataInfo['id'])->find();
  33. }
  34. }
  35. foreach ($list as $key => &$value) {
  36. //内部字段不显示
  37. if ($value['iscore']) {
  38. unset($list[$key]);
  39. }
  40. //核心字段做标记
  41. if ($value['ifsystem']) {
  42. $value['fieldArr'] = 'modelField';
  43. if (isset($dataInfo[$value['name']])) {
  44. $value['value'] = $dataInfo[$value['name']];
  45. }
  46. } else {
  47. $value['fieldArr'] = 'modelFieldExt';
  48. if (isset($dataInfoExt[$value['name']])) {
  49. $value['value'] = $dataInfoExt[$value['name']];
  50. }
  51. }
  52. //扩展配置
  53. $value['setting'] = unserialize($value['setting']);
  54. $value['options'] = $value['setting']['options'] ?? '';
  55. //在新增时候添加默认值
  56. if (!$id) {
  57. $value['value'] = $value['setting']['value'] ?? '';
  58. }
  59. if ($value['type'] == 'custom') {
  60. if ($value['options'] != '') {
  61. $tpar = explode(".", $value['options'], 2);
  62. $value['options'] = \think\Response::create('admin@custom/' . $tpar[0], 'view')->assign('vo', $value)->getContent();
  63. unset($tpar);
  64. }
  65. } elseif ($value['options'] != '') {
  66. $value['options'] = parse_attr($value['options']);
  67. }
  68. /*if ('' != $value['options']) {
  69. $value['options'] = parse_attr($value['options']);
  70. }*/
  71. if ($value['type'] == 'checkbox') {
  72. $value['value'] = empty($value['value']) ? [] : explode(',', $value['value']);
  73. }
  74. if ($value['type'] == 'datetime') {
  75. $value['value'] = empty($value['value']) ? date('Y-m-d H:i:s') : date('Y-m-d H:i:s', $value['value']);
  76. }
  77. if ($value['type'] == 'date') {
  78. $value['value'] = empty($value['value']) ? '' : date('Y-m-d', $value['value']);
  79. }
  80. if ($value['type'] == 'Ueditor' || $value['type'] == 'markdown') {
  81. $value['value'] = isset($value['value']) ? htmlspecialchars_decode($value['value']) : '';
  82. }
  83. }
  84. }
  85. return $list;
  86. }
  87. //处理post提交的模型数据
  88. public static function dealModelPostData($modeId, $data, $dataExt = [], $ignoreField = [])
  89. {
  90. //字段类型
  91. $query = ModelField::where('modelid', $modeId)->where('status', 1);
  92. if ([] != $ignoreField) {
  93. $query = $query->where('name', 'not in', $ignoreField);
  94. }
  95. $filedTypeList = $query->order('listorder DESC, id DESC')->column('name,title,type,ifsystem,ifrequire,pattern,errortips');
  96. foreach ($filedTypeList as $name => $vo) {
  97. $arr = $vo['ifsystem'] ? 'data' : 'dataExt';
  98. if (!isset(${$arr}[$name])) {
  99. switch ($vo['type']) {
  100. // 开关
  101. case 'switch':
  102. ${$arr}[$name] = 0;
  103. break;
  104. case 'checkbox':
  105. ${$arr}[$name] = '';
  106. break;
  107. }
  108. } else {
  109. if (is_array(${$arr}[$name])) {
  110. ${$arr}[$name] = implode(',', ${$arr}[$name]);
  111. }
  112. switch ($vo['type']) {
  113. // 开关
  114. case 'switch':
  115. ${$arr}[$name] = 1;
  116. break;
  117. // 日期+时间
  118. case 'datetime':
  119. //if ($vo['ifeditable']) {
  120. ${$arr}[$name] = strtotime(${$arr}[$name]);
  121. //}
  122. break;
  123. // 日期
  124. case 'date':
  125. ${$arr}[$name] = strtotime(${$arr}[$name]);
  126. break;
  127. // 编辑器
  128. case 'markdown':
  129. case 'Ueditor':
  130. ${$arr}[$name] = htmlspecialchars(stripslashes(${$arr}[$name]));
  131. break;
  132. }
  133. }
  134. //数据必填验证
  135. if ($vo['ifrequire'] && (!isset(${$arr}[$name]) || ${$arr}[$name] == '')) {
  136. throw new \Exception("'" . $vo['title'] . "'必须填写~");
  137. }
  138. //正则校验
  139. if (isset(${$arr}[$name]) && ${$arr}[$name] && $vo['pattern'] && !Validate::regex(${$arr}[$name], $vo['pattern'])) {
  140. throw new \Exception("'" . $vo['title'] . "'" . (!empty($vo['errortips']) ? $vo['errortips'] : '正则校验失败') . "");
  141. }
  142. //数据格式验证
  143. if (!empty(${$arr}[$name]) && in_array($vo['type'], ['number']) && !Validate::isNumber(${$arr}[$name])) {
  144. throw new \Exception("'" . $vo['title'] . "'格式错误~");
  145. //安全过滤
  146. } else {
  147. }
  148. }
  149. return [$data, $dataExt];
  150. }
  151. /**
  152. * 数据处理 前端显示
  153. * @param $fieldinfo
  154. * @param $data
  155. */
  156. public static function dealModelShowData($fieldinfo, $data)
  157. {
  158. $newdata = [];
  159. foreach ($data as $key => $value) {
  160. if (isset($fieldinfo[$key])) {
  161. switch ($fieldinfo[$key]['type']) {
  162. case 'array':
  163. $newdata[$key] = (array) json_decode($value, true);
  164. break;
  165. case 'radio':
  166. case 'select':
  167. if (!empty($value)) {
  168. if (!empty($fieldinfo[$key]['options'])) {
  169. $optionArr = parse_attr($fieldinfo[$key]['options']);
  170. $newdata[$key . '_text'] = isset($optionArr[$value]) ? $optionArr[$value] : $value;
  171. }
  172. }
  173. $newdata[$key] = $value;
  174. break;
  175. case 'selects':
  176. case 'checkbox':
  177. if (!empty($value)) {
  178. if (!empty($fieldinfo[$key]['options'])) {
  179. $optionArr = parse_attr($fieldinfo[$key]['options']);
  180. $valueArr = explode(',', $value);
  181. foreach ($valueArr as $v) {
  182. if (isset($optionArr[$v])) {
  183. $newdata[$key][$v] = $optionArr[$v];
  184. } elseif ($v) {
  185. $newdata[$key][$v] = $v;
  186. }
  187. }
  188. //其他表关联
  189. } else {
  190. $newdata[$key] = [];
  191. }
  192. }
  193. break;
  194. case 'files':
  195. case 'images':
  196. $newdata[$key] = empty($value) ? [] : explode(',', $value);
  197. break;
  198. /*case 'tags':
  199. $newdata[$key] = empty($value) ? [] : explode(',', $value);
  200. break;*/
  201. case 'markdown':
  202. $parser = new \util\Parser;
  203. $newdata[$key] = $parser->makeHtml(htmlspecialchars_decode($value));
  204. break;
  205. case 'Ueditor':
  206. $newdata[$key] = htmlspecialchars_decode($value);
  207. break;
  208. default:
  209. $newdata[$key] = $value;
  210. break;
  211. }
  212. }
  213. if (!isset($newdata[$key])) {
  214. $newdata[$key] = '';
  215. }
  216. }
  217. return $newdata;
  218. }
  219. /**
  220. * 文本处理
  221. */
  222. public static function getAfterText(&$data, &$dataExt)
  223. {
  224. //自动提取摘要,如果有设置自动提取,且description为空,且有内容字段才执行
  225. if (isset($data['get_introduce']) && $data['description'] == '' && (isset($dataExt['content']) || isset($data['content']))) {
  226. $content = isset($dataExt['content']) ? $dataExt['content'] : (isset($data['content']) ? $data['content'] : '');
  227. $data['description'] = mb_substr(str_replace(["\r\n", "\t", '&ldquo;', '&rdquo;', '&nbsp;'], '', strip_tags($content)), 0, 200);
  228. }
  229. //自动提取缩略图
  230. if (isset($data['auto_thumb']) && empty($data['thumb']) && (isset($dataExt['content']) || isset($data['content']))) {
  231. $thumb = isset($dataExt['content'])?\util\GetImgSrc::src($dataExt['content']) : (isset($data['content'])?\util\GetImgSrc::src($data['content']) : false);
  232. $data['thumb'] = $thumb ? $thumb : '';
  233. }
  234. //关键词加链接
  235. $autolinks = get_addon_config('cms')['autolinks'];
  236. if (!empty($autolinks) && isset($dataExt['content'])) {
  237. if (strpos($autolinks, '|')) {
  238. //解析关键词数组
  239. $kwsets = array_filter(preg_split("/(\r|\n|\r\n)/", $autolinks));
  240. foreach ($kwsets as $kwset) {
  241. $kwarray[] = explode('|', $kwset);
  242. }
  243. }
  244. foreach ($kwarray as $i => $row) {
  245. $txt = isset($row[0]) ? trim($row[0]) : '';
  246. $link = isset($row[1]) ? trim($row[1]) : '';
  247. $set = isset($row[2]) ? trim($row[2]) : '';
  248. if ($txt && $link) {
  249. $rel = '';
  250. $open = '_blank';
  251. //处理标记与打开方式
  252. if ($set) {
  253. if (false !== stripos($set, 'e')) {
  254. $rel = ' rel="external nofollow"';
  255. } elseif (false !== stripos($set, 'n')) {
  256. $rel = ' rel="nofollow"';
  257. }
  258. $open = false !== stripos($set, 'b') ? '_self' : $open;
  259. }
  260. $dataExt['content'] = false !== strpos($dataExt['content'], $txt)
  261. //正则排除参数和链接
  262. ? preg_replace('/(?!<[^>]*)' . $txt . '(?![^<]*(>|<\/[a|sc]))/s'
  263. , '<a href="' . $link . '"' . $rel . 'target="' . $open . '" title="' . $txt . '">' . $txt . '</a>', $dataExt['content']) : $dataExt['content'];
  264. }
  265. }
  266. }
  267. unset($data['get_introduce']);
  268. unset($data['auto_thumb']);
  269. }
  270. }