Class RedirectHandler
This handler will redirect the response if one of configured exception classes is encountered.
Namespace: Authorization\Middleware\UnauthorizedHandler
Property Summary
-
$defaultOptions protected
arrayDefault config:
Method Summary
-
checkException() protected
Checks if an exception matches one of the classes.
-
getUrl() protected
Returns the url for the Location header.
-
handle() public
Handles the unauthorized request. The modified response should be returned.
Method Detail
checkException() ¶ protected
checkException(Authorization\Exception\Exception $exception, Exception[] $exceptions): bool
Checks if an exception matches one of the classes.
Parameters
-
Authorization\Exception\Exception$exception Exception instance.
-
Exception[]$exceptions A list of exception classes.
Returns
boolgetUrl() ¶ protected
getUrl(Psr\Http\Message\ServerRequestInterface $request, array $options): string
Returns the url for the Location header.
Parameters
-
Psr\Http\Message\ServerRequestInterface$request Server request.
-
array$options Options.
Returns
stringhandle() ¶ public
handle(Authorization\Exception\Exception $exception, Psr\Http\Message\ServerRequestInterface $request, array $options = []): Psr\Http\Message\ResponseInterface
Handles the unauthorized request. The modified response should be returned.
Return a response with a location header set if an exception matches.
Parameters
-
Authorization\Exception\Exception$exception -
Psr\Http\Message\ServerRequestInterface$request -
array$options optional
Returns
Psr\Http\Message\ResponseInterfaceProperty Detail
$defaultOptions ¶ protected
Default config:
exceptions- A list of exception classes.url- Url to redirect to.queryParam- Query parameter name for the target url.statusCode- Redirection status code.
Type
array