Config.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2021 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://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. use think\admin\service\AdminService;
  17. use think\admin\service\ModuleService;
  18. use think\admin\service\SystemService;
  19. use think\admin\storage\AliossStorage;
  20. use think\admin\storage\QiniuStorage;
  21. use think\admin\storage\TxcosStorage;
  22. /**
  23. * 系统参数配置
  24. * Class Config
  25. * @package app\admin\controller
  26. */
  27. class Config extends Controller
  28. {
  29. /**
  30. * 系统参数配置
  31. * @auth true
  32. * @menu true
  33. */
  34. public function index()
  35. {
  36. $this->title = '系统参数配置';
  37. $this->isSuper = AdminService::instance()->isSuper();
  38. $this->version = ModuleService::instance()->getVersion();
  39. $this->fetch();
  40. }
  41. /**
  42. * 修改系统参数
  43. * @auth true
  44. * @throws \think\db\exception\DataNotFoundException
  45. * @throws \think\db\exception\DbException
  46. * @throws \think\db\exception\ModelNotFoundException
  47. */
  48. public function system()
  49. {
  50. $this->_applyFormToken();
  51. if ($this->request->isGet()) {
  52. $this->title = '修改系统参数';
  53. $this->fetch();
  54. } else {
  55. if ($xpath = $this->request->post('xpath')) {
  56. if (!preg_match('/^[a-zA-Z_][a-zA-Z0-9_]*$/', $xpath)) {
  57. $this->error('后台入口名称需要是由英文字母开头!');
  58. }
  59. if ($xpath !== 'admin' && file_exists($this->app->getBasePath() . $xpath)) {
  60. $this->error("后台入口名称{$xpath}已经存在应用!");
  61. }
  62. SystemService::instance()->setRuntime(null, [$xpath => 'admin']);
  63. }
  64. foreach ($this->request->post() as $name => $value) sysconf($name, $value);
  65. sysoplog('系统配置管理', "修改系统参数成功");
  66. $this->success('修改系统参数成功!', sysuri("{$xpath}/index/index") . '#' . url("{$xpath}/config/index"));
  67. }
  68. }
  69. /**
  70. * 修改文件存储
  71. * @auth true
  72. * @throws \think\db\exception\DataNotFoundException
  73. * @throws \think\db\exception\DbException
  74. * @throws \think\db\exception\ModelNotFoundException
  75. */
  76. public function storage()
  77. {
  78. $this->_applyFormToken();
  79. if ($this->request->isGet()) {
  80. $this->type = input('type', 'local');
  81. if ($this->type === 'alioss') $this->points = AliossStorage::region();
  82. elseif ($this->type === 'qiniu') $this->points = QiniuStorage::region();
  83. elseif ($this->type === 'txcos') $this->points = TxcosStorage::region();
  84. $this->fetch("storage-{$this->type}");
  85. } else {
  86. $post = $this->request->post();
  87. if (!empty($post['storage']['allow_exts'])) {
  88. $exts = array_unique(explode(',', strtolower($post['storage']['allow_exts'])));
  89. if (sort($exts) && in_array('php', $exts)) $this->error('禁止上传可执行的文件!');
  90. $post['storage']['allow_exts'] = join(',', $exts);
  91. }
  92. foreach ($post as $name => $value) sysconf($name, $value);
  93. sysoplog('系统配置管理', "修改系统存储参数");
  94. $this->success('修改文件存储成功!');
  95. }
  96. }
  97. }