123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?php
- namespace app;
- use crmeb\exceptions\AdminException;
- use crmeb\exceptions\ApiException;
- use crmeb\exceptions\AuthException;
- use crmeb\exceptions\PayException;
- use crmeb\exceptions\TemplateException;
- use crmeb\exceptions\UploadException;
- use crmeb\exceptions\WechatReplyException;
- use crmeb\services\wechat\WechatException;
- 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\facade\Env;
- use think\Response;
- use Throwable;
- class ExceptionHandle extends Handle
- {
-
- protected $ignoreReport = [
- HttpException::class,
- HttpResponseException::class,
- ModelNotFoundException::class,
- DataNotFoundException::class,
- ValidateException::class,
- AdminException::class,
- UploadException::class,
- PayException::class,
- ApiException::class,
- TemplateException::class,
- AuthException::class
- ];
-
- public function report(Throwable $exception): void
- {
-
- parent::report($exception);
- }
-
- public function render($request, Throwable $e): Response
- {
-
- $massageData = Env::get('app_debug', false) ? [
- 'file' => $e->getFile(),
- 'line' => $e->getLine(),
- 'trace' => $e->getTrace(),
- 'previous' => $e->getPrevious(),
- ] : [];
-
- if ($e instanceof DbException) {
- return app('json')->fail('数据获取失败', $massageData);
- } elseif ($e instanceof AuthException ||
- $e instanceof ValidateException ||
- $e instanceof ApiException ||
- $e instanceof PayException ||
- $e instanceof TemplateException ||
- $e instanceof UploadException ||
- $e instanceof WechatReplyException ||
- $e instanceof AdminException ||
- $e instanceof WechatException
- ) {
- return app('json')->make($e->getCode() ?: 400, $e->getMessage(), $massageData);
- } else {
- return app('json')->code(500)->make(400, $e->getMessage(), $massageData);
- }
- }
- }
|