Woohoo Labs. Yin Middleware is a collection of middleware which helps you to integrate Woohoo Labs. Yin into your PHP applications.
- 100% PSR-15 compatibility
- 100% PSR-7 compatibility
- Validation of requests against the JSON schema
- Validation of responses against the JSON and JSON:API schema
- Dispatching of JSON:API-aware controllers
- JSON:API exception handling
The only thing you need before getting started is Composer.
Because Yin Middleware requires a PSR-7 implementation (a package which provides the psr/http-message-implementation
virtual
package), you must install one first. You may use Zend Diactoros or
any other library of your preference:
$ composer require zendframework/zend-diactoros
To install the latest version of this library, run the command below:
$ composer require woohoolabs/yin-middleware
Note: The tests and examples won't be downloaded by default. You have to use
composer require woohoolabs/yin-middleware --prefer-source
or clone the repository if you need them.
Yin Middleware 4.1 requires PHP 7.4 at least, but you may use Yin Middleware 4.0.0 for PHP 7.1.
If you want to use JsonApiRequestValidatorMiddleware
and JsonApiResponseValidatorMiddleware
from the default middleware stack
then you have to require the following dependencies too:
$ composer require seld/jsonlint
$ composer require justinrainbow/json-schema
The interface design of Yin-Middleware is based on the PSR-15 de-facto standard. That's why it is compatible with Woohoo Labs. Harmony, Zend-Stratigility, Zend-Expressive and many other frameworks.
The following sections will guide you through how to use and configure the provided middleware.
Note: When passing a
ServerRequestInterface
instance to your middleware dispatcher, aWoohooLabs\Yin\JsonApi\Request\JsonApiRequestInterface
instance must be used in fact (theWoohooLabs\Yin\JsonApi\Request\JsonApiRequest
class possibly), otherwise theJsonApiDispatcherMiddleware
and theJsonApiExceptionHandlerMiddleware
will throw an exception.
This middleware facilitates the usage of Yin and Yin-Middleware in other frameworks. It does so by upgrading a basic PSR-7
request object to JsonApiRequest
, which is suitable for working with Yin. Please keep in mind, that this middleware should
precede any other middleware that uses JsonApiRequest
as $request
parameter.
$harmony->addMiddleware(new YinCompatibilityMiddleware());
Available configuration options for the middleware (they can be passed to the constructor):
exceptionFactory
: The ExceptionFactoryInterface instance to be useddeserializer
: The DeserializerInterface instance to be used
The middleware is mainly useful in a development environment, and it is able to validate a PSR-7 request against the JSON and the JSON:API schema. Just add it to your application (the example is for Woohoo Labs. Harmony):
$harmony->addMiddleware(new JsonApiRequestValidatorMiddleware());
If validation fails, an exception containing the appropriate JSON:API errors will be thrown. If you want to customize the error messages or the response, provide an Exception Factory of your own. For other customizations, feel free to extend the class.
Available configuration options for the middleware (they can be passed to the constructor):
exceptionFactory
: The ExceptionFactoryInterface instance to be usedincludeOriginalMessageInResponse
: If true, the original request body will be included in the "meta" top-level membernegotiate
: If true, the middleware performs content-negotiation as specified by the JSON:API spec. In this case, the "Content-Type" and the "Accept" header is checked.validateQueryParams
: If true, query parameters are validated against the JSON:API specificationvalidateJsonBody
: If true, the request body gets validated against the JSON schema
The middleware is mainly useful in a development environment, and it is able to validate a PSR-7 response against the JSON and the JSON:API schema. Just add it to your application (the example is for Woohoo Labs. Harmony):
$harmony->addMiddleware(new JsonApiResponseValidatorMiddleware());
If validation fails, an exception containing the appropriate JSON:API errors will be thrown. If you want to customize the error messages or the response, provide an Exception Factory of your own. For other customizations, feel free to extend the class.
Available configuration options for the middleware (they can be passed to the constructor):
exceptionFactory
: The ExceptionFactoryInterface instance to be usedserializer
: The SerializerInterface instance to be usedincludeOriginalMessageInResponse
: If true, the original response will be included in the "meta" top-level membervalidateJsonBody
: If true, the response body gets validated against the JSON schemavalidateJsonApiBody
: If true, the response is validated against the JSON:API schema
This middleware is able to dispatch JSON:API-aware controllers. Just add it to your application (the example is for Woohoo Labs. Harmony):
$harmony->addMiddleware(new JsonApiDispatcherMiddleware());
This middleware works exactly as the one in Woohoo Labs. Harmony, the only difference is that it dispatches controller actions with the following signature:
public function myAction(JsonApi $jsonApi): ResponseInterface;
instead of:
public function myAction(ServerRequestInterface $request, ResponseInterface $response): ResponseInterface;
The difference is subtle, as the $jsonApi
object contains a PSR-7 compatible request, and PSR-7 responses can also be
created with it. Learn more from the documentation of Woohoo Labs. Yin.
Available configuration options for the middleware (they can be passed to the constructor):
container
: A PSR-11 compliant container instance to be used to instantiate the controllerexceptionFactory
: The ExceptionFactoryInterface instance to be used (e.g.: when dispatching fails)serializer
: The SerializerInterface instance to be usedhandlerAttribute
: The name of the request attribute which stores a dispatchable controller (it is usually provided by a router).
It catches exceptions and responds with an appropriate JSON:API error response.
Available configuration options for the middleware (they can be passed to the constructor):
errorResponsePrototype
: In case of an error, this response object will be manipulated and returnedcatching
: If false, the middleware won't catchJsonApiException
sverbose
: If true, additional meta information will be provided about the exception thrownexceptionFactory
: The ExceptionFactoryInterface instance to be usedserializer
: The SerializerInterface instance to be used
This library follows SemVer v2.0.0.
Please see CHANGELOG for more information what has changed recently.
Woohoo Labs. Yin Middleware has a PHPUnit test suite. To run the tests, run the following command from the project folder after you have copied phpunit.xml.dist to phpunit.xml:
$ phpunit
Additionally, you may run docker-compose up
or make test
in order to execute the tests.
Please see CONTRIBUTING for details.
Please see SUPPORT for details.
The MIT License (MIT). Please see the License File for more information.