2019-04-04 13:29:33 +08:00

160 lines
5.9 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
namespace app\admin\controller;
use controller\BasicAdmin;
use service\FileService;
use think\Db;
/**
* 插件助手控制器
* Class Plugs
* @package app\admin\controller
* @author Anyon <zoujingli@qq.com>
* @date 2017/02/21
*/
class Plugs extends BasicAdmin
{
/**
* 默认检查用户登录状态
* @var bool
*/
public $checkLogin = false;
/**
* 默认检查节点访问权限
* @var bool
*/
public $checkAuth = false;
/**
* 文件上传
* @return \think\response\View
*/
public function upfile()
{
if (!in_array(($uptype = $this->request->get('uptype')), ['local', 'qiniu', 'oss'])) {
$uptype = sysconf('storage_type');
}
$types = $this->request->get('type', 'jpg,png');
$mode = $this->request->get('mode', 'one');
$this->assign('mimes', FileService::getFileMine($types));
$this->assign('field', $this->request->get('field', 'file'));
return view('', ['mode' => $mode, 'types' => $types, 'uptype' => $uptype]);
}
/**
* 通用文件上传
* @return \think\response\Json
*/
public function upload()
{
$file = $this->request->file('file');
$md5s = str_split($this->request->post('md5'), 16);
$ext = pathinfo($file->getInfo('name'), 4);
$filename = join('/', $md5s) . ".{$ext}";
// 文件上传Token验证
if ($this->request->post('token') !== md5($filename . session_id())) {
return json(['code' => 'ERROR', '文件上传验证失败']);
}
// 文件上传处理
if (($info = $file->move('static' . DS . 'upload' . DS . $md5s[0], $md5s[1], true))) {
if (($site_url = FileService::getFileUrl($filename, 'local'))) {
return json(['data' => ['site_url' => $site_url], 'code' => 'SUCCESS', 'msg' => '文件上传成功']);
}
}
return json(['code' => 'ERROR', '文件上传失败']);
}
/**
* 文件状态检查
*/
public function upstate()
{
$post = $this->request->post();
$filename = join('/', str_split($post['md5'], 16)) . '.' . pathinfo($post['filename'], PATHINFO_EXTENSION);
// 检查文件是否已上传
if (($site_url = FileService::getFileUrl($filename))) {
$this->result(['site_url' => $site_url], 'IS_FOUND');
}
// 需要上传文件,生成上传配置参数
$config = ['uptype' => $post['uptype'], 'file_url' => $filename];
switch (strtolower($post['uptype'])) {
case 'qiniu':
$config['server'] = FileService::getUploadQiniuUrl(true);
$config['token'] = $this->_getQiniuToken($filename);
break;
case 'local':
$config['server'] = FileService::getUploadLocalUrl();
$config['token'] = md5($filename . session_id());
break;
case 'oss':
$time = time() + 3600;
$policyText = [
'expiration' => date('Y-m-d', $time) . 'T' . date('H:i:s', $time) . '.000Z',
'conditions' => [['content-length-range', 0, 1048576000]],
];
$config['policy'] = base64_encode(json_encode($policyText));
$config['server'] = FileService::getUploadOssUrl();
$config['site_url'] = FileService::getBaseUriOss() . $filename;
$config['signature'] = base64_encode(hash_hmac('sha1', $config['policy'], sysconf('storage_oss_secret'), true));
$config['OSSAccessKeyId'] = sysconf('storage_oss_keyid');
}
$this->result($config, 'NOT_FOUND');
}
/**
* 生成七牛文件上传Token
* @param string $key
* @return string
*/
protected function _getQiniuToken($key)
{
$accessKey = sysconf('storage_qiniu_access_key');
$secretKey = sysconf('storage_qiniu_secret_key');
$bucket = sysconf('storage_qiniu_bucket');
$host = sysconf('storage_qiniu_domain');
$protocol = sysconf('storage_qiniu_is_https') ? 'https' : 'http';
$params = [
"scope" => "{$bucket}:{$key}",
"deadline" => 3600 + time(),
"returnBody" => "{\"data\":{\"site_url\":\"{$protocol}://{$host}/$(key)\",\"file_url\":\"$(key)\"}, \"code\": \"SUCCESS\"}",
];
$data = str_replace(['+', '/'], ['-', '_'], base64_encode(json_encode($params)));
return $accessKey . ':' . str_replace(['+', '/'], ['-', '_'], base64_encode(hash_hmac('sha1', $data, $secretKey, true))) . ':' . $data;
}
/**
* 字体图标选择器
* @return \think\response\View
*/
public function icon()
{
$field = $this->request->get('field', 'icon');
return view('', ['field' => $field]);
}
/**
* 区域数据
* @return \think\response\Json
*/
public function region()
{
return json(Db::name('DataRegion')->where('status', '1')->column('code,name'));
}
}