Routing vs Piping

Expressive provides two mechanisms for adding middleware to your application:

Piping

zend-stratigility provides a mechanism termed piping for composing middleware in an application. When you pipe middleware to the application, it is added to a queue, and dequeued in order until a middleware returns a response instance. If none ever returns a response instance, execution is delegated to a "final handler", which determines whether or not to return an error, and, if so, what kind of error to return.

Stratigility also allows you to segregate piped middleware to specific paths. As an example:

$app->pipe('/api', $apiMiddleware);

will execute $apiMiddleware only if the path matches /api; otherwise, it will skip over that middleware.

This path segregation, however, is limited: it will only match literal paths. This is done purposefully, to provide excellent baseline performance, and to prevent feature creep in the library.

Expressive uses and exposes piping to users, with one addition: middleware may be specified by service name, and zend-expressive will lazy-load the service only when the middleware is invoked.

In order to accomplish the lazy-loading, zend-expressive wraps the calls to fetch the middleware from the container and to dispatch that middleware inside a closure. This poses a problem for error handling middleware, however, as zend-stratigility identifies error handling middleware by its arity (number of function arguments); as such, zend-expressive defines an additional method for piping service-driven error handling middleware, pipeErrorHandler(). The method has the same signature as pipe():

// Without a path:
$app->pipeErrorHandler('error handler service name');

// Specific to a path:
$app->pipeErrorHandler('/api', 'error handler service name');

This method will return a closure using the error middleware signature.

Routing

Routing is the process of discovering values from the incoming request based on defined criteria. That criteria might look like:

In each of the above, if the router determines that the request matches the criteria, it will indicate:

Most routers allow you to define arbitrarily complex rules, and many even allow you to define:

As such, routing is more powerful than the literal path matching used when piping, but it is also more costly (though routers such as FastRoute largely make such performance issues moot).

When to Pipe

In Expressive, we recommend that you pipe middleware in the following circumstances:

When to Route

Use routing when:

The above cover most use cases; in other words, most middleware should be added to the application as routed middleware.

Controlling middleware execution order

As noted in the earlier section on piping, piped middleware is queued, meaning it has a FIFO ("first in, first out") execution order.

Additionally, zend-expressive's routing capabilities are themselves implemented as piped middleware.

As such, if you programmatically configure the router and add routes without using Application::route(), you may run into issues with the order in which piped middleware (middleware added to the application via the pipe() method) is executed.

To ensure that everything executes in the correct order, you can call Application::pipeRouteMiddleware() at any time to pipe it to the application. As an example, after you have created your application instance:

$app->pipe($middlewareToExecuteFirst);
$app->pipeRouteMiddleware();
$app->pipe($errorMiddleware);

If you fail to add any routes via Application::route() or to call Application::pipeRouteMiddleware(), the routing middleware will be called when executing the application. This means that it will be last in the middleware pipeline, which means that if you registered any error middleware, it can never be invoked.

To sum:

If you use the provided Zend\Expressive\Container\ApplicationFactory for retrieving your Application instance, you can do this by defining pre- and post-pipeline middleware, and the factory will ensure everything is registered correctly.