mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-11 15:10:54 +00:00
52 lines
1.2 KiB
PHP
52 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use App\Models\NodeAuth;
|
|
use App\Models\SsNode;
|
|
use Closure;
|
|
use Response;
|
|
|
|
class WebApi {
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param $request
|
|
* @param Closure $next
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle($request, Closure $next) {
|
|
$id = $request->id;
|
|
$key = $request->header('key');
|
|
$time = $request->header('timestamp');
|
|
|
|
if($key === null){// 未提供 key
|
|
return $this->returnData('Your key is null!');
|
|
}elseif($id === null){// 未提供 node
|
|
return $this->returnData('Your Node Id is null!');
|
|
}
|
|
|
|
$node = SsNode::query()->whereId($id)->first();
|
|
if(!$node){// node不存在
|
|
return $this->returnData('Unknown Node!');
|
|
}
|
|
|
|
$nodeAuth = NodeAuth::query()->whereNodeId($id)->first();
|
|
if(!$nodeAuth || $key != $nodeAuth->key){// key不存在/不匹配
|
|
return $this->returnData('Token is invalid!');
|
|
}
|
|
|
|
if(abs($time - time()) >= 300){// 时差超过5分钟
|
|
return $this->returnData('Please resynchronize the server time!');
|
|
}
|
|
|
|
return $next($request);
|
|
}
|
|
|
|
// 返回数据
|
|
public function returnData($message) {
|
|
return Response::json(['status' => 'fail', 'code' => 404, 'data' => '', 'message' => $message]);
|
|
}
|
|
}
|