Config.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\controller;
  15. use library\Controller;
  16. use think\exception\HttpResponseException;
  17. use think\facade\Request;
  18. /**
  19. * 系统参数配置
  20. * Class Config
  21. * @package app\admin\controller
  22. */
  23. class Config extends Controller
  24. {
  25. /**
  26. * 默认数据模型
  27. * @var string
  28. */
  29. protected $table = 'SystemConfig';
  30. /**
  31. * 阿里云OSS上传点
  32. * @var array
  33. */
  34. protected $ossPoints = [
  35. 'oss-cn-hangzhou.aliyuncs.com' => '华东 1 杭州',
  36. 'oss-cn-shanghai.aliyuncs.com' => '华东 2 上海',
  37. 'oss-cn-qingdao.aliyuncs.com' => '华北 1 青岛',
  38. 'oss-cn-beijing.aliyuncs.com' => '华北 2 北京',
  39. 'oss-cn-zhangjiakou.aliyuncs.com' => '华北 3 张家口',
  40. 'oss-cn-huhehaote.aliyuncs.com' => '华北 5 呼和浩特',
  41. 'oss-cn-shenzhen.aliyuncs.com' => '华南 1 深圳',
  42. 'oss-cn-hongkong.aliyuncs.com' => '香港 1',
  43. 'oss-us-west-1.aliyuncs.com' => '美国西部 1 硅谷',
  44. 'oss-us-east-1.aliyuncs.com' => '美国东部 1 弗吉尼亚',
  45. 'oss-ap-southeast-1.aliyuncs.com' => '亚太东南 1 新加坡',
  46. 'oss-ap-southeast-2.aliyuncs.com' => '亚太东南 2 悉尼',
  47. 'oss-ap-southeast-3.aliyuncs.com' => '亚太东南 3 吉隆坡',
  48. 'oss-ap-southeast-5.aliyuncs.com' => '亚太东南 5 雅加达',
  49. 'oss-ap-northeast-1.aliyuncs.com' => '亚太东北 1 日本',
  50. 'oss-ap-south-1.aliyuncs.com' => '亚太南部 1 孟买',
  51. 'oss-eu-central-1.aliyuncs.com' => '欧洲中部 1 法兰克福',
  52. 'oss-eu-west-1.aliyuncs.com' => '英国 1 伦敦',
  53. 'oss-me-east-1.aliyuncs.com' => '中东东部 1 迪拜',
  54. ];
  55. /**
  56. * 系统参数配置
  57. * @auth true
  58. * @menu true
  59. */
  60. public function info()
  61. {
  62. $this->title = '系统参数配置';
  63. $this->fetch();
  64. }
  65. /**
  66. * 修改系统能数配置
  67. * @auth true
  68. * @throws \think\Exception
  69. * @throws \think\exception\PDOException
  70. */
  71. public function config()
  72. {
  73. $this->applyCsrfToken();
  74. if (Request::isGet()) {
  75. $this->fetch('system-config');
  76. }
  77. foreach (Request::post() as $key => $value) {
  78. sysconf($key, $value);
  79. }
  80. $this->success('系统参数配置成功!');
  81. }
  82. /**
  83. * 文件存储引擎
  84. * @auth true
  85. * @throws \think\Exception
  86. * @throws \think\exception\PDOException
  87. */
  88. public function file()
  89. {
  90. $this->applyCsrfToken();
  91. if (Request::isGet()) {
  92. $this->type = input('type', 'local');
  93. $this->fetch("storage-{$this->type}");
  94. }
  95. $post = Request::post();
  96. if (isset($post['storage_type']) && isset($post['storage_local_exts'])) {
  97. $exts = array_unique(explode(',', strtolower($post['storage_local_exts'])));
  98. sort($exts);
  99. if (in_array('php', $exts)) $this->error('禁止上传可执行文件到本地服务器!');
  100. $post['storage_local_exts'] = join(',', $exts);
  101. }
  102. foreach ($post as $key => $value) sysconf($key, $value);
  103. if (isset($post['storage_type']) && $post['storage_type'] === 'oss') {
  104. try {
  105. $local = sysconf('storage_oss_domain');
  106. $bucket = $this->request->post('storage_oss_bucket');
  107. $domain = \library\File::instance('oss')->setBucket($bucket);
  108. if (empty($local) || stripos($local, '.aliyuncs.com') !== false) {
  109. sysconf('storage_oss_domain', $domain);
  110. }
  111. $this->success('阿里云OSS存储配置成功!');
  112. } catch (HttpResponseException $exception) {
  113. throw $exception;
  114. } catch (\Exception $e) {
  115. $this->error("阿里云OSS存储配置失效,{$e->getMessage()}");
  116. }
  117. } else {
  118. $this->success('文件存储配置成功!');
  119. }
  120. }
  121. }