XF_Index/app/Exceptions/Handler.php
XiaoLFeng f4de7d71bd AddFeature: 处理页面未找到错误自动返回404
重写 render 方法
添加 register 方法的 void 返回值

Signed-off-by: XiaoLFeng <gm@x-lf.cn>
2023-07-09 15:41:04 +08:00

69 lines
1.8 KiB
PHP

<?php
/*
* Copyright © 2016 - 2023 筱锋xiao_lfeng. All Rights Reserved.
* 开发开源遵循 MIT 许可,若需商用请联系开发者
* https://www.x-lf.com/
*/
namespace App\Exceptions;
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Throwable;
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that are not reported.
*
* @var array<int, class-string<Throwable>>
*/
protected $dontReport = [
//
];
/**
* A list of the inputs that are never flashed for validation exceptions.
*
* @var array<int, string>
*/
protected $dontFlash = [
'current_password',
'password',
'password_confirmation',
];
/**
* Register the exception handling callbacks for the application.
*
* @return void
*/
public function register(): void
{
$this->reportable(function (Throwable $e) {
//
});
}
/**
* 处理发现页面找不到之后返回内容
*
* @param Request $request 获取请求内容
* @param Throwable $e 抛出错误
* @return Response|JsonResponse|\Symfony\Component\HttpFoundation\Response|RedirectResponse
* @throws Throwable
*/
public function render($request, Throwable $e): Response|JsonResponse|\Symfony\Component\HttpFoundation\Response|RedirectResponse
{
if ($e instanceof ModelNotFoundException || $e instanceof NotFoundHttpException) {
return response()->redirectToRoute('404');
}
return parent::render($request, $e);
}
}