senkevich33n/laravel-api-error-handler
Composer 安装命令:
composer require senkevich33n/laravel-api-error-handler
包简介
a package for handle api errors
README 文档
README
a useful package for handle your exception when you are developing a API
📥 Installation
you can install this package via Composer:
composer require hamidreza2005/laravel-api-error-handler
and after installation you can run following command to publish config files
php artisan vendor:publish --tag laravel-api-error-handler
⚙️ Configuration
for configure this package go to config/api-error-handler.php
<?php return [ "Symfony\Component\HttpKernel\Exception\NotFoundHttpException" => "\hamidreza2005\LaravelApiErrorHandler\Exceptions\NotFoundException", "ErrorException" => "\hamidreza2005\LaravelApiErrorHandler\Exceptions\ServerInternalException", "Illuminate\Database\QueryException" => "\hamidreza2005\LaravelApiErrorHandler\Exceptions\ServerInternalException", "Illuminate\Auth\AuthenticationException" => "\hamidreza2005\LaravelApiErrorHandler\Exceptions\AccessDeniedException", "Symfony\Component\HttpKernel\Exception\HttpException" => "\hamidreza2005\LaravelApiErrorHandler\Exceptions\AccessDeniedException", "Illuminate\Validation\ValidationException" => "\hamidreza2005\LaravelApiErrorHandler\Exceptions\ValidationException", "Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException"=>"\hamidreza2005\LaravelApiErrorHandler\Exceptions\NotFoundException", ];
this package provide some common exception like ModelNotFound But if you want to customize it you can do like this :
<?php return [ "Your Error Namespace" => "the class that handle this error", ];
| Class | Status Code | Message |
|---|---|---|
| NotFoundException | 404 | Not Found |
| ServerInternalException | 500 | Server Internal Error |
| AccessDeniedException | 403 | Access Denied |
| ValidationException | 422 | it returns all errors in validation |
| DefaultException | the status code of the Error | the message of the Error |
🚀 let this package get your Errors
go to the app\Exceptions\Handler.php and put this code:
<?php namespace App\Exceptions; use hamidreza2005\LaravelApiErrorHandler\Traits\ApiErrorHandler; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; use Throwable; class Handler extends ExceptionHandler { use ApiErrorHandler; /** * A list of the exception types that are not reported. * * @var array */ protected $dontReport = [ // ]; /** * A list of the inputs that are never flashed for validation exceptions. * * @var array */ protected $dontFlash = [ 'password', 'password_confirmation', ]; /** * Register the exception handling callbacks for the application. * * @return void */ public function register() { // } public function render($request, Throwable $e) { return $this->handleError($this->prepareException($e)); } }
Make Your Own Error Handler!
if you want to make your own handler instead of using default handler you can make a class in everywhere you want but your class have to Extends hamidreza2005\LaravelApiErrorHandler\Exceptions\ExceptionAbstract
for Example:
<?php namespace myNamespace; class MyException extends ExceptionAbstract { public function handleStatusCode():void { $this->statusCode = 2018; } public function handleMessage():void { $this->message = "My Message"; } }
and you can do like this in config/api-error-handler.php:
<?php return [ "ErrorException" => "myNamespace\MyException" ];
❗ Notice
if an unknown Exception appeared this package automaticlly show it in the response but if you don't want that you can set APP_DEBUG to false in .env . when APP_DEBUG is false Server Internal shown in response
📜 License
The MIT License (MIT). Please see License File for more information.
🙋 Contributing
If you find an issue, or have a better way to do something, feel free to open an issue , or a pull request.
senkevich33n/laravel-api-error-handler 适用场景与选型建议
senkevich33n/laravel-api-error-handler 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.01k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 07 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「error-handling」 「api-error-handler」 「laravel-api-error-handler」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 senkevich33n/laravel-api-error-handler 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 senkevich33n/laravel-api-error-handler 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 senkevich33n/laravel-api-error-handler 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Logging and Notifications for Laravel Console Commands.
Enables simple 404 Page NotFound handling, also for multilingual sites.
Prevent sensitive exception details from leaking in Laravel applications
a package for handle api errors
Symfony Bundle for PHP Error Insight - AI-powered error handling for Symfony applications
Alfabank REST API integration
统计信息
- 总下载量: 2.01k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 12
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-07-22