如何在 Symfony3 中使用对象管理器 [英] How to Use Object Manager in Symfony3

查看:43
本文介绍了如何在 Symfony3 中使用对象管理器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

错误

      Catchable Fatal Error: Argument 2 passed to Acme\StoreBundle\Security\TokenAuthenticator::__construct() must be an instance of Doctrine\Common\EventManager, instance of Doctrine\Bundle\MongoDBBundle\ManagerRegistry given, called in D:\xamppNew\htdocs\mtl_project\var\cache\dev\appDevDebugProjectContainer.php on line 6178 and defined

TokenAuthenticator.php

TokenAuthenticator.php

        <?php


        namespace Acme\StoreBundle\Security;

        use Doctrine\Common\EventManager;
        use Doctrine\Common\Persistence\ObjectManager;
        use Doctrine\Common\Persistence\ObjectRepository;
        use Doctrine\MongoDB\Connection;
        use Doctrine\ODM\MongoDB\Mapping\ClassMetadataInfo;
        use Doctrine\ODM\MongoDB\Mapping\MappingException;
        use Doctrine\ODM\MongoDB\Hydrator\HydratorFactory;
        use Doctrine\ODM\MongoDB\Proxy\ProxyFactory;
        use Doctrine\ODM\MongoDB\Query\FilterCollection;
        use Doctrine\ODM\MongoDB\Repository\RepositoryFactory;

        //use Acme\StoreBundle\Security\TokenAuthenticator;
        use Lexik\Bundle\JWTAuthenticationBundle\Encoder\JWTEncoderInterface;
        use Lexik\Bundle\JWTAuthenticationBundle\TokenExtractor\AuthorizationHeaderTokenExtractor;
        use Symfony\Component\HttpFoundation\Request;
        use Symfony\Component\HttpFoundation\Response;
        use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
        use Symfony\Component\Security\Core\Exception\AuthenticationException;
        use Symfony\Component\Security\Core\Exception\CustomUserMessageAuthenticationException;
        use Symfony\Component\Security\Core\User\UserInterface;
        use Symfony\Component\Security\Core\User\UserProviderInterface;
        use Symfony\Component\Security\Guard\AbstractGuardAuthenticator;

        class TokenAuthenticator extends AbstractGuardAuthenticator
        {
        /**
        * @var JWTEncoderInterface
        */
        private $jwtEncoder;
        /**
        * @var Doctrine\Common\Persistence\ObjectManager
        */
        protected $om;
        /**
        * @param JWTEncoderInterface $jwtEncoder
        * @param ObjectManager       $om
        */
        public function __construct(JWTEncoderInterface $jwtEncoder, Doctrine\Common\Persistence\ObjectManager $om)
        {
        $this->jwtEncoder = $jwtEncoder;
        $this->om = $om;
        }
        /**
        * @inheritdoc
        */
        public function getCredentials(Request $request)
        {
        $extractor = new AuthorizationHeaderTokenExtractor(
        'Bearer',
        'Authorization'
        );
        $token = $extractor->extract($request);
        if (!$token) {
        return;
        }
        return $token;
        }
        /**
        * @inheritdoc
        */
        public function getUser($credentials, UserProviderInterface $userProvider)
        {
        $data = $this->jwtEncoder->decode($credentials);
        if ($data === false) {
        throw new CustomUserMessageAuthenticationException('Invalid Token');
        }
        $username = $data['username'];
        return $this->om
        ->getRepository('UserBundle:User')
        ->findOneBy(['username' => $username]);
        }
        /**
        * @inheritdoc
        */
        public function checkCredentials($credentials, UserInterface $user)
        {
        return true;
        }
        /**
        * @inheritdoc
        */
        public function onAuthenticationFailure(Request $request, AuthenticationException $exception)
        {
        }
        /**
        * @inheritdoc
        */
        public function onAuthenticationSuccess(Request $request, TokenInterface $token, $providerKey)
        {
        }
        /**
        * @inheritdoc
        */
        public function supportsRememberMe()
        {
        return false;
        }
        /**
        * @inheritdoc
        */
        public function start(Request $request, AuthenticationException $authException = null)
        {
        return new Response('Token is missing!', Response::HTTP_UNAUTHORIZED);
        }
        }

参考

Symfony2 中 ObjectManager 和 EntityManager 的区别?

/github.com/doctrine/mongodb-odm/blob/785c5039d51923d22902fa1249d1e3dd64018838/lib/Doctrine/ODM/MongoDB/DocumentManager.php#L44

  • 我是 symfonymongodb 包的新成员

  • im new in symfonymongodb bundle

谁能建议我如何在构造函数中使用对象管理器,因为 symfony 会抛出错误.

can anyone suggest how can i use object manager in contructor as symfony is throwing errors.

推荐答案

doctrine_mongodb 是一个返回 Doctrine\Bundle\MongoDBBundle\ManagerRegistry 对象的服务.您可以通过调用 getManager 来获取 ObjectManager.

doctrine_mongodb is a service that returns a Doctrine\Bundle\MongoDBBundle\ManagerRegistry object. You can get ObjectManager by calling getManager from it.

<?php


namespace Acme\StoreBundle\Security;

use Doctrine\Bundle\MongoDBBundle\ManagerRegistry;
// ...

class TokenAuthenticator extends AbstractGuardAuthenticator
{

    /**
    * @var Doctrine\Common\Persistence\ObjectManager
    */
    protected $om;

    // ...

    public function __construct(JWTEncoderInterface $jwtEncoder, ManagerRegistry $registry)
    {
        // ...
        $this->om = $registry->getManager();
    }

这篇关于如何在 Symfony3 中使用对象管理器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆