增加文件上传至第三方存储

Signed-off-by: vilson <545522390@qq.com>
This commit is contained in:
vilson 2019-07-13 10:24:30 +08:00
parent e3bc3cfb9c
commit 260a754db7
2 changed files with 50 additions and 8 deletions

View File

@ -3,8 +3,12 @@
namespace app\project\middleware;
use app\common\Model\ProjectNode;
use Closure;
use service\JwtService;
use service\NodeService;
use think\db\exception\DataNotFoundException;
use think\db\exception\ModelNotFoundException;
use think\exception\DbException;
use think\Request;
/**
@ -16,13 +20,15 @@ class Auth
{
/**
* @param Request $request
* @param \Closure $next
* @param Closure $next
* @return mixed
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws DataNotFoundException
* @throws DbException
* @throws ModelNotFoundException
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
public function handle($request, \Closure $next)
public function handle($request, Closure $next)
{
list($module, $controller, $action) = [$request->module(), $request->controller(), $request->action()];
$access = $this->buildAuth($node = NodeService::parseNodeStr("{$module}/{$controller}/{$action}"));
@ -54,6 +60,20 @@ class Auth
if (!empty($access['is_auth']) && !auth($node, 'project')) {
return json(['code' => 403, 'msg' => '无权限操作资源,访问被拒绝']);
}
//第三资源初始化
$storageConfig = config('storage.');
if ($storageConfig) {
foreach ($storageConfig as $key => $config) {
if ($key == 'qiniu' || $key == 'oss') {
foreach ($config as $itemKey => $item) {
sysconf($itemKey, $item);
}
}else{
sysconf($key, $config);
}
}
}
return $next($request);
}
@ -61,9 +81,9 @@ class Auth
* 根据节点获取对应权限配置
* @param string $node 权限节点
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException
* @throws DataNotFoundException
* @throws ModelNotFoundException
* @throws DbException
*/
private function buildAuth($node)
{

22
config/storage.php Normal file
View File

@ -0,0 +1,22 @@
<?php
return [
'storage_type' => 'local', //local:本地qiniu七牛oss阿里云oss
'storage_local_exts' => 'png,jpg,rar,doc,icon,mp4,zip,gif,jpeg,bmp,webp,mp4,m3u8,rmvb,avi,swf,3gp,mkv,flv,txt,docx,pages,epub,pdf,numbers,csv,xls,xlsx,keynote,ppt,pptx,mp3,wav,wma,ogg,aac,flac;', //支持上传的文件格式
// 可用的第三方资源配置
'qiniu' => [ //七牛云
'storage_qiniu_bucket' => 'static',
'storage_qiniu_domain' => 'example.xyz',
'storage_qiniu_access_key' => 'example',
'storage_qiniu_secret_key' => 'example',
'storage_qiniu_is_https' => 'https',//域名前缀
],
'oss' => [ // 阿里云oss
'storage_oss_bucket' => 'vilson-static',
'storage_oss_endpoint' => 'oss-cn-shenzhen.aliyuncs.com',
'storage_oss_domain' => 'example.xyz',
'storage_oss_keyid' => 'example',
'storage_oss_secret' => 'example',
'storage_oss_is_https' => 'https',//域名前缀
],
];