* * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ declare(strict_types=1); namespace OCC\PSR15; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Server\MiddlewareInterface; use Psr\Http\Server\RequestHandlerInterface; /** * Abstract class implementing Psr\Http\Server\MiddlewareInterface. * * @author Sebastian Meyer * @package opencultureconsulting/psr15 */ abstract class AbstractMiddleware implements MiddlewareInterface { /** * The PSR-15 Server Request Handler. */ protected RequestHandlerInterface $handler; /** * Process an incoming server request and produce a response. * @see MiddlewareInterface::process() * * @param ServerRequestInterface $request The server request to process * @param RequestHandlerInterface $handler The request handler to delegate to * * @return ResponseInterface The response object */ final public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface { $this->handler = $handler; // Manipulate request if necessary. $request = $this->processRequest($request); // Delegate request to next middleware and get response. $response = $handler->handle($request); // Manipulate response if necessary. $response = $this->processResponse($response); // Return response to previous middleware. return $response; } /** * Process an incoming server request before delegating to next middleware. * * @param ServerRequestInterface $request The incoming server request * * @return ServerRequestInterface The processed server request */ protected function processRequest(ServerRequestInterface $request): ServerRequestInterface { return $request; } /** * Process an incoming response before returning it to previous middleware. * * @param ResponseInterface $response The incoming response * * @return ResponseInterface The processed response */ protected function processResponse(ResponseInterface $response): ResponseInterface { return $response; } /** * Allow the middleware to be invoked directly. * @see AbstractMiddleware::process() * * @param ServerRequestInterface $request The server request to process * @param RequestHandlerInterface $handler The request handler to delegate to * * @return ResponseInterface The response object */ final public function __invoke(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface { return $this->process($request, $handler); } }