mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
modified 修改AccessToken传递方式,支持Post、Get、Header、PathInfo四种方式传递,优先级为Header>Post>Get>PathInfo
This commit is contained in:
parent
bc31550663
commit
5ea9234184
@ -23,7 +23,15 @@ class ApiAuth {
|
|||||||
*/
|
*/
|
||||||
public function handle($request, \Closure $next) {
|
public function handle($request, \Closure $next) {
|
||||||
$header = config('apiadmin.CROSS_DOMAIN');
|
$header = config('apiadmin.CROSS_DOMAIN');
|
||||||
$apiHash = substr($request->pathinfo(), 4);
|
|
||||||
|
$pathParam = [];
|
||||||
|
$pathArr = explode('/', $request->pathinfo());
|
||||||
|
for ($index = 0; $index < count($pathArr); $index += 2) {
|
||||||
|
if (isset($pathArr[$index + 1])) {
|
||||||
|
$pathParam[$pathArr[$index]] = $pathArr[$index + 1];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$apiHash = $pathParam['api'];
|
||||||
|
|
||||||
if ($apiHash) {
|
if ($apiHash) {
|
||||||
$cached = Cache::has('ApiInfo:' . $apiHash);
|
$cached = Cache::has('ApiInfo:' . $apiHash);
|
||||||
@ -53,12 +61,13 @@ class ApiAuth {
|
|||||||
|
|
||||||
$accessToken = $request->header('Access-Token', '');
|
$accessToken = $request->header('Access-Token', '');
|
||||||
if (!$accessToken) {
|
if (!$accessToken) {
|
||||||
if ($apiInfo['method'] == 2) {
|
$accessToken = $request->post('Access-Token', '');
|
||||||
$accessToken = $request->get('Access-Token', '');
|
}
|
||||||
}
|
if (!$accessToken) {
|
||||||
if ($apiInfo['method'] == 1) {
|
$accessToken = $request->get('Access-Token', '');
|
||||||
$accessToken = $request->post('Access-Token', '');
|
}
|
||||||
}
|
if (!$accessToken && !empty($pathParam['Access-Token'])) {
|
||||||
|
$accessToken = $pathParam['Access-Token'];
|
||||||
}
|
}
|
||||||
if (!$accessToken) {
|
if (!$accessToken) {
|
||||||
return json([
|
return json([
|
||||||
|
Loading…
x
Reference in New Issue
Block a user