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

55 lines
1.4 KiB
PHP
Raw Normal View History

2020-11-04 11:57:16 +08:00
<?php
namespace App\Exception\Handler;
use Hyperf\ExceptionHandler\ExceptionHandler;
use Hyperf\HttpMessage\Stream\SwooleStream;
use Psr\Http\Message\ResponseInterface;
use App\Exception\ValidateException;
use Throwable;
/**
* 验证器异常处理类
*
* Class ValidateExceptionHandler
* @package App\Exception\Handler
*/
2020-11-04 16:47:17 +08:00
class ValidateExceptionHandler extends ExceptionHandler
2020-11-04 11:57:16 +08:00
{
2020-11-14 23:05:45 +08:00
/**
* @param Throwable $throwable
* @param ResponseInterface $response
* @return ResponseInterface
*/
2020-11-04 11:57:16 +08:00
public function handle(Throwable $throwable, ResponseInterface $response)
{
// 判断被捕获到的异常是希望被捕获的异常
if ($throwable instanceof ValidateException) {
// 格式化输出
$data = json_encode([
'code' => $throwable->getCode(),
'message' => $throwable->getMessage(),
2020-11-04 16:47:17 +08:00
'data' => []
2020-11-04 11:57:16 +08:00
], JSON_UNESCAPED_UNICODE);
// 阻止异常冒泡
$this->stopPropagation();
return $response->withAddedHeader('content-type', 'application/json; charset=utf-8')->withStatus(200)->withBody(new SwooleStream($data));
}
return $response;
}
/**
* 判断该异常处理器是否要对该异常进行处理
2020-11-14 23:05:45 +08:00
*
* @param Throwable $throwable
* @return bool
2020-11-04 11:57:16 +08:00
*/
public function isValid(Throwable $throwable): bool
{
return true;
}
}