Config.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. /**
  5. * 配置模型
  6. */
  7. class Config extends Model
  8. {
  9. // 表名,不含前缀
  10. protected $name = 'config';
  11. // 自动写入时间戳字段
  12. protected $autoWriteTimestamp = false;
  13. // 定义时间戳字段名
  14. protected $createTime = false;
  15. protected $updateTime = false;
  16. // 追加属性
  17. protected $append = [
  18. 'extend_html'
  19. ];
  20. protected $type = [
  21. 'setting' => 'json',
  22. ];
  23. /**
  24. * 读取配置类型
  25. * @return array
  26. */
  27. public static function getTypeList()
  28. {
  29. $typeList = [
  30. 'string' => __('String'),
  31. 'text' => __('Text'),
  32. 'editor' => __('Editor'),
  33. 'number' => __('Number'),
  34. 'date' => __('Date'),
  35. 'time' => __('Time'),
  36. 'datetime' => __('Datetime'),
  37. 'datetimerange' => __('Datetimerange'),
  38. 'select' => __('Select'),
  39. 'selects' => __('Selects'),
  40. 'image' => __('Image'),
  41. 'images' => __('Images'),
  42. 'file' => __('File'),
  43. 'files' => __('Files'),
  44. 'switch' => __('Switch'),
  45. 'checkbox' => __('Checkbox'),
  46. 'radio' => __('Radio'),
  47. 'city' => __('City'),
  48. 'selectpage' => __('Selectpage'),
  49. 'selectpages' => __('Selectpages'),
  50. 'array' => __('Array'),
  51. 'custom' => __('Custom'),
  52. ];
  53. return $typeList;
  54. }
  55. public static function getRegexList()
  56. {
  57. $regexList = [
  58. 'required' => '必选',
  59. 'digits' => '数字',
  60. 'letters' => '字母',
  61. 'date' => '日期',
  62. 'time' => '时间',
  63. 'email' => '邮箱',
  64. 'url' => '网址',
  65. 'qq' => 'QQ号',
  66. 'IDcard' => '身份证',
  67. 'tel' => '座机电话',
  68. 'mobile' => '手机号',
  69. 'zipcode' => '邮编',
  70. 'chinese' => '中文',
  71. 'username' => '用户名',
  72. 'password' => '密码'
  73. ];
  74. return $regexList;
  75. }
  76. public function getExtendHtmlAttr($value, $data)
  77. {
  78. $result = preg_replace_callback("/\{([a-zA-Z]+)\}/", function ($matches) use ($data) {
  79. if (isset($data[$matches[1]])) {
  80. return $data[$matches[1]];
  81. }
  82. }, $data['extend']);
  83. return $result;
  84. }
  85. /**
  86. * 读取分类分组列表
  87. * @return array
  88. */
  89. public static function getGroupList()
  90. {
  91. $groupList = config('site.configgroup');
  92. foreach ($groupList as $k => &$v) {
  93. $v = __($v);
  94. }
  95. return $groupList;
  96. }
  97. public static function newgetGroupList()
  98. {
  99. $groupList = array (
  100. 'currency' => '货币比例配置',
  101. 'other' => '其他配置',
  102. 'invite' => '邀请配置',
  103. // 'androidversion' => '安卓版本更新',
  104. // 'iosversion' => 'ios版本更新',
  105. // 'indexpipei' => '首页匹配',
  106. 'takecash' => '提现',
  107. // 'kaiguan' => '开关',
  108. );
  109. foreach ($groupList as $k => &$v) {
  110. $v = __($v);
  111. }
  112. return $groupList;
  113. }
  114. public static function getArrayData($data)
  115. {
  116. if (!isset($data['value'])) {
  117. $result = [];
  118. foreach ($data as $index => $datum) {
  119. $result['field'][$index] = $datum['key'];
  120. $result['value'][$index] = $datum['value'];
  121. }
  122. $data = $result;
  123. }
  124. $fieldarr = $valuearr = [];
  125. $field = isset($data['field']) ? $data['field'] : (isset($data['key']) ? $data['key'] : []);
  126. $value = isset($data['value']) ? $data['value'] : [];
  127. foreach ($field as $m => $n) {
  128. if ($n != '') {
  129. $fieldarr[] = $field[$m];
  130. $valuearr[] = $value[$m];
  131. }
  132. }
  133. return $fieldarr ? array_combine($fieldarr, $valuearr) : [];
  134. }
  135. /**
  136. * 将字符串解析成键值数组
  137. * @param string $text
  138. * @return array
  139. */
  140. public static function decode($text, $split = "\r\n")
  141. {
  142. $content = explode($split, $text);
  143. $arr = [];
  144. foreach ($content as $k => $v) {
  145. if (stripos($v, "|") !== false) {
  146. $item = explode('|', $v);
  147. $arr[$item[0]] = $item[1];
  148. }
  149. }
  150. return $arr;
  151. }
  152. /**
  153. * 将键值数组转换为字符串
  154. * @param array $array
  155. * @return string
  156. */
  157. public static function encode($array, $split = "\r\n")
  158. {
  159. $content = '';
  160. if ($array && is_array($array)) {
  161. $arr = [];
  162. foreach ($array as $k => $v) {
  163. $arr[] = "{$k}|{$v}";
  164. }
  165. $content = implode($split, $arr);
  166. }
  167. return $content;
  168. }
  169. /**
  170. * 本地上传配置信息
  171. * @return array
  172. */
  173. public static function upload()
  174. {
  175. $uploadcfg = config('upload');
  176. $uploadurl = request()->module() ? $uploadcfg['uploadurl'] : ($uploadcfg['uploadurl'] === 'ajax/upload' ? 'index/' . $uploadcfg['uploadurl'] : $uploadcfg['uploadurl']);
  177. if (!preg_match("/^((?:[a-z]+:)?\/\/)(.*)/i", $uploadurl) && substr($uploadurl, 0, 1) !== '/') {
  178. $uploadurl = url($uploadurl, '', false);
  179. }
  180. $upload = [
  181. 'cdnurl' => $uploadcfg['cdnurl'],
  182. 'uploadurl' => $uploadurl,
  183. 'bucket' => 'local',
  184. 'maxsize' => $uploadcfg['maxsize'],
  185. 'mimetype' => $uploadcfg['mimetype'],
  186. 'chunking' => $uploadcfg['chunking'],
  187. 'chunksize' => $uploadcfg['chunksize'],
  188. 'multipart' => [],
  189. 'multiple' => $uploadcfg['multiple'],
  190. 'storage' => 'local'
  191. ];
  192. return $upload;
  193. }
  194. }