diff --git a/app/middleware/ApiAuth.php b/app/middleware/ApiAuth.php index 7764077..9c317b8 100644 --- a/app/middleware/ApiAuth.php +++ b/app/middleware/ApiAuth.php @@ -12,30 +12,33 @@ class ApiAuth { /** * 获取接口基本配置参数,校验接口Hash是否合法,校验APP_ID是否合法等 - * @param \think\facade\Request $request + * @param $request * @param \Closure $next * @return mixed|\think\response\Json + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException * @author zhaoxiang */ public function handle($request, \Closure $next) { $header = config('apiadmin.CROSS_DOMAIN'); - $apiHash = substr($request->path(), 4); + $apiHash = substr($request->pathinfo(), 4); if ($apiHash) { $cached = Cache::has('ApiInfo:' . $apiHash); if ($cached) { $apiInfo = Cache::get('ApiInfo:' . $apiHash); } else { - $apiInfo = AdminList::get(['hash' => $apiHash, 'hash_type' => 2]); + $apiInfo = (new AdminList())->where('hash', $apiHash)->where('hash_type', 2)->find(); if ($apiInfo) { $apiInfo = $apiInfo->toArray(); - Cache::rm('ApiInfo:' . $apiInfo['api_class']); + Cache::delete('ApiInfo:' . $apiInfo['api_class']); Cache::set('ApiInfo:' . $apiHash, $apiInfo); } else { - $apiInfo = AdminList::get(['api_class' => $apiHash, 'hash_type' => 1]); + $apiInfo = (new AdminList())->where('api_class', $apiHash)->where('hash_type', 1)->find(); if ($apiInfo) { $apiInfo = $apiInfo->toArray(); - Cache::rm('ApiInfo:' . $apiInfo['hash']); + Cache::delete('ApiInfo:' . $apiInfo['hash']); Cache::set('ApiInfo:' . $apiHash, $apiInfo); } else { return json([ @@ -84,13 +87,16 @@ class ApiAuth { /** * 简易鉴权,更具APP_SECRET获取应用信息 * @param $accessToken - * @return bool|mixed + * @return array|false|mixed|object|\think\App + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException * @author zhaoxiang */ private function doEasyCheck($accessToken) { $appInfo = cache('AccessToken:Easy:' . $accessToken); if (!$appInfo) { - $appInfo = AdminApp::get(['app_secret' => $accessToken]); + $appInfo = (new AdminApp())->where('app_secret', $accessToken)->find(); if (!$appInfo) { return false; } else { diff --git a/app/middleware/ApiLog.php b/app/middleware/ApiLog.php index 10d2088..1ddc1d1 100644 --- a/app/middleware/ApiLog.php +++ b/app/middleware/ApiLog.php @@ -8,9 +8,9 @@ use app\util\ApiLogTool; class ApiLog { /** - * @param \think\facade\Request $request + * @param $request * @param \Closure $next - * @return mixed|\think\response\Json + * @return mixed * @author zhaoxiang */ public function handle($request, \Closure $next) { diff --git a/app/middleware/ApiPermission.php b/app/middleware/ApiPermission.php index 6c80dbd..7f31d5d 100644 --- a/app/middleware/ApiPermission.php +++ b/app/middleware/ApiPermission.php @@ -9,7 +9,7 @@ class ApiPermission { /** * 校验当前App是否有请求当前接口的权限 - * @param \think\facade\Request $request + * @param $request * @param \Closure $next * @return mixed|\think\response\Json * @author zhaoxiang diff --git a/app/middleware/RequestFilter.php b/app/middleware/RequestFilter.php index d24a872..bf40267 100644 --- a/app/middleware/RequestFilter.php +++ b/app/middleware/RequestFilter.php @@ -13,9 +13,12 @@ class RequestFilter { /** * 接口请求字段过滤【只验证数据的合法性,不再过滤数据】 - * @param \think\facade\Request $request + * @param $request * @param \Closure $next * @return mixed|\think\response\Json + * @throws \think\db\exception\DataNotFoundException + * @throws \think\db\exception\DbException + * @throws \think\db\exception\ModelNotFoundException * @author zhaoxiang */ public function handle($request, \Closure $next) { @@ -26,7 +29,7 @@ class RequestFilter { if ($has) { $newRule = cache('RequestFields:NewRule:' . $apiInfo['hash']); } else { - $rule = AdminFields::all(['hash' => $apiInfo['hash'], 'type' => 0]); + $rule = (new AdminFields())->where('hash', $apiInfo['hash'])->where('type', 0)->select(); $newRule = $this->buildValidateRule($rule); cache('RequestFields:NewRule:' . $apiInfo['hash'], $newRule); }