Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/symfony/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Symfony 如何在OroCRM中扩展身份验证_Symfony_Orocrm - Fatal编程技术网

Symfony 如何在OroCRM中扩展身份验证

Symfony 如何在OroCRM中扩展身份验证,symfony,orocrm,Symfony,Orocrm,大家好 我需要扩展身份验证机制以满足我的需要。 为了做到这一点,我创造了 1) 我更改了防火墙设置 main: ... #organization-form-login: simple_form: authenticator: my_authenticator csrf_provider: form.c

大家好

我需要扩展身份验证机制以满足我的需要。 为了做到这一点,我创造了

1) 我更改了防火墙设置

    main:
            ...
            #organization-form-login:
            simple_form:
                authenticator:              my_authenticator
                csrf_provider:              form.csrf_provider
                check_path:                 oro_user_security_check
                login_path:                 oro_user_security_login
            ...
2) 我为我的_验证器创建了服务

services:
    ...
    my_authenticator:
        class:     OQ\SecurityBundle\Security\MyAuthenticator
        arguments:
            - @oro_organization.organization_manager
    ...
namespace OQ\SecurityBundle\Security;

use Symfony\Component\Config\Definition\Exception\Exception;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Security\Core\Authentication\SimpleFormAuthenticatorInterface;
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
use Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface;
use Symfony\Component\Security\Core\Exception\AuthenticationException;
use Symfony\Component\Security\Core\Exception\UsernameNotFoundException;
use Symfony\Component\Security\Core\User\UserProviderInterface;
Use Oro\Bundle\SecurityBundle\Authentication\Token\UsernamePasswordOrganizationToken;
use Oro\Bundle\OrganizationBundle\Entity\Manager\OrganizationManager;

class MyAuthenticator implements SimpleFormAuthenticatorInterface
{
    /** @var OrganizationManager */
    protected $manager;

    public function __construct(OrganizationManager $manager)
    {
        $this->manager = $manager;
    }

    public function authenticateToken(TokenInterface $token, UserProviderInterface $userProvider, $providerKey)
    {

        // Here will be my special checks

        //Here i try to get username and force authentication

        try {
            $user = $userProvider->loadUserByUsername($token->getUsername());
        } catch (UsernameNotFoundException $e) {
            throw new AuthenticationException('This user not allowed');
        }

        // If everythin' is ok - create a token
        if ($user) {
            return new UsernamePasswordOrganizationToken(
                $user,
                $user->getPassword(),
                $providerKey,
                $this->manager->getOrganizationById(1)
            );
        } else {
            throw new AuthenticationException('Invalid username or password');
        }


    }

    public function supportsToken(TokenInterface $token, $providerKey)
    {
        return $token instanceof UsernamePasswordOrganizationToken
        && $token->getProviderKey() === $providerKey;
    }

    public function createToken(Request $request, $username, $password, $providerKey)
    {
        //UsernamePasswordOrganizationToken
        return new UsernamePasswordOrganizationToken($username, $password, $providerKey, $this->manager->getOrganizationById(1));
    }
}
3) 这是MyAuthenticator的代码

services:
    ...
    my_authenticator:
        class:     OQ\SecurityBundle\Security\MyAuthenticator
        arguments:
            - @oro_organization.organization_manager
    ...
namespace OQ\SecurityBundle\Security;

use Symfony\Component\Config\Definition\Exception\Exception;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Security\Core\Authentication\SimpleFormAuthenticatorInterface;
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
use Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface;
use Symfony\Component\Security\Core\Exception\AuthenticationException;
use Symfony\Component\Security\Core\Exception\UsernameNotFoundException;
use Symfony\Component\Security\Core\User\UserProviderInterface;
Use Oro\Bundle\SecurityBundle\Authentication\Token\UsernamePasswordOrganizationToken;
use Oro\Bundle\OrganizationBundle\Entity\Manager\OrganizationManager;

class MyAuthenticator implements SimpleFormAuthenticatorInterface
{
    /** @var OrganizationManager */
    protected $manager;

    public function __construct(OrganizationManager $manager)
    {
        $this->manager = $manager;
    }

    public function authenticateToken(TokenInterface $token, UserProviderInterface $userProvider, $providerKey)
    {

        // Here will be my special checks

        //Here i try to get username and force authentication

        try {
            $user = $userProvider->loadUserByUsername($token->getUsername());
        } catch (UsernameNotFoundException $e) {
            throw new AuthenticationException('This user not allowed');
        }

        // If everythin' is ok - create a token
        if ($user) {
            return new UsernamePasswordOrganizationToken(
                $user,
                $user->getPassword(),
                $providerKey,
                $this->manager->getOrganizationById(1)
            );
        } else {
            throw new AuthenticationException('Invalid username or password');
        }


    }

    public function supportsToken(TokenInterface $token, $providerKey)
    {
        return $token instanceof UsernamePasswordOrganizationToken
        && $token->getProviderKey() === $providerKey;
    }

    public function createToken(Request $request, $username, $password, $providerKey)
    {
        //UsernamePasswordOrganizationToken
        return new UsernamePasswordOrganizationToken($username, $password, $providerKey, $this->manager->getOrganizationById(1));
    }
}
当我尝试验证用户身份时,我成功地登录,但除了黑头和探查器之外,我什么也看不到。分析器告诉我,我是以用户名(黄色)登录的,没有经过身份验证(红色)。 你能给我一个建议吗?如何使t工作?
还有一个问题-如何在此验证器类中检索用户的组织?

如果您检查UsernamePasswordToken构造函数,您将看到它要求您传递$roles以使其经过身份验证
parent::setAuthenticated(count($roles)>0)

而且在setAuthenticated之后不可能更改authenticate标志(参见代码why)

还要检查UserAuthenticationProvider类以了解发生了什么


我希望这会有所帮助。

如果您检查UsernamePasswordToken构造函数,您将看到它需要您传递$roles,以便对其进行身份验证
parent::setAuthenticated(count($roles)>0)

而且在setAuthenticated之后不可能更改authenticate标志(参见代码why)

还要检查UserAuthenticationProvider类以了解发生了什么


我希望这会有所帮助。

如果您检查UsernamePasswordToken构造函数,您将看到它需要您传递$roles,以便对其进行身份验证
parent::setAuthenticated(count($roles)>0)

而且在setAuthenticated之后不可能更改authenticate标志(参见代码why)

还要检查UserAuthenticationProvider类以了解发生了什么


我希望这会有所帮助。

如果您检查UsernamePasswordToken构造函数,您将看到它需要您传递$roles,以便对其进行身份验证
parent::setAuthenticated(count($roles)>0)

而且在setAuthenticated之后不可能更改authenticate标志(参见代码why)

还要检查UserAuthenticationProvider类以了解发生了什么


我希望这有帮助。

那就好了!我没有指定用户角色,因为此参数在UsernamePasswordOrganizationToken中是可选的。现在它工作了,谢谢!坐!我没有指定用户角色,因为此参数在UsernamePasswordOrganizationToken中是可选的。现在它工作了,谢谢!坐!我没有指定用户角色,因为此参数在UsernamePasswordOrganizationToken中是可选的。现在它工作了,谢谢!坐!我没有指定用户角色,因为此参数在UsernamePasswordOrganizationToken中是可选的。现在它工作了,谢谢!