This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/common/exception/ExceptionHandler.php

76 lines
2.0 KiB
PHP
Raw Normal View History

2020-04-25 22:20:29 +08:00
<?php
namespace app\common\exception;
use think\Log;
2020-08-28 10:41:05 +08:00
use think\exception\Handle;
use think\exception\DbException;
2020-04-25 22:20:29 +08:00
use Exception;
/**
* 重写Handle的render方法实现自定义异常消息
* Class ExceptionHandler
* @package app\common\library\exception
*/
class ExceptionHandler extends Handle
{
private $code;
private $message;
/**
* 输出异常信息
* @param Exception $e
* @return \think\Response|\think\response\Json
*/
public function render(Exception $e)
{
if ($e instanceof BaseException) {
$this->code = $e->code;
$this->message = $e->message;
} else {
if (config('app_debug')) {
return parent::render($e);
}
$this->code = 0;
$this->message = $e->getMessage() ?: '很抱歉,服务器内部错误';
$this->recordErrorLog($e);
}
return json(['msg' => $this->message, 'code' => $this->code]);
}
2020-08-28 10:35:48 +08:00
/**
* Report or log an exception.
*
* @param \Exception $exception
* @return void
*/
public function report(Exception $exception)
{
// 不使用内置的方式记录异常日志
}
2020-04-25 22:20:29 +08:00
/**
* 将异常写入日志
* @param Exception $e
*/
private function recordErrorLog(Exception $e)
{
2020-08-28 10:35:48 +08:00
$data = [
2020-08-28 10:41:05 +08:00
'file' => $e->getFile(),
'line' => $e->getLine(),
2020-08-28 10:35:48 +08:00
'message' => $this->getMessage($e),
2020-08-28 10:41:05 +08:00
'code' => $this->getCode($e),
'TraceAsString' => $e->getTraceAsString()
2020-08-28 10:35:48 +08:00
];
2020-08-28 10:41:05 +08:00
// 如果是mysql报错, 则记录Error SQL
if ($e instanceof DbException) {
$data['TraceAsString'] = "[Error SQL]: " . $e->getData()['Database Status']['Error SQL'];
}
// 日志标题
2020-08-28 10:35:48 +08:00
$log = "[{$data['code']}]{$data['message']} [{$data['file']}:{$data['line']}]";
2020-08-28 10:41:05 +08:00
// 错误trace
$log .= "\r\n{$data['TraceAsString']}";
2020-08-28 10:35:48 +08:00
Log::record($log, 'error');
2020-04-25 22:20:29 +08:00
}
}