当前位置:  开发笔记 > 编程语言 > 正文

OR关系中的多个Guard身份验证器

如何解决《OR关系中的多个Guard身份验证器》经验,为你挑选了1个好方法。

我正在使用Symfony 2.8的新Guard身份验证系统,我想允许用户使用两种方法之一进行身份验证.所以我已经为两者实现了Guard身份验证器,并像这样配置它们:

security:
  firewalls:
    my_firewall:
      pattern: ^/some-pattern
      guard:
        authenticators:
          - my_first_auth
          - my_second_auth
        entry_point: my_first_auth

问题是它们运行,所以如果用户在第一次成功但在第二次成功时失败,他会得到一个禁止的响应.在这种情况下,我希望他成功.

有没有办法在OR关系中配置多个Guard身份验证器,这样如果第一个成功,第二个会被跳过?



1> Ian Phillips..:

最后,我自己手动实现了一个解决方案,利用if if getCredentials()返回null 的事实,跳过了身份验证器.两个身份验证器都有如下代码:

class MyAuthenticator extends AbstractGuardAuthenticator {
    private $tokenStorage;

    public function __construct(TokenStorageInterface $tokenStorage) {
        $this->tokenStorage = $tokenStorage;
    }

    public function getCredentials(Request $request) {
        if ($this->isAlreadyAuthenticated()) {
            return null; // Skip this authenticator
        }
        // Get the credentials and continue with this authenticator
    }

    protected function isAlreadyAuthenticated() {
        $token = $this->tokenStorage->getToken();
        return $token && $token->isAuthenticated();
    }

推荐阅读
手机用户2502851955
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有