mirror of
https://github.com/koel/koel
synced 2024-12-01 00:09:17 +00:00
34 lines
853 B
PHP
34 lines
853 B
PHP
<?php
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Closure;
|
|
use Illuminate\Http\Request;
|
|
use Tymon\JWTAuth\Exceptions\TokenInvalidException;
|
|
|
|
class GetUserFromToken extends BaseMiddleware
|
|
{
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function handle(Request $request, Closure $next)
|
|
{
|
|
if (!$token = $this->auth->setRequest($request)->getToken()) {
|
|
return $this->respond('tymon.jwt.absent', 'token_not_provided', 401);
|
|
}
|
|
|
|
try {
|
|
$user = $this->auth->authenticate($token);
|
|
} catch (TokenInvalidException $exception) {
|
|
abort(401, 'Invalid or expired token');
|
|
}
|
|
|
|
if (!$user) {
|
|
return $this->respond('tymon.jwt.user_not_found', 'user_not_found', 401);
|
|
}
|
|
|
|
$this->events->dispatch('tymon.jwt.valid', $user);
|
|
|
|
return $next($request);
|
|
}
|
|
}
|