zend-expressive 3.0.0alpha2
Added
-
#543 adds support for the final PSR-15 interfaces, and explicitly depends on psr/http-server-middleware.
-
#543 adds a new class,
Zend\Expressive\MiddlewareContainer
. The class decorates a PSR-11ContainerInterface
, and adds the following behavior:- If a class is not in the container, but exists,
has()
will returntrue
. - If a class is not in the container, but exists,
get()
will attempt to instantiate it, caching the instance locally if it is valid. - Any instance pulled from the container or directly instantiated is tested. If it is a PSR-15
RequestHandlerInterface
, it will decorate it in a zend-stratigilityRequestHandlerMiddleware
instance. If the instance is not a PSR-15MiddlewareInterface
, the container will raise aZend\Expressive\Exception\InvalidMiddlewareException
.
- If a class is not in the container, but exists,
-
#543 adds a new class,
Zend\Expressive\MiddlewareFactory
. The class composes aMiddlewareContainer
, and exposes the following methods:callable(callable $middleware) : CallableMiddlewareDecorator
handler(RequestHandlerInterface $handler) : RequestHandlerMiddleware
lazy(string $service) : LazyLoadingMiddleware
prepare($middleware) : MiddlewareInterface
: accepts a string service name, callable,RequestHandlerInterface
,MiddlewareInterface
, or array of such values, and returns aMiddlewareInterface
, raising an exception if it cannot determine what to do.pipeline(...$middleware) : MiddlewarePipe
: passes each argument toprepare()
, and the result toMiddlewarePipe::pipe()
, returning the pipeline when complete.
-
#543 adds the following factory classes, each within the
Zend\Expressive\Container
namespace:ApplicationPipelineFactory
: creates and returns aZend\Stratigility\MiddlewarePipe
to use as the application middleware pipeline.DispatchMiddlewareFactory
: creates and returns aZend\Expressive\Router\DispatchMiddleware
instance.EmitterFactory
: creates and returns aZend\HttpHandlerRunner\Emitter\EmitterStack
instance composing anSapiEmitter
from that same namespace as the only emitter on the stack. This is used as a dependency for theZend\HttpHandlerRunner\RequestHandlerRunner
service.MiddlewareContainerFactory
: creates and returns aZend\Expressive\MiddlewareContainer
instance decorating the PSR-11 container passed to the factory.MiddlewareFactoryFactory
: creates and returns aZend\Expressive\MiddlewareFactory
instance decorating aMiddlewareContainer
instance as pulled from the container.RequestHandlerRunnerFactory
: creates and returns aZend\HttpHandlerRunner\RequestHandlerRunner
instance, using the servicesZend\Expressive\Application
,Zend\HttpHandlerRunner\Emitter\EmitterInterface
,Zend\Expressive\ServerRequestFactory
, andZend\Expressive\ServerRequestErrorResponseGenerator
.RouteMiddlewareFactory
: creates and returns aZend\Expressive\Router\PathBasedRoutingMiddleware
instance.ServerRequestFactoryFactory
: creates and returns acallable
factory for generating a PSR-7ServerRequestInterface
instance; this returned factory is a dependency for theZend\HttpHandlerRunner\RequestHandlerRunner
service.ServerRequestErrorResponseGeneratorFactory
: creates and returns acallable
that accepts a PHPThrowable
in order to generate a PSR-7ResponseInterface
instance; this returned factory is a dependency for theZend\HttpHandlerRunner\RequestHandlerRunner
service, which uses it to generate a response in the scenario that theServerRequestFactory
is unable to create a request instance.
-
#543 adds the class
Zend\Expressive\Container\ApplicationConfigInjectionDelegator
. This class may be used either as a delegator factory on theZend\Expressive\Application
instance, or you may use the two static methods it defines to inject pipeline middleware and/or routes from configuration:injectPipelineFromConfig(Application $application, array $config) : void
injectRoutesFromConfig(Application $application, array $config) : void
These methods work the same way as the associated
Application
methods from version 2, accepting the same configuration. -
#543 adds
Zend\Expressive\ConfigProvider
, which details the default service mappings.
Changed
-
#543 adds dependencies on each of:
- zend-stratigility 3.0.0alpha3
- zend-expressive-router 3.0.0alpha1
- zend-httphandlerrunner 1.0.0
and removes the dependency http-interop/http-server-middleware.
-
#543 renames
Zend\Expressive\Middleware\NotFoundHandler
toZend\Expressive\Middleware\NotFoundMiddleware
, and its accompanying factoryZend\Expressive\Container\NotFoundHandlerFactory
toZend\Expressive\Container\NotFoundMiddlewareFactory
. -
#543 renames
Zend\Expressive\Delegate\NotFoundDelegate
toZend\Expressive\Handler\NotFoundHandler
, updating it to implement the PSR-15RequestHandlerInterface
. It also renames the factoryZend\Expressive\Container\NotFoundDelegateFactory
toZend\Expressive\Container\NotFoundHandlerFactory
. -
#543 refactors
Zend\Expressive\Application
completely.The class no longer extends
Zend\Stratigility\MiddlewarePipe
, and instead implements the PSR-15MiddlewareInterface
andRequestHandlerInterface
.It now requires the following dependencies via constructor injection, in the following order:
Zend\Expressive\MiddlewareFactory
Zend\Stratigility\MiddlewarePipe
; this is the pipeline representing the application.Zend\Expressive\Router\PathBasedRoutingMiddleware
Zend\HttpHandlerRunner\RequestHandlerRunner
It removes all "getter" methods (as detailed in the "Removed" section of this release), but retains the following methods, with the changes described below. Please note: in most cases, these methods accept the same arguments as in the version 2 series, with the exception of callable double-pass middleware (these may be decorated manually using
Zend\Stratigility\doublePassMiddleware()
), and http-interop middleware (no longer supported; rewrite as PSR-15 middleware).-
pipe($middlewareOrPath, $middleware = null) : void
passes its arguments to the composedMiddlewareFactory
'sprepare()
method; if two arguments are provided, the second is passed to the factory, and the two together are passed toZend\Stratigility\path()
in order to decorate them to work as middleware. The prepared middleware is then piped to the composedMiddlewarePipe
instance.As a result of switching to use the
MiddlewareFactory
to prepare middleware, you may now pipeRequestHandlerInterface
instances as well. -
route(string $path, $middleware, array $methods = null, string $name) : Route
passes its$middleware
argument to theMiddlewareFactory::prepare()
method, and then all arguments to the composedPathBasedRoutingMiddleware
instance'sroute()
method.As a result of switching to use the
MiddlewareFactory
to prepare middleware, you may now route toRequestHandlerInterface
instances as well. -
Each of
get
,post
,patch
,put
,delete
, andany
now proxy toroute()
after marshaling the correct$methods
. -
getRoutes() : Route[]
proxies to the composedPathBasedRoutingMiddleware
instance. -
handle(ServerRequestInterface $request) : ResponseInterface
proxies to the composedMiddlewarePipe
instance'shandle()
method. -
process(ServerRequestInterface $request, RequestHandlerInterface $handler) : ResponseInterface
proxies to the composedMiddlewarePipe
instance'sprocess()
method. -
run() : void
proxies to the composedRequestHandlerRunner
instance. Please note that the method no longer accepts any arguments.
-
#543 modifies the
Zend\Expressive\Container\ApplicationFactory
to reflect the changes to theZend\Expressive\Application
class as detailed above. It pulls the following services to inject via the constructor:Zend\Expressive\MiddlewareFactory
Zend\Stratigility\ApplicationPipeline
, which should resolve to aMiddlewarePipe
instance; use theZend\Expressive\Container\ApplicationPipelineFactory
.Zend\Expressive\Router\PathBasedRoutingMiddleware
Zend\HttpHandlerRunner\RequestHandlerRunner
Deprecated
- Nothing.
Removed
-
#543 removes support for http-interop/http-server-middleware.
-
#543 removes the class
Zend\Expressive\Middleware\RouteMiddleware
. Use thePathBasedRoutingMiddleware
orRouteMiddleware
from zend-expressive-router instead; the factoryZend\Expressive\Container\RouteMiddlewareFactory
will return aPathBasedRoutingMiddleware
instance for you. -
#543 removes the class
Zend\Expressive\Middleware\DispatchMiddleware
. Use theDispatchMiddleware
from zend-expressive-router instead; the factoryZend\Expressive\Container\DispatchMiddlewareFactory
will return an instance for you. -
#543 removes the class
Zend\Expressive\Emitter\EmitterStack
; use the classZend\HttpHandlerRunner\Emitter\EmitterStack
instead. -
#543 removes the following methods from
Zend\Expressive\Application
:pipeRoutingMiddleware()
: usepipe(\Zend\Expressive\Router\PathBasedRoutingMiddleware::class)
instead.pipeDispatchMiddleware()
: usepipe(\Zend\Expressive\Router\DispatchMiddleware::class)
instead.getContainer()
getDefaultDelegate()
: ensure you pipe middleware capable of returning a response at the innermost layer; this can be done by decorating a request handler usingZend\Stratigility\Middleware\RequestHandlerMiddleware
, usingZend\Expressive\Middleware\NotFoundMiddleware
, or other approaches.getEmitter()
: use theZend\HttpHandlerRunner\Emitter\EmitterInterface
service from the container.injectPipelineFromConfig()
: use the newApplicationConfigInjectionDelegator
and/or the static method of the same name it defines.injectRoutesFromConfig()
: use the newApplicationConfigInjectionDelegator
and/or the static method of the same name it defines.
-
#543 removes the class
Zend\Expressive\AppFactory
.
Fixed
- Nothing.