【发布时间】:2019-06-01 16:30:18
【问题描述】:
我正在编写一个网络应用程序,由于不同客户的需求,我希望它具有灵活的身份验证选项。我正在使用官方的 cakephp/authentication 库,但它没有 OpenID Connect Authenticator,所以我自己滚动。
我遇到的问题是我无法从身份验证器返回带有重定向标头的修改后的Cake\Http\Response 对象。 AuthenticatorInterface 需要 authenticate() 方法返回一个 Result 对象。我希望不必修改 Authenticator 类,因为如果我只是要重写它的流程,它有点违背使用库的目的。
class OidcAuthenticator extends AbstractAuthenticator
{
public function authenticate(ServerRequestInterface $request, ResponseInterface $response)
{
// non-pertinent code removed for brevity
return $this->_requestAuthorization($request, $response);
}
private function _requestAuthorization(ServerRequestInterface $request, ResponseInterface $response)
{
$auth_endpoint = $this->getConfig('authorization_endpoint');
$response_type = 'code';
$state = $this->_setState($request, Security::randomString());
$auth_params = [
'response_type' => $response_type,
'redirect_uri' => 'http://localhost:8080/',
'client_id' => $this->getConfig('client_id'),
'nonce' => $nonce,
'state' => $state,
'scope' => 'openid'
];
$auth_endpoint .= (strpos($auth_endpoint, '?') === false ? '?' : '&') .
http_build_query($auth_params, null, '&');
/* What I want to return */
$response = $response->withHeader('Location', $auth_endpoint);
/* What I have to return */
return new Result(null, Result::FAILURE_MISSING_CREDENTIALS);
}
}
我可以做到这一点
$request->getAttribute('session')->close();
header('Location: ' . $auth_endpoint, true, 302);
exit();
但这似乎违反了 CakePHP 的约定。理想情况下,我可以将新的响应对象嵌入到结果中,并且身份验证中间件会捕获并发出它,而不是 UnauthenticatedException。这是一个最佳实践问题,但希望它对 SO 来说足够具体。
TL;DR:当无法将响应对象返回到中间件队列时如何重定向?
【问题讨论】:
标签: authentication cakephp openid-connect