变基:合并最新分支lxq
This commit is contained in:
parent
577cd4138d
commit
223ac01453
@ -132,7 +132,6 @@
|
|||||||
height: 500
|
height: 500
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
if (area_id != 0) {
|
if (area_id != 0) {
|
||||||
street(area_id)
|
street(area_id)
|
||||||
}
|
}
|
||||||
|
@ -80,10 +80,10 @@ abstract class BaseController
|
|||||||
protected function initialize()
|
protected function initialize()
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
||||||
//每页显示数据量
|
//每页显示数据量
|
||||||
$this->pageSize = Request::param('page_size', \think\facade\Config::get('app.page_size'));
|
$this->pageSize = Request::param('page_size', \think\facade\Config::get('app.page_size'));
|
||||||
|
|
||||||
|
<<<<<<< HEAD
|
||||||
// 暂时去除 -----------------------------------------------------
|
// 暂时去除 -----------------------------------------------------
|
||||||
// $token = Request::header('x-Token');
|
// $token = Request::header('x-Token');
|
||||||
// if ($token) {
|
// if ($token) {
|
||||||
@ -139,6 +139,58 @@ abstract class BaseController
|
|||||||
// }
|
// }
|
||||||
|
|
||||||
// 暂时去除 -----------------------------------------------------
|
// 暂时去除 -----------------------------------------------------
|
||||||
|
=======
|
||||||
|
$token = Request::header('x-Token');
|
||||||
|
if ($token) {
|
||||||
|
if (strpos($token, 'Bearer') === 0){
|
||||||
|
$token = trim(substr($token, 6));
|
||||||
|
}
|
||||||
|
if (count(explode('.', $token)) != 3) {
|
||||||
|
return json(['code'=>404,'msg'=>'非法请求']);
|
||||||
|
}
|
||||||
|
$config = get_system_config('token');
|
||||||
|
try {
|
||||||
|
JWT::$leeway = 60;//当前时间减去60,把时间留点余地
|
||||||
|
$decoded = JWT::decode($token, new Key('ae47e94a7dcd1fdfacb499b60e361a8d', 'HS256')); //HS256方式,这里要和签发的时候对应
|
||||||
|
$user=Db::connect('shop')->name('nk_user')->where('user_id',$decoded->jti[0])->find();
|
||||||
|
if ($user && $user['n_user_id']!=0){
|
||||||
|
$this->request->uid=$user['n_user_id'];
|
||||||
|
}else{
|
||||||
|
$this->request->uid=$this->addUser($decoded->jti[0],$user);
|
||||||
|
}
|
||||||
|
//return (array)$decoded;
|
||||||
|
// $decoded_array = json_decode(json_encode($decoded),TRUE);
|
||||||
|
// $jwt_data = $decoded_array['data'];
|
||||||
|
|
||||||
|
if (!$user){
|
||||||
|
return json(['code'=>403,'msg'=>'签名错误']);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$user = Db::table('fa_user')->where('id',$user['n_user_id'])->find();
|
||||||
|
//$request->uid = $jwt_data['userid'];
|
||||||
|
// define('JWT_UID', $user['id']);
|
||||||
|
// $response = $next($request);
|
||||||
|
// return $response;
|
||||||
|
//return $next($request);
|
||||||
|
} catch(\Firebase\JWT\SignatureInvalidException $e) { //签名不正确
|
||||||
|
return json(['code'=>403,'msg'=>'签名错误']);
|
||||||
|
}catch(\Firebase\JWT\BeforeValidException $e) { // 签名在某个时间点之后才能用
|
||||||
|
return json(['code'=>401,'msg'=>'token失效']);
|
||||||
|
}catch(\Firebase\JWT\ExpiredException $e) { // token过期
|
||||||
|
return json(['code'=>401,'msg'=>'token已过期']);
|
||||||
|
}catch(Exception $e) { //其他错误
|
||||||
|
return json(['code'=>404,'msg'=>'非法请求']);
|
||||||
|
}catch(\UnexpectedValueException $e) { //其他错误
|
||||||
|
return json(['code'=>404,'msg'=>'非法请求']);
|
||||||
|
} catch(\DomainException $e) { //其他错误
|
||||||
|
return json(['code'=>404,'msg'=>'非法请求']);
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
// define('JWT_UID', '');
|
||||||
|
return json(['code'=>404,'msg'=>'token不能为空']);
|
||||||
|
}
|
||||||
|
|
||||||
|
>>>>>>> 更新接口验证方式,统一改为:$this->request->参数
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -6,5 +6,9 @@ return [
|
|||||||
//验证勾股cms是否完成安装
|
//验证勾股cms是否完成安装
|
||||||
\app\home\middleware\Install::class,
|
\app\home\middleware\Install::class,
|
||||||
\app\api\middleware\AllowOriginMiddleware::class,
|
\app\api\middleware\AllowOriginMiddleware::class,
|
||||||
|
<<<<<<< HEAD
|
||||||
|
|
||||||
|
=======
|
||||||
|
// \app\api\middleware\Auth::class,
|
||||||
|
>>>>>>> 更新接口验证方式,统一改为:$this->request->参数
|
||||||
];
|
];
|
Loading…
x
Reference in New Issue
Block a user