控制台应用,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 5.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. // | 表单处理类
  13. // +----------------------------------------------------------------------
  14. namespace addons\formguide\library;
  15. use addons\formguide\model\ModelField;
  16. use think\Db;
  17. use think\facade\Validate;
  18. class Service
  19. {
  20. //查询解析模型数据用以构造from表单
  21. public static function getFieldList($modelId, $id = null)
  22. {
  23. $list = ModelField::where('modelid', $modelId)->where('status', 1)->order('listorder DESC,id DESC')->select();
  24. if (!empty($list)) {
  25. //编辑信息时查询出已有信息
  26. if ($id) {
  27. $modelInfo = Db::name('Model')->where('id', $modelId)->field('tablename,type')->find();
  28. $dataInfo = Db::name($modelInfo['tablename'])->where('id', $id)->find();
  29. }
  30. foreach ($list as $key => &$value) {
  31. //内部字段不显示
  32. if ($value['iscore']) {
  33. unset($list[$key]);
  34. }
  35. //核心字段做标记
  36. $value['fieldArr'] = 'modelField';
  37. if (isset($dataInfo[$value['name']])) {
  38. $value['value'] = $dataInfo[$value['name']];
  39. }
  40. //扩展配置
  41. $value['setting'] = unserialize($value['setting']);
  42. $value['options'] = $value['setting']['options'] ?? '';
  43. //在新增时候添加默认值
  44. if (!$id) {
  45. $value['value'] = $value['setting']['value'] ?? '';
  46. }
  47. if ($value['type'] == 'custom') {
  48. if ($value['options'] != '') {
  49. $tpar = explode(".", $value['options'], 2);
  50. $value['options'] = \think\Response::create('admin@custom/' . $tpar[0], 'view')->assign('vo', $value)->getContent();
  51. unset($tpar);
  52. }
  53. } elseif ($value['options'] != '') {
  54. $value['options'] = parse_attr($value['options']);
  55. }
  56. if ($value['type'] == 'checkbox') {
  57. $value['value'] = empty($value['value']) ? [] : explode(',', $value['value']);
  58. }
  59. if ($value['type'] == 'datetime') {
  60. $value['value'] = empty($value['value']) ? date('Y-m-d H:i:s') : date('Y-m-d H:i:s', $value['value']);
  61. }
  62. if ($value['type'] == 'date') {
  63. $value['value'] = empty($value['value']) ? '' : date('Y-m-d', $value['value']);
  64. }
  65. if ($value['type'] == 'Ueditor' || $value['type'] == 'markdown') {
  66. $value['value'] = isset($value['value']) ? htmlspecialchars_decode($value['value']) : '';
  67. }
  68. }
  69. }
  70. return $list;
  71. }
  72. //处理post提交的模型数据
  73. public static function dealModelPostData($modelid, $data)
  74. {
  75. //字段类型
  76. $query = ModelField::where('modelid', $modelid)->where('status', 1);
  77. $filedTypeList = $query->order('listorder DESC, id DESC')->column('name,title,type,ifsystem,ifrequire,pattern,errortips');
  78. foreach ($filedTypeList as $name => $vo) {
  79. if (!isset($data[$name])) {
  80. switch ($vo['type']) {
  81. // 开关
  82. case 'switch':
  83. $data[$name] = 0;
  84. break;
  85. case 'checkbox':
  86. $data[$name] = '';
  87. break;
  88. }
  89. } else {
  90. if (is_array($data[$name])) {
  91. $data[$name] = implode(',', $data[$name]);
  92. }
  93. switch ($vo['type']) {
  94. // 开关
  95. case 'switch':
  96. $data[$name] = 1;
  97. break;
  98. // 日期+时间
  99. case 'datetime':
  100. //if ($vo['ifeditable']) {
  101. $data[$name] = strtotime($data[$name]);
  102. //}
  103. break;
  104. // 日期
  105. case 'date':
  106. $data[$name] = strtotime($data[$name]);
  107. break;
  108. // 编辑器
  109. case 'markdown':
  110. case 'Ueditor':
  111. $data[$name] = htmlspecialchars(stripslashes($data[$name]));
  112. break;
  113. }
  114. }
  115. //数据必填验证
  116. if ($vo['ifrequire'] && (!isset($data[$name]) || $data[$name] == '')) {
  117. throw new \Exception("'" . $vo['title'] . "'必须填写~");
  118. }
  119. //正则校验
  120. if (isset($data[$name]) && $data[$name] && $vo['pattern'] && !Validate::regex($data[$name], $vo['pattern'])) {
  121. throw new \Exception("'" . $vo['title'] . "'" . (!empty($vo['errortips']) ? $vo['errortips'] : '正则校验失败') . "");
  122. }
  123. //数据格式验证
  124. if (!empty($data[$name]) && in_array($vo['type'], ['number']) && !Validate::isNumber($data[$name])) {
  125. throw new \Exception("'" . $vo['title'] . "'格式错误~");
  126. //安全过滤
  127. } else {
  128. }
  129. }
  130. return $data;
  131. }
  132. }