hyperf-chat/app/Exception/Handler/JwtAuthExceptionHandler.php

43 lines
1.1 KiB
PHP
Raw Normal View History

2020-11-04 16:47:17 +08:00
<?php
namespace App\Exception\Handler;
2021-05-23 17:28:04 +08:00
use Qbhy\HyperfAuth\Exception\AuthException;
2020-11-04 16:47:17 +08:00
use Throwable;
use Hyperf\ExceptionHandler\ExceptionHandler;
use Hyperf\HttpMessage\Stream\SwooleStream;
use Psr\Http\Message\ResponseInterface;
/**
* Class JwtAuthExceptionHandler
2021-04-20 16:30:57 +08:00
*
2020-11-04 16:47:17 +08:00
* @package App\Exception\Handler
*/
class JwtAuthExceptionHandler extends ExceptionHandler
{
public function handle(Throwable $throwable, ResponseInterface $response)
{
2021-05-24 11:31:36 +08:00
// 格式化输出
$data = json_encode([
'code' => $throwable->getCode(),
'message' => $throwable->getMessage(),
], JSON_UNESCAPED_UNICODE);
2020-11-04 16:47:17 +08:00
2021-05-24 11:31:36 +08:00
// 阻止异常冒泡
$this->stopPropagation();
2021-04-22 16:54:01 +08:00
2021-05-24 11:31:36 +08:00
return $response->withAddedHeader('content-type', 'application/json; charset=utf-8')->withStatus(401)->withBody(new SwooleStream($data));
2020-11-04 16:47:17 +08:00
}
/**
* 判断该异常处理器是否要对该异常进行处理
2020-11-14 23:05:45 +08:00
*
* @param Throwable $throwable
* @return bool
2020-11-04 16:47:17 +08:00
*/
public function isValid(Throwable $throwable): bool
{
2021-05-24 11:31:36 +08:00
return $throwable instanceof AuthException;
2020-11-04 16:47:17 +08:00
}
}