123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkAdmin
- // +----------------------------------------------------------------------
- // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
- // +----------------------------------------------------------------------
- // | 官方网站: http://demo.thinkadmin.top
- // +----------------------------------------------------------------------
- // | 开源协议 ( https://mit-license.org )
- // +----------------------------------------------------------------------
- // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
- // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
- // +----------------------------------------------------------------------
- namespace app\admin\controller;
- use library\Controller;
- use think\Db;
- use think\exception\HttpResponseException;
- use think\facade\Request;
- /**
- * 系统参数配置
- * Class Config
- * @package app\admin\controller
- */
- class Config extends Controller
- {
- /**
- * 默认数据模型
- * @var string
- */
- protected $table = 'Config';
- /**
- * 阿里云OSS上传点
- * @var array
- */
- protected $ossPoints = [
- 'oss-cn-hangzhou.aliyuncs.com' => '华东 1 杭州',
- 'oss-cn-shanghai.aliyuncs.com' => '华东 2 上海',
- 'oss-cn-qingdao.aliyuncs.com' => '华北 1 青岛',
- 'oss-cn-beijing.aliyuncs.com' => '华北 2 北京',
- 'oss-cn-zhangjiakou.aliyuncs.com' => '华北 3 张家口',
- 'oss-cn-huhehaote.aliyuncs.com' => '华北 5 呼和浩特',
- 'oss-cn-shenzhen.aliyuncs.com' => '华南 1 深圳',
- 'oss-cn-hongkong.aliyuncs.com' => '香港 1',
- 'oss-us-west-1.aliyuncs.com' => '美国西部 1 硅谷',
- 'oss-us-east-1.aliyuncs.com' => '美国东部 1 弗吉尼亚',
- 'oss-ap-southeast-1.aliyuncs.com' => '亚太东南 1 新加坡',
- 'oss-ap-southeast-2.aliyuncs.com' => '亚太东南 2 悉尼',
- 'oss-ap-southeast-3.aliyuncs.com' => '亚太东南 3 吉隆坡',
- 'oss-ap-southeast-5.aliyuncs.com' => '亚太东南 5 雅加达',
- 'oss-ap-northeast-1.aliyuncs.com' => '亚太东北 1 日本',
- 'oss-ap-south-1.aliyuncs.com' => '亚太南部 1 孟买',
- 'oss-eu-central-1.aliyuncs.com' => '欧洲中部 1 法兰克福',
- 'oss-eu-west-1.aliyuncs.com' => '英国 1 伦敦',
- 'oss-me-east-1.aliyuncs.com' => '中东东部 1 迪拜',
- ];
- /**
- * 系统参数配置
- * @auth true
- * @menu true
- */
- public function info()
- {
- $this->title = '系统参数配置';
- $this->fetch();
- }
- /**
- * 修改系统能数配置
- * @auth true
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function config()
- {
- $this->applyCsrfToken();
- if (Request::isGet()) {
- $this->fetch('system-config');
- }
- $uptype = Db::name('config')->where('name','storage_type')->value('value');
- $post = Request::post();
- if ($uptype!='local'){
- $post['bot_img'] = 'http://'.$_SERVER['SERVER_NAME'].self::crabImage($post['bot_img']);
- }
- $post['integral_share_img'] = $post['logo'];
- unset($post['logo']);
- foreach ($post as $key => $value) {
- sysconf($key, $value);
- }
- $this->success('系统参数配置成功!');
- }
- /**
- * 文件存储引擎
- * @auth true
- * @throws \think\Exception
- * @throws \think\exception\PDOException
- */
- public function file()
- {
- $this->applyCsrfToken();
- if (Request::isGet()) {
- $this->type = input('type', 'local');
- $this->fetch("storage-{$this->type}");
- }
- $post = Request::post();
- if (isset($post['storage_type']) && isset($post['storage_local_exts'])) {
- $exts = array_unique(explode(',', strtolower($post['storage_local_exts'])));
- sort($exts);
- if (in_array('php', $exts)) $this->error('禁止上传可执行文件到本地服务器!');
- $post['storage_local_exts'] = join(',', $exts);
- }
- foreach ($post as $key => $value) sysconf($key, $value);
- if (isset($post['storage_type']) && $post['storage_type'] === 'oss') {
- try {
- $local = sysconf('storage_oss_domain');
- $bucket = $this->request->post('storage_oss_bucket');
- $domain = \library\File::instance('oss')->setBucket($bucket);
- if (empty($local) || stripos($local, '.aliyuncs.com') !== false) {
- sysconf('storage_oss_domain', $domain);
- }
- $this->success('阿里云OSS存储配置成功!');
- } catch (HttpResponseException $exception) {
- throw $exception;
- } catch (\Exception $e) {
- $this->error("阿里云OSS存储配置失效,{$e->getMessage()}");
- }
- } else {
- $this->success('文件存储配置成功!');
- }
- }
- /**
- * PHP将网页上的图片攫取到本地存储
- * @param $imgUrl 图片url地址
- * @param string $saveDir 本地存储路径 默认存储在当前路径
- * @param null $fileName 图片存储到本地的文件名
- * @return mix
- */
- public static function crabImage($imgUrl, $saveDir='./upload/', $fileName=null){
- if(empty($imgUrl)){
- return false;
- }
- //获取图片信息大小
- $imgSize = getImageSize($imgUrl);
- if(!in_array($imgSize['mime'],array('image/jpg', 'image/gif', 'image/png', 'image/jpeg'),true)){
- return false;
- }
- //获取后缀名
- $_mime = explode('/', $imgSize['mime']);
- $_ext = '.'.end($_mime);
- if(empty($fileName)){ //生成唯一的文件名
- $fileName = uniqid(time(),true).$_ext;
- }
- //开始攫取
- ob_start();
- readfile($imgUrl);
- $imgInfo = ob_get_contents();
- ob_end_clean();
- if(!file_exists($saveDir)){
- mkdir($saveDir,0777,true);
- }
- $fp = fopen($saveDir.$fileName, 'a');
- $imgLen = strlen($imgInfo); //计算图片源码大小
- $_inx = 2048; //每次写入2k
- $_time = ceil($imgLen/$_inx);
- for($i=0; $i<$_time; $i++){
- fwrite($fp,substr($imgInfo, $i*$_inx, $_inx));
- }
- fclose($fp);
- return substr($saveDir.$fileName, 1);
- //return array('file_name'=>$fileName,'save_path'=>$saveDir.$fileName);
- }
- }
|