catchAdmin/app/ExceptionHandle.php

72 lines
1.8 KiB
PHP
Raw Normal View History

2019-12-02 23:04:43 +08:00
<?php
namespace app;
2019-12-06 08:24:07 +08:00
use catcher\CatchResponse;
2019-12-12 18:52:11 +08:00
use catcher\exceptions\FailedException;
use catcher\exceptions\LoginFailedException;
use catcher\exceptions\PermissionForbiddenException;
2019-12-02 23:04:43 +08:00
use think\db\exception\DataNotFoundException;
use think\db\exception\ModelNotFoundException;
use think\exception\Handle;
use think\exception\HttpException;
use think\exception\HttpResponseException;
use think\exception\ValidateException;
use think\Response;
use Throwable;
/**
* 应用异常处理类
*/
class ExceptionHandle extends Handle
{
/**
* 不需要记录信息(日志)的异常类列表
* @var array
*/
protected $ignoreReport = [
HttpException::class,
HttpResponseException::class,
ModelNotFoundException::class,
DataNotFoundException::class,
ValidateException::class,
];
2019-12-12 18:52:11 +08:00
protected $catchExceptions = [
FailedException::class,
LoginFailedException::class,
ValidateException::class,
PermissionForbiddenException::class,
];
2019-12-02 23:04:43 +08:00
/**
* 记录异常信息(包括日志或者其它方式记录)
*
* @access public
* @param Throwable $exception
* @return void
*/
public function report(Throwable $exception): void
{
// 使用内置的方式记录异常日志
parent::report($exception);
}
/**
* Render an exception into an HTTP response.
*
* @access public
2019-12-12 18:52:11 +08:00
* @param \think\Request $request
2019-12-02 23:04:43 +08:00
* @param Throwable $e
* @return Response
2019-12-12 18:52:11 +08:00
* @throws \Exception
2019-12-02 23:04:43 +08:00
*/
public function render($request, Throwable $e): Response
{
2019-12-12 18:52:11 +08:00
if (in_array(get_class($e), $this->catchExceptions)) {
2019-12-06 08:24:07 +08:00
return CatchResponse::fail($e->getMessage(), $e->getCode());
2019-12-02 23:04:43 +08:00
}
2019-12-12 18:52:11 +08:00
2019-12-02 23:04:43 +08:00
// 其他错误交给系统处理
return parent::render($request, $e);
}
}