2017 © Pedro Peláez
 

library middleware-list-universal-module

Cross-framework module providing a service containing a list of middlewares

image

thecodingmachine/middleware-list-universal-module

Cross-framework module providing a service containing a list of middlewares

  • Tuesday, June 5, 2018
  • by mouf
  • Repository
  • 8 Watchers
  • 2 Stars
  • 37,669 Installations
  • PHP
  • 9 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 7 Versions
  • 31 % Grown

The README.md

http-interop middleware list universal module

This package simply providers an http-interop middleware list to any container-interop compatible framework/container. The middleware list is empty. Any package can come and add a middleware to the list., (*1)

Installation

This package is typically used by packages providing middlewares., (*2)

composer require thecodingmachine/middleware-list-universal-module

If your container supports autodiscovery by thecodingmachine/discovery, there is nothing more to do. Otherwise, you need to register the TheCodingMachine\MiddlewareListServiceProvider into your container., (*3)

Refer to your framework or container's documentation to learn how to register service providers., (*4)

Usage

The middleware queue is registered under the key MiddlewareListServiceProvider::MIDDLEWARES_QUEUE. This is a \SPLPriorityQueue., (*5)

Depending on the middleware you are registering, you generally have a fairly good idea of the order it should run compared to other middlewares., (*6)

Let's split the middlewares in 4 families:, (*7)

  • Utility middlewares: those are typically handled at the beginning of a request. They are used to modify/enrich the response and pass it to other middlewares. In this category, you would put middlewares that compute the response time, middlewares that add geolocation information, middlewares that manage sessions, etc...
  • Routers: those are middlewares that are typically used to handle a request and return a response. They respond on specific routes or pass the request along to the next router if they don't know that route.
  • Page not found routers: those are middlewares in charge of answering a 404 answer if no middleware has handled the request. This is the last "classical" middleware of the queue.
  • Error handling middlewares: Finally, at the very end of the queue, you will find the list of middlewares that handle errors and exceptions. They are in charge of logging or displaying error messages.

Based on those 4 families, the MiddlewareListServiceProvider provides a SPL Priority Queue that one can use to register any middleware at the right point in the queue., (*8)

The service provider defines 12 constants you can use to insert a middleware at a given point:, (*9)

  • MiddlewareOrder::EXCEPTION_EARLY (3050)
  • MiddlewareOrder::EXCEPTION (3000)
  • MiddlewareOrder::EXCEPTION_LATE (2950)
  • MiddlewareOrder::UTILITY_EARLY (2050)
  • MiddlewareOrder::UTILITY (2000)
  • MiddlewareOrder::UTILITY_LATE (1950)
  • MiddlewareOrder::ROUTER_EARLY (1050)
  • MiddlewareOrder::ROUTER (1000)
  • MiddlewareOrder::ROUTER_LATE (950)
  • MiddlewareOrder::PAGE_NOT_FOUND_EARLY (50)
  • MiddlewareOrder::PAGE_NOT_FOUND (0)
  • MiddlewareOrder::PAGE_NOT_FOUND_LATE (-50)

Each "family" has 3 variants: EARLY, NORMAL and LATE, so you can add more fine grained tuning if you want a utility to be triggered before another one, etc..., (*10)

So if you want to register a middleware, you would typically write:, (*11)

$middlewareQueue = $container->get(MiddlewareListServiceProvider::MIDDLEWARES_QUEUE);
/* @var $middlewareQueue \SplPriorityQueue */
$middlewareQueue->insert($myMiddleware, MiddlewareOrder::UTILITY);

The Versions

05/06 2018

1.1.x-dev

1.1.9999999.9999999-dev

Cross-framework module providing a service containing a list of middlewares

  Sources   Download

MIT

The Requires

 

05/06 2018

v1.1.1

1.1.1.0

Cross-framework module providing a service containing a list of middlewares

  Sources   Download

MIT

The Requires

 

21/09 2017

v1.1.0

1.1.0.0

Cross-framework module providing a service containing a list of middlewares

  Sources   Download

MIT

The Requires

 

06/07 2017

1.0.x-dev

1.0.9999999.9999999-dev

Cross-framework module providing a service containing a list of middlewares

  Sources   Download

MIT

The Requires

 

The Development Requires

06/07 2017

v1.0.0

1.0.0.0

Cross-framework module providing a service containing a list of middlewares

  Sources   Download

MIT

The Requires

 

The Development Requires

06/07 2017

v0.2.0

0.2.0.0

Cross-framework module providing a service containing a list of middlewares

  Sources   Download

MIT

The Requires

 

The Development Requires

02/03 2016

v0.1.0

0.1.0.0

Cross-framework module providing a service containing a list of middlewares

  Sources   Download

MIT

The Requires

 

The Development Requires