diff --git a/application/project/middleware/Auth.php b/application/project/middleware/Auth.php index 0cc0511..2eb0bf4 100644 --- a/application/project/middleware/Auth.php +++ b/application/project/middleware/Auth.php @@ -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) { diff --git a/config/storage.php b/config/storage.php new file mode 100644 index 0000000..4a53295 --- /dev/null +++ b/config/storage.php @@ -0,0 +1,22 @@ + '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',//域名前缀 + ], +];