我有一个使用tymon/jwt-auth包验证JWT用户的中间件:
public function handle($request, \Closure $next)
{
if (! $token = $this->auth->setRequest($request)->getToken()) {
return $this->respond('tymon.jwt.absent', 'token_not_provided', 400);
}
try {
$user = $this->auth->authenticate($token);
} catch (TokenExpiredException $e) {
return $this->respond('tymon.jwt.expired', 'token_expired', $e->getStatusCode(), [$e]);
} catch (JWTException $e) {
return $this->respond('tymon.jwt.invalid', 'token_invalid', $e->getStatusCode(), [$e]);
}
if (! $user) {
return $this->respond('tymon.jwt.user_not_found', 'user_not_found', 404);
}
$this->events->fire('tymon.jwt.valid', $user);
return $next($request);
}
然后我有一个控制器,我想将用户从中间件传递给控制器。
所以我在控制器上做了:
public function __construct()
{
$this->user = \Auth::user();
}
问题是$this->user
是null
,但是当我在控制器的方法上执行此操作时,它不是空的。
所以:
public function __construct()
{
$this->user = \Auth::user();
}
public function index()
{
var_dump($this->user); // null
var_dump(\Auth::user()); // OK, not null
}
所以问题是__construct
在中间件之前运行。我该如何改变,或者你有另一种解决方案?
更新:我使用dingo/api进行路由,也许这是他们的错误?
答案 0 :(得分:1)
您应该在路由中使用中间件
Route::middleware('jwt.auth')->group(function() {
// your routes
});
答案 1 :(得分:0)
1)从内核的$middleware
数组
2)将您的中间件放到$routeMiddleware
数组中,并使用自定义名称jwt.auth
:
protected $routeMiddleware = [
// ...
'jwt.auth' => 'App\Http\Middleware\YourAuthMiddleware'
];
2)在针控制器的父目录中创建BaseController,功能为:
public function __construct() {
$this->middleware('jwt.auth');
}
3)从BaseController扩展针控制器
4)使针控制器的__construct功能如下所示:
public function __construct() {
parent::__construct();
$this->user = \Auth::user();
}