# middlewares/utils [![Latest Version on Packagist][ico-version]][link-packagist] [![Software License][ico-license]](LICENSE) [![Build Status][ico-travis]][link-travis] [![Quality Score][ico-scrutinizer]][link-scrutinizer] [![Total Downloads][ico-downloads]][link-downloads] [![SensioLabs Insight][ico-sensiolabs]][link-sensiolabs] Common utilities used by the middlewares' packages: ## Factory Used to create psr-7 instances of `ServerRequestInterface`, `ResponseInterface`, `StreamInterface` and `UriInterface`. Detects automatically [Diactoros](https://github.com/zendframework/zend-diactoros), [Guzzle](https://github.com/guzzle/psr7) and [Slim](https://github.com/slimphp/Slim) but you can register a different factory using the [http-interop/http-factory](https://github.com/http-interop/http-factory) interface. ```php use Middlewares\Utils\Factory; $request = Factory::createServerRequest(); $response = Factory::createResponse(); $stream = Factory::createStream(); $uri = Factory::createUri('http://example.com'); //Register other factory Factory::setResponseFactory(new FooResponseFactory()); $fooResponse = Factory::createResponse(); ``` ## CallableHandler To execute a callable and return a response with the output. Useful to handle routes, etc: ```php use Middlewares\Utils\CallableHandler; $response = CallableHandler::execute(function () { echo 'Hello world'; }); echo $response->getBody(); //Hello world ``` ## Dispatcher Minimalist PSR-15 compatible dispatcher. Used for testing purposes. ```php use Middlewares\Utils\Factory; use Middlewares\Utils\Dispatcher; $dispatcher = new Dispatcher([ new Middleware1(), new Middleware2(), new Middleware3(), function ($request, $next) { $response = $next->process($request); return $response->withHeader('X-Foo', 'Bar'); } ]); $response = $dispatcher->dispatch(Factory::createServerRequest()); ``` ## CallableMiddleware A simple way to create middlewares using callables. Internally uses [CallableHandler](#callablehandler) so you can use `echo` or return `string` in the callables (the response is created automatically if it's not returned). **Note:** You may not need use this directly in the `Dispatcher`, because is used automatically with instances of `Closure`. ```php use Middlewares\Utils\Dispatcher; use Middlewares\Utils\CallableMiddleware; $dispatcher = new Dispatcher([ new CallableMiddleware(function ($request, $delegate) { $response = $delegate->process($request); return $response->withHeader('Content-Type', 'text/html'); }), //Providing a Closure directly, the dispatcher will convert to a CallableMiddleware automatically function ($request, $delegate) { echo '

Hello world

'; } ]); $response = $dispatcher->dispatch(new Request()); ``` ## Helpers A collection of helpers for psr-7 message manipulation. It contains the following methods: ```php Helpers::fixContentLength(MessageInterface $response): MessageInterface ``` Fixes the `Content-Length` header based in the body size. --- Please see [CHANGELOG](CHANGELOG.md) for more information about recent changes and [CONTRIBUTING](CONTRIBUTING.md) for contributing details. The MIT License (MIT). Please see [LICENSE](LICENSE) for more information. [ico-version]: https://img.shields.io/packagist/v/middlewares/utils.svg?style=flat-square [ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square [ico-travis]: https://img.shields.io/travis/middlewares/utils/master.svg?style=flat-square [ico-scrutinizer]: https://img.shields.io/scrutinizer/g/middlewares/utils.svg?style=flat-square [ico-downloads]: https://img.shields.io/packagist/dt/middlewares/utils.svg?style=flat-square [ico-sensiolabs]: https://img.shields.io/sensiolabs/i/3dcb2b7c-8564-48ef-9af4-d1e974762c3a.svg?style=flat-square [link-packagist]: https://packagist.org/packages/middlewares/utils [link-travis]: https://travis-ci.org/middlewares/utils [link-scrutinizer]: https://scrutinizer-ci.com/g/middlewares/utils [link-downloads]: https://packagist.org/packages/middlewares/utils [link-sensiolabs]: https://insight.sensiolabs.com/projects/3dcb2b7c-8564-48ef-9af4-d1e974762c3a