mirror of
https://github.com/koel/koel
synced 2024-12-21 18:13:13 +00:00
40 lines
1.1 KiB
PHP
40 lines
1.1 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Middleware;
|
||
|
|
||
|
use Tymon\JWTAuth\Exceptions\JWTException;
|
||
|
use Tymon\JWTAuth\Exceptions\TokenExpiredException;
|
||
|
|
||
|
class GetUserFromToken extends BaseMiddleware
|
||
|
{
|
||
|
/**
|
||
|
* Handle an incoming request.
|
||
|
*
|
||
|
* @param \Illuminate\Http\Request $request
|
||
|
* @param \Closure $next
|
||
|
* @return mixed
|
||
|
*/
|
||
|
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);
|
||
|
}
|
||
|
}
|