api-skeletons/laravel-api-problem
Composer 安装命令:
composer require api-skeletons/laravel-api-problem
包简介
Problem Details for HTTP APIs for Laravel
关键字:
README 文档
README
This repository implements RFC 7807 "Problem Details for HTTP APIs" for Laravel.
Installation
Run the following to install this library using Composer:
composer require api-skeletons/laravel-api-problem
Quick Start
use ApiSkeletons\Laravel\ApiProblem\Facades\ApiProblem; return ApiProblem::response('Detailed Unauthorized Message', 401);
This will result in a 401 response with header
Content-Type: application/problem+json
and content
{
"type": "http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html",
"title": "Unauthorized",
"status": 401,
"detail": "Detailed Unauthorized Messsge"
}
Use
Using the facade
You may use the ApiProblem object in two ways. First, you can use the facade to
return a response quickly and directly as shown in the Quick Start. When using
the facade the arguments to the response() method are:
response( string|Throwable $detail, int|string $status, ?string $type = null, ?string $title = null, array $additional = [] )
Creating an object
When creating an ApiProblem object directly, the first two parameters are swapped.
The reason for this is the constructor for the original object remains unchanged
and the response() function is modified to match the standard
Laravel response
format.
__construct( int|string $status, string|Throwable $detail, ?string $type = null, ?string $title = null, array $additional = [] )
An example of creating an object directly:
use ApiSkeletons\Laravel\ApiProblem\ApiProblem; $apiProblem = new ApiProblem(401, 'Detailed Unauthorized Message'); return $apiProblem->response();
Additional Details
The 5th parameter to ApiProblem is $additional. This array adds adhoc properties to the JSON response. One method of using this array is a 422 response with details of the problem:
use ApiSkeletons\Laravel\ApiProblem\Facades\ApiProblem; use Illuminate\Validation\ValidationException; try { $validated = $request->validate([ 'title' => 'required|unique:posts|max:255', 'body' => 'required', ]); } catch (ValidationException $e) { return ApiProblem::response($e->getMessage(), 422, null, null, ['errors' => $e->errors()]); }
results in:
{
"errors":{
"title":[
"The title field is required."
],
"body":[
"The body field is required."
]
},
"type": "http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html",
"title": "Unprocessable Entity",
"status": 422,
"detail": "The given data was invalid."
}
Use with the Exception Handler
namespace App\Exceptions; use ApiSkeletons\Laravel\ApiProblem\Facades\ApiProblem; use Doctrine\ORM\EntityNotFoundException; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; use Illuminate\Http\Request; class Handler extends ExceptionHandler { public function register(): void { $this->renderable(function (EntityNotFoundException $e, Request $request) { return ApiProblem::response($e->getMessage(), 404); }); } }
Attribution
The bulk of this repository was copied from Laminas API Tools. I wanted to provide a simplified interface specific to Laravel. Though the tool could have been used directly from the Laminas library it would have come with a lot of overhead.
统计信息
- 总下载量: 8.79k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 11
- 点击次数: 3
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2022-01-20