noglitchyo / middleware-collection-request-handler
Simple PSR-15 middleware collection request handler.
Installs: 8 433
Dependents: 1
Suggesters: 0
Security: 0
Stars: 7
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- php: >=7.3
- psr/http-message: ^1.0
- psr/http-server-middleware: ^1.0
Requires (Dev)
- nyholm/psr7: ^1.1
- phpstan/phpstan: ^0.11.8
- phpunit/phpunit: ^8.1
- squizlabs/php_codesniffer: *
This package is auto-updated.
Last update: 2024-10-16 01:46:52 UTC
README
Lightweight & dead simple PSR-15 Server Request Handler implementation to process a collection of middlewares.
Description
PSR-15 request handler implementing both RequestHandlerInterface and MiddlewareInterface able to manage a collection of middlewares implementing the MiddlewareInterface.
It can be used either as a RequestHandler or as a Middleware to fit into any implementation.
Comes with a set of middleware collections using different strategy (LIFO, FIFO...) on how the middlewares from the collection are provided to the RequestHandler, and also provides a simple MiddlewareCollectionInterface to implement in a glimpse your own strategy.
Goals
- Simplicity
- Interoperability
Getting started
Requirements
- PHP >= 7.3
Installation
composer require noglitchyo/middleware-collection-request-handler
Run
Create a new instance of the request handler class which can be use as a request handler or as a middleware.
From the constructor
RequestHandler::__construct(MiddlewareCollectionInterface $middlewareCollection, RequestHandlerInterface $defaultRequestHandler = null)
-
$middlewareCollection
: MiddlewareCollectionInterfaceContains the middlewares and defines the strategy used to store the middlewares and to retrieve the next middleware. Some implementations with common strategies are provided: stack (LIFO), queue (FIFO).
-
$defaultRequestHandler = null
: RequestHandlerInterfaceProvides a default response implementing ResponseInterface if none of the middlewares in the collection was able to create one.
Some examples of what could be a "default request handler":
- with the ADR pattern, the default request handler might be your action class.*
- with the MVC pattern, the default request handler might be the action method of your controller.
From the factory method
RequestHandler::fromCallable(callable $callable, MiddlewareCollectionInterface $middlewareCollection)
It creates a RequestHandler instance by wrapping the given callable
inside an anonymous instance of RequestHandlerInterface.
The callable is the $defaultRequestHandler. It MUST returns a response implementing ResponseInterface.
Example
Below, this is how simple it is to get the middleware handler running:
<?php use NoGlitchYo\MiddlewareCollectionRequestHandler\RequestHandler; use NoGlitchYo\MiddlewareCollectionRequestHandler\Collection\SplStackMiddlewareCollection; use Psr\Http\Server\MiddlewareInterface; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Server\RequestHandlerInterface; use Psr\Http\Message\ResponseInterface; // Instantiate a collection of middlewares with an anonymous middleware class. // In this example, we are using a "stack" implementation of the collection. $middlewareCollection = new SplStackMiddlewareCollection([ new class implements MiddlewareInterface{ public function process(ServerRequestInterface $request, RequestHandlerInterface $handler) : ResponseInterface{ return $handler->handle($request); } } ]); // Let's add one more middleware in the collection (this time, from a callable) $middlewareCollection->addFromCallable(function(ServerRequestInterface $request, RequestHandlerInterface $handler){ return $handler->handle($request); }); // Instantiate a new request handler with a default handler and the middleware collection. $requestHandler = RequestHandler::fromCallable( function (ServerRequestInterface $serverRequest){ return new /* instance of ResponseInterface */; }, $middlewareCollection ); // As a RequestHandler: // Pass the request to the request handler which will dispatch the request to the middlewares. $response = $requestHandler->handle(/* ServerRequestInterface */);
Create a custom MiddlewareCollectionInterface implementation
It is easy to create a new MiddlewareCollectionInterface implementation if needed. The interface requires only 3 methods:
<?php interface MiddlewareCollectionInterface { /** * Must return true if there is no middleware in the collection to process. * @return bool */ public function isEmpty(): bool; /** * Must return the next middleware to process in the collection. * Depending on the implemented strategy, the middleware MAY not be removed from the collection. * @return MiddlewareInterface */ public function next(): MiddlewareInterface; /** * Add a middleware instance of MiddlewareInterface to the collection. * * @param MiddlewareInterface $middleware * * @return MiddlewareCollectionInterface */ public function add(MiddlewareInterface $middleware): MiddlewareCollectionInterface; }
Tests
Would like to the run the test suite? Go ahead:
composer test
References
https://www.php-fig.org/psr/psr-15/
License
This project is licensed under the MIT License - see the LICENSE.md file for details.