Config.php 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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 think\admin\Controller;
  16. /**
  17. * 系统参数配置
  18. * Class Config
  19. * @package app\admin\controller
  20. */
  21. class Config extends Controller
  22. {
  23. /**
  24. * 绑定数据表
  25. * @var string
  26. */
  27. protected $table = 'SystemConfig';
  28. /**
  29. * 绑定数据表
  30. * @auth true
  31. * @menu true
  32. */
  33. public function index()
  34. {
  35. $this->title = '系统参数配置';
  36. $this->fetch();
  37. }
  38. /**
  39. * 修改系统能数配置
  40. * @auth true
  41. * @throws \think\db\exception\DataNotFoundException
  42. * @throws \think\db\exception\DbException
  43. * @throws \think\db\exception\ModelNotFoundException
  44. */
  45. public function config()
  46. {
  47. $this->_applyFormToken();
  48. if ($this->request->isGet()) {
  49. $this->title = '系统参数配置';
  50. $this->fetch();
  51. }
  52. foreach ($this->request->post() as $key => $value) {
  53. sysconf($key, $value);
  54. }
  55. $this->success('系统参数配置成功!');
  56. }
  57. /**
  58. * 文件存储引擎
  59. * @auth true
  60. * @throws \think\db\exception\DataNotFoundException
  61. * @throws \think\db\exception\DbException
  62. * @throws \think\db\exception\ModelNotFoundException
  63. */
  64. public function storage()
  65. {
  66. $this->_applyFormToken();
  67. if ($this->request->isGet()) {
  68. $this->type = input('type', 'local');
  69. $this->fetch("storage-{$this->type}");
  70. }
  71. $post = $this->request->post();
  72. if (!empty($post['storage']['allow_exts'])) {
  73. $exts = array_unique(explode(',', strtolower($post['storage']['allow_exts'])));
  74. sort($exts);
  75. if (in_array('php', $exts)) $this->error('禁止上传可执行文件到本地服务器!');
  76. $post['storage']['allow_exts'] = join(',', $exts);
  77. }
  78. foreach ($post as $key => $value) sysconf($key, $value);
  79. $this->success('文件存储配置成功!');
  80. }
  81. }