devizzent / cebe-php-openapi
读取和写入 OpenAPI yaml/json 文件,并将内容转换为 PHP 对象。
Requires
- php: >=7.1.0
- ext-json: *
- justinrainbow/json-schema: ^5.2
- symfony/yaml: ^3.4 || ^4 || ^5 || ^6 || ^7
Requires (Dev)
- apis-guru/openapi-directory: 1.0.0
- cebe/indent: *
- mermade/openapi3-examples: 1.0.0
- oai/openapi-specification-3.0: 3.0.3
- oai/openapi-specification-3.1: 3.1.0
- phpstan/phpstan: ^0.12.0
- phpunit/phpunit: ^6.5 || ^7.5 || ^8.5 || ^9.4
Conflicts
- symfony/yaml: 3.4.0 - 3.4.4 || 4.0.0 - 4.4.17 || 5.0.0 - 5.1.9 || 5.2.0
- dev-master / 1.6.x-dev
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- 0.1.0
- dev-NO-ISSUE_improve_actions
- dev-I-9_fix_dependencies_pipeline
- dev-I-13_yarn_vulnerability
- dev-fix_pipeline
- dev-NO-ISSUE_improve_local_debug
- dev-dependabot/npm_and_yarn/json5-1.0.2
- dev-dependabot/npm_and_yarn/json-pointer-0.6.2
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/loader-utils-1.4.2
- dev-reduce-dots-current-dir
- dev-symfony-yaml-bug-hunt
This package is auto-updated.
Last update: 2024-09-08 06:02:13 UTC
README
这是 cebe/php-openapi 的分支。由于 openapi3.1 的拉取请求耗时多年,许多开发者都希望使用它,因此我创建了它作为库。
php-openapi
读取和写入 OpenAPI 3.x YAML 和 JSON 文件,并将内容转换为 PHP 对象。
它还提供了一个 CLI 工具,用于验证和转换 OpenAPI 3.x 描述文件。
支持的 OpenAPI 版本
- 3.0.x
- 3.1.x
安装
composer require devizzent/cebe-php-openapi
要求
- PHP 7.1 或更高版本(与 PHP 8 兼容良好)
使用
此库提供用于读取和写入 OpenAPI 文件的底层 API。它被高级工具用于执行出色的工作
- ... (添加您的)
用法
CLI 工具
$ vendor/bin/php-openapi help
PHP OpenAPI 3 tool
------------------
by Carsten Brandt <mail@cebe.cc>
Usage:
php-openapi <command> [<options>] [input.yml|input.json] [output.yml|output.json]
The following commands are available:
validate Validate the API Description in the specified input file against the OpenAPI v3.0 schema.
Note: the validation is performed in two steps. The results are composed of
(1) structural errors found while reading the API Description file, and
(2) violations of the OpenAPI v3.0 schema.
If no input file is specified input will be read from STDIN.
The tool will try to auto-detect the content type of the input, but may fail
to do so. You may specify --read-yaml or --read-json to force the file type.
Exits with code 2 on validation errors, 1 on other errors and 0 on success.
convert Convert a JSON or YAML input file to JSON or YAML output file.
If no input file is specified input will be read from STDIN.
If no output file is specified output will be written to STDOUT.
The tool will try to auto-detect the content type of the input and output file, but may fail
to do so. You may specify --read-yaml or --read-json to force the input file type.
and --write-yaml or --write-json to force the output file type.
By default all references are resolved (replaced with the object referred to). You can control
handling of references with the following arguments:
--resolve-none Do not resolve references.
--resolve-external Only resolve references that point to external files.
This process is often referred to as "inlining".
--resolve-all Resolve all references (default).
Recursive pointers will stay references.
inline Convert a JSON or YAML input file to JSON or YAML output file and
resolve all external references. The output will be a single API Description file.
This is a shortcut for calling convert --resolve-external.
help Shows this usage information.
Options:
--read-json force reading input as JSON. Auto-detect if not specified.
--read-yaml force reading input as YAML. Auto-detect if not specified.
--write-json force writing output as JSON. Auto-detect if not specified.
--write-yaml force writing output as YAML. Auto-detect if not specified.
-s, --silent silent mode. Will hide all success/information messages and only print errors.
读取 API 描述文件
从 JSON 文件读取 OpenAPI 描述
use cebe\openapi\Reader; // realpath is needed for resolving references with relative Paths or URLs $openapi = Reader::readFromJsonFile(realpath('openapi.json'));
从 YAML 读取 OpenAPI 描述
use cebe\openapi\Reader; // realpath is needed for resolving references with relative Paths or URLs $openapi = Reader::readFromYamlFile(realpath('openapi.yaml')); // you may also specify the URL to your API Description file $openapi = Reader::readFromYamlFile('https://raw.githubusercontent.com/OAI/OpenAPI-Specification/3.0.2/examples/v3.0/petstore-expanded.yaml');
访问 API 描述数据
echo $openapi->openapi; // openAPI version, e.g. 3.0.0 echo $openapi->info->title; // API title foreach($openapi->paths as $path => $definition) { // iterate path definitions }
对象属性与 OpenAPI 规范 中完全相同。您还可以访问由 规范扩展 添加的附加属性。
编写 API 描述文件
use cebe\openapi\spec\OpenApi; use cebe\openapi\spec\PathItem; // create base API Description $openapi = new OpenApi([ 'openapi' => '3.0.2', 'info' => [ 'title' => 'Test API', 'version' => '1.0.0', ], 'paths' => [], ]); // manipulate description as needed $openapi->paths['/test'] = new PathItem([ 'description' => 'something' ]); // ... $json = \cebe\openapi\Writer::writeToJson($openapi);
生成以下 JSON 数据
{ "openapi": "3.0.0", "info": { "title": "Test API", "version": "1.0.0" }, "paths": { "/test": { "description": "something" } } }
使用准备好的对象编写 API 描述文件
从版本 1.2.0 开始,上述示例也可以这样编写(传递对象而不是数组)
use cebe\openapi\spec\OpenApi; use cebe\openapi\spec\PathItem; use cebe\openapi\spec\Info; // create base API Description $openapi = new OpenApi([ 'openapi' => '3.0.2', 'info' => new Info([ 'title' => 'Test API', 'version' => '1.0.0', ]), 'paths' => [ '/test' => new PathItem([ 'description' => 'something' ]), ], ]); $json = \cebe\openapi\Writer::writeToJson($openapi);
读取 API 描述文件并解决引用
在上面的示例中,我们已将原始 JSON 或 YAML 数据传递给 Reader。为了能够解决对外部文件中结构的引用,我们必须提供完整上下文。
use cebe\openapi\Reader; use cebe\openapi\spec\OpenAPI; use cebe\openapi\ReferenceContext; // there are two different modes for resolving references: // ALL: resolve all references, which will result in a large description with a lot of repetition // but no references (except if there are recursive references, these will stop at some level) $mode = ReferenceContext::RESOLVE_MODE_ALL; // INLINE: only references to external files are resolved, references to places in the current file // are still Reference objects. $mode = ReferenceContext::RESOLVE_MODE_INLINE; // an absolute URL or file path is needed to allow resolving external references $openapi = Reader::readFromJsonFile('https://www.example.com/api/openapi.json', OpenAPI::class, $mode); $openapi = Reader::readFromYamlFile('https://www.example.com/api/openapi.yaml', OpenAPI::class, $mode);
如果数据以不同的方式加载,您可以通过提供上下文手动解决引用,如下所示
$openapi->resolveReferences( new \cebe\openapi\ReferenceContext($openapi, 'https://www.example.com/api/openapi.yaml') );
验证
库提供了简单的验证操作,检查基本 OpenAPI 规范要求。这与 CLI 工具中“在读取 API 描述文件时发现的结构错误”相同。此验证不包括与 OpenAPI v3.0/v3.1 JSON 架构的检查,这仅在 CLI 中实现。
// return `true` in case no errors have been found, `false` in case of errors.
$specValid = $openapi->validate();
// after validation getErrors() can be used to retrieve the list of errors found.
$errors = $openapi->getErrors();
注意:验证是在非常基本的级别上进行的,并且不完整。因此,失败的验证将显示一些错误,但给出的错误列表可能不完整。此外,通过验证并不一定表示规范完全有效。
开发
您可以使用 docker 环境进行本地开发
docker-compose build
make IN_DOCKER=1 install
make IN_DOCKER=1 test
...