tobion / openapi-symfony-routing
Loads routes in Symfony based on OpenAPI/Swagger annotations
Installs: 17 980
Dependents: 0
Suggesters: 0
Security: 0
Stars: 41
Watchers: 4
Forks: 5
Open Issues: 4
Requires
- php: >=7.2
- symfony/finder: ^4.4|^5.0
- symfony/framework-bundle: ^4.4|^5.0
- symfony/routing: ^4.4|^5.0
- zircote/swagger-php: ^3.0.3
Requires (Dev)
- symfony/phpunit-bridge: ^5.2
This package is auto-updated.
Last update: 2024-10-26 20:53:37 UTC
README
Loads routes in Symfony based on OpenAPI/Swagger annotations.
Installation
$ composer require tobion/openapi-symfony-routing
Version >= 1.2 requires zircote/swagger-php 3.x which is compatible with the OpenAPI Specification version 3. Version < 1.2 requires zircote/swagger-php 2.x which works with the OpenAPI Specification version 2 (fka Swagger). So tobion/openapi-symfony-routing can be used with both OpenAPI v2 and v3 and composer will select the compatible one for your dependencies. Route loading stays the same between those versions. You just need to update the annotations when migrating from OpenAPI v2 to v3.
Basic Usage
This library allows to (re-)use your OpenAPI documentation to configure the routing of your Symfony-based API. All the relevant routing information like the HTTP method, path and parameters are already part of the OpenAPI spec. This way you do not have to duplicate any routing information in Symfony. Consider having the controllers annotated with zircote/swagger-php like the following example:
use OpenApi\Annotations as OA; /** * @OA\OpenApi( * @OA\Info(title="My API", version="1.0") * ) */ class MyController { /** * @OA\Get( * path="/foobar", * @OA\Response(response="200", description="Success") * ) */ public function __invoke() { } }
This library provides an OpenApiRouteLoader
that you need to define as service and configure where to look for annotations like so:
# config/services.yaml services: Tobion\OpenApiSymfonyRouting\OpenApiRouteLoader: autoconfigure: true # Looks for OpenAPI/Swagger annotations in the symfony flex default "src" directory factory: [Tobion\OpenApiSymfonyRouting\OpenApiRouteLoader, fromSrcDirectory]
Then you need to tell Symfony to load routes using it:
# config/routes.yaml openapi_routes: resource: Tobion\OpenApiSymfonyRouting\OpenApiRouteLoader type: service
Advanced Features
Scanning annotations in different directories
services: Tobion\OpenApiSymfonyRouting\OpenApiRouteLoader: autoconfigure: true factory: [Tobion\OpenApiSymfonyRouting\OpenApiRouteLoader, fromDirectories] arguments: - '%kernel.project_dir%/src' - '%kernel.project_dir%/vendor/acme/my-bundle/src'
Naming routes
By default routes are auto-named based on the controller class and method. If you want to give routes
an explicit name, you can do so using the OpenAPI operationId
property:
use OpenApi\Annotations as OA; class MyController { /** * @OA\Get( * path="/foobar", * operationId="my-name", * @OA\Response(response="200", description="Success") * ) */ public function __invoke() { } }
Add format suffix automatically
If your API supports different formats it is often common to optionally allow specifying the requested format as a suffix
to the endpoint instead of having to always change headers for content negotiation.
The routing loader allows to add a .{_format}
placeholder automatically to the routes. This is disabled by default
and can be enabled using a format-suffix
OpenAPI vendor extension:
use OpenApi\Annotations as OA; class MyController { /** * @OA\Get( * path="/foobar", * x={"format-suffix": { * "enabled": true, * "pattern": "json|xml" * }}, * @OA\Response(response="200", description="Success") * ) */ public function __invoke() { } }
The above example will create a route /foobar.{_format}
where the format is optional and can be json or xml.
You can also enable the format-suffix globally by configuring it on the root OpenApi annotation and disable it for
certain routes again, see test fixtures.
Order routes with priority
Since Symfony 5.1, the order of routes defined using annotations can be influenced using a priority.
This can be used to make sure templated routes do not match before concrete routes without parameters for the same URL.
The priority can also be set on OpenAPI annotations using a priority
vendor extension:
use OpenApi\Annotations as OA; class MyController { /** * @OA\Get( * path="/foobar", * x={"priority": 10}, * @OA\Response(response="200", description="Success") * ) */ public function __invoke() { } }
Contributing
To run tests:
$ composer install
$ vendor/bin/simple-phpunit