engelsystem/src/Middleware/Dispatcher.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

71 lines
1.9 KiB
PHP
Raw Normal View History

2018-08-07 03:18:22 +02:00
<?php
namespace Engelsystem\Middleware;
use Engelsystem\Application;
use InvalidArgumentException;
use LogicException;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use Psr\Http\Server\MiddlewareInterface;
use Psr\Http\Server\RequestHandlerInterface;
class Dispatcher implements MiddlewareInterface, RequestHandlerInterface
{
use ResolvesMiddlewareTrait;
2018-08-07 03:18:22 +02:00
protected RequestHandlerInterface $next;
/**
2018-08-11 23:46:28 +02:00
* @param MiddlewareInterface[]|string[] $stack
2018-08-07 03:18:22 +02:00
*/
public function __construct(protected array $stack = [], protected ?Application $container = null)
2018-08-07 03:18:22 +02:00
{
}
/**
* Process an incoming server request and return a response, optionally delegating
* response creation to a handler.
*
* Could be used to group middleware
*/
public function process(
ServerRequestInterface $request,
RequestHandlerInterface $handler
): ResponseInterface {
$this->next = $handler;
return $this->handle($request);
}
/**
* Handle the request and return a response.
*
* It calls all configured middleware and handles their response
*/
public function handle(ServerRequestInterface $request): ResponseInterface
{
$middleware = array_shift($this->stack);
if (!$middleware) {
if ($this->next) {
return $this->next->handle($request);
}
throw new LogicException('Middleware queue is empty');
}
$middleware = $this->resolveMiddleware($middleware);
2018-08-07 03:18:22 +02:00
if (!$middleware instanceof MiddlewareInterface) {
throw new InvalidArgumentException('Middleware is no instance of ' . MiddlewareInterface::class);
}
return $middleware->process($request, $this);
}
public function setContainer(Application $container): void
{
$this->container = $container;
}
}