如何抓住"过多的尝试"中间件Laravel 5

时间:2017-07-31 14:56:10

标签: php laravel laravel-5 middleware throttling

我正在构建我的API,并且我成功地设法在我的路线上设置的中间件上发现了一些错误,如下所示:

Route::group(['middleware' => \App\Http\Middleware\ExceptionHandlerMiddleware::class], function() {

    Route::resource('/address', 'AddressController');

    Route::resource('/country', 'CountryController');

    Route::resource('/phone', 'PhoneController');

    Route::resource('/user', 'UserController');
});

中间件设法捕获以下异常:

  • Illuminate\Database\Eloquent\ModelNotFoundException
  • Illuminate\Validation\ValidationException
  • Exception

哪个好。我也知道一种控制路线尝试次数的油门机制。所以对于邮递员我攻击了我的路线http://localhost:8000/api/user,直到我收到too many attemp错误。

异常发生在位于以下位置的文件中:

/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php

由于forum topicSymfony\Component\HttpKernel\Exception\TooManyRequestsHttpException,我还设法获得了它引发的异常类型。

所以最后我的中间件看起来像这样:

<?php

namespace App\Http\Middleware;

use Closure;
use Illuminate\Database\Eloquent\ModelNotFoundException;
use Illuminate\Validation\ValidationException;
use Symfony\Component\HttpKernel\Exception\TooManyRequestsHttpException;
use Exception;

class ExceptionHandlerMiddleware
{
    public function handle($request, Closure $next)
    {
        $output = $next($request);

        try {
            if( ! is_null( $output->exception ) ) {
                throw new $output->exception;
            }

            return $output;
        }
        catch( TooManyRequestsHttpException $e ) {
            return response()->json('this string is never showed up', 429);
        }
        catch( ValidationException $e ) {           
            return response()->json('validation error' 400);
        }
        catch( ModelNotFoundException $e ) {            
            return response()->json('not found', 404);
        }
        catch( \Exception $e ) {            
            return response()->json('unknow', 500);
        }
    }
}

您看到this string is never showed up行?实际上它永远不会出现,Illuminate的原始油门异常总是占据优势。

问题

如何以可能(如果可能)捕获任何异常的方式正确覆盖基本错误,而无需修改照明文件(如果有更新......)?

Runing laravel 5.4。

修改

我负担不起手动更新app/Http/Exception文件,因为我的应用程序将作为我的期货其他项目的服务提供商发货。此外,我不喜欢冒险删除这些文件上的一些先前配置,因为其他&#34;基本&#34; routes.php中的路由可能有自己的异常捕获程序。

1 个答案:

答案 0 :(得分:1)

实现这一目标的最佳方法是使用app\Exceptions\Handler.php

public function render($request, Exception $exception)
{
    if ($this->isHttpException($exception)) {
        if (request()->expectsJson()) {
            switch ($exception->getStatusCode()) {
                case 404:
                    return response()->json(['message' => 'Invalid request or url.'], 404);
                    break;
                case '500':
                    return response()->json(['message' => 'Server error. Please contact admin.'], 500);
                    break;

                default:
                    return $this->renderHttpException($exception);
                    break;
            }
        }
    } else if ($exception instanceof ModelNotFoundException) {
        if (request()->expectsJson()) {
            return response()->json(['message' =>$exception->getMessage()], 404);
        }
    } {
        return parent::render($request, $exception);
    }
    return parent::render($request, $exception);
}

在此演示中,您可以添加更多异常,例如} else if ($exception instanceof ModelNotFoundException) {并解决它们。