Config.php 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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 getArrayData($data)
  98. {
  99. if (!isset($data['value'])) {
  100. $result = [];
  101. foreach ($data as $index => $datum) {
  102. $result['field'][$index] = $datum['key'];
  103. $result['value'][$index] = $datum['value'];
  104. }
  105. $data = $result;
  106. }
  107. $fieldarr = $valuearr = [];
  108. $field = isset($data['field']) ? $data['field'] : (isset($data['key']) ? $data['key'] : []);
  109. $value = isset($data['value']) ? $data['value'] : [];
  110. foreach ($field as $m => $n) {
  111. if ($n != '') {
  112. $fieldarr[] = $field[$m];
  113. $valuearr[] = $value[$m];
  114. }
  115. }
  116. return $fieldarr ? array_combine($fieldarr, $valuearr) : [];
  117. }
  118. /**
  119. * 将字符串解析成键值数组
  120. * @param string $text
  121. * @return array
  122. */
  123. public static function decode($text, $split = "\r\n")
  124. {
  125. $content = explode($split, $text);
  126. $arr = [];
  127. foreach ($content as $k => $v) {
  128. if (stripos($v, "|") !== false) {
  129. $item = explode('|', $v);
  130. $arr[$item[0]] = $item[1];
  131. }
  132. }
  133. return $arr;
  134. }
  135. /**
  136. * 将键值数组转换为字符串
  137. * @param array $array
  138. * @return string
  139. */
  140. public static function encode($array, $split = "\r\n")
  141. {
  142. $content = '';
  143. if ($array && is_array($array)) {
  144. $arr = [];
  145. foreach ($array as $k => $v) {
  146. $arr[] = "{$k}|{$v}";
  147. }
  148. $content = implode($split, $arr);
  149. }
  150. return $content;
  151. }
  152. /**
  153. * 本地上传配置信息
  154. * @return array
  155. */
  156. public static function upload()
  157. {
  158. $uploadcfg = config('upload');
  159. $uploadurl = request()->module() ? $uploadcfg['uploadurl'] : ($uploadcfg['uploadurl'] === 'ajax/upload' ? 'index/' . $uploadcfg['uploadurl'] : $uploadcfg['uploadurl']);
  160. if (!preg_match("/^((?:[a-z]+:)?\/\/)(.*)/i", $uploadurl) && substr($uploadurl, 0, 1) !== '/') {
  161. $uploadurl = url($uploadurl, '', false);
  162. }
  163. $upload = [
  164. 'cdnurl' => $uploadcfg['cdnurl'],
  165. 'uploadurl' => $uploadurl,
  166. 'bucket' => 'local',
  167. 'maxsize' => $uploadcfg['maxsize'],
  168. 'mimetype' => $uploadcfg['mimetype'],
  169. 'chunking' => $uploadcfg['chunking'],
  170. 'chunksize' => $uploadcfg['chunksize'],
  171. 'savekey' => $uploadcfg['savekey'],
  172. 'multipart' => [],
  173. 'multiple' => $uploadcfg['multiple'],
  174. 'storage' => 'local'
  175. ];
  176. return $upload;
  177. }
  178. /**
  179. * 刷新配置文件
  180. */
  181. public static function refreshFile()
  182. {
  183. //如果没有配置权限无法进行修改
  184. if (!\app\admin\library\Auth::instance()->check('general/config/edit')) {
  185. return false;
  186. }
  187. $config = [];
  188. $configList = self::all();
  189. foreach ($configList as $k => $v) {
  190. $value = $v->toArray();
  191. if (in_array($value['type'], ['selects', 'checkbox', 'images', 'files'])) {
  192. $value['value'] = explode(',', $value['value']);
  193. }
  194. if ($value['type'] == 'array') {
  195. $value['value'] = (array)json_decode($value['value'], true);
  196. }
  197. $config[$value['name']] = $value['value'];
  198. }
  199. file_put_contents(
  200. CONF_PATH . 'extra' . DS . 'site.php',
  201. '<?php' . "\n\nreturn " . var_export_short($config) . ";\n"
  202. );
  203. return true;
  204. }
  205. }