3

我正在尝试使用 Zend2 和 DoctrineODMModule 设置登录(身份验证),但出现错误。 在此处输入图像描述

我已按照教程在github上使用 DoctorineODMModule 设置 Zend2 的身份验证

任何建议我做错了什么?或者我必须做什么?

4

2 回答 2

3

我已经通过以下方式做到了。在学说 mdule.config.php

'authentication'    => array(
    'odm_default'   => array(
    'object_manager'        => 'doctrine.documentmanager.odm_default',
    'identity_class'        => 'Admin\Document\User',
    'identity_property'     => 'username',
    'credential_property'   => 'password',
    ),
),

'odm_driver' => array(
    'class' => 'Doctrine\ODM\MongoDB\Mapping\Driver\AnnotationDriver',
    'paths' => array(__DIR__ . '/../src/' . __NAMESPACE__ . '/Document')
),
'odm_default' => array(
    'drivers' => array(
    __NAMESPACE__ . '\Document' => 'odm_driver'
    )
)

在 Admin/Document/User.php 中创建了两个方法 getUsername 和 getPassword。

public function getUsername(){
    return $this->username;     
}

public function getPassword(){
    return $this->password;
}

在 index controller.php 中创建控制器

public function loginAction(){
    $this->layout('layout/login-layout.phtml');
    $login_error=false;
    $loginForm = new LoginForm();
    if ($this->request->isPost())
    {
        $loginForm->setData($this->request->getPost());
        if ($loginForm->isValid())
        {
           // try {
            //  throw new \Exception("My exception");

            $data = $loginForm->getData();
            $authService = $this->getServiceLocator()
            ->get('doctrine.authenticationservice.odm_default');

            $adapter = $authService->getAdapter();
            $adapter->setIdentityValue($data['username']);  // i am using username
            $adapter->setCredentialValue(md5($data['password']));
            $authResult = $authService->authenticate();
            if ($authResult->isValid()) {
                $this->redirect()->toRoute('admin_index'); // or last viewed page
            }
            /*} catch (Exception $e) {
                echo "Caught exception $e\n";
                echo $e->getPrevious();
                $login_error=false;
                return new ViewModel(array(
                        'loginForm' => $loginForm,
                        'login_error' => $login_error,
                ));
                //exit;
            }/
            return array(
                    'loginForm' => $loginForm,
                    'errors' => 'username or password is not valid',
            );

            $this->redirect()->toRoute('admin_index');
        }  else {
        //
        // LOG Event ( login|password not valide )
        //
        //Zend\Debug\Debug::dump("not valid data");
        //Zend\Debug\Debug::dump($loginForm->getMessages());
            $login_error=true;
        }//* */
        }
    }
    //
    return new ViewModel(array(
            'loginForm' => $loginForm,
            'login_error' => $login_error,
    ));
}
于 2013-09-16T14:51:43.857 回答
1

用你给的信息,

A value for the identity was not provided prior to authentication with ObjectRepository authentication adapter

我想说要么您没有在您的用户文档上提供用作身份的字段,要么在身份验证过程中(在您的操作中)您没有填充身份的值(又名登录)

请提供有关您的应用程序的更多信息(odm 模块配置,身份类...),以便为您提供更好的帮助

作为配置,你应该有类似的stg:

...
'doctrine' => array(
    'driver' => array(
        __NAMESPACE__ . '_orm_driver' => array(
            'class' => 'Doctrine\ORM\Mapping\Driver\AnnotationDriver',
            'cache' => 'array',
            'paths' => array(__DIR__ . '/../src/' . __NAMESPACE__ . '/Entity')
        ),
        'orm_default' => array(
            'drivers' => array(
                __NAMESPACE__ . '\Entity' => __NAMESPACE__ . '_orm_driver'
            )
        ),
        __NAMESPACE__ . '_odm_driver' => array(
            'class' => 'Doctrine\ODM\MongoDB\Mapping\Driver\AnnotationDriver',
            'paths' => array(__DIR__ . '/../src/' . __NAMESPACE__ . '/Document')
        ),
        'odm_default' => array(
            'drivers' => array(
                __NAMESPACE__ . '\Document' => __NAMESPACE__ . '_odm_driver'
            )
        )
    ),
    'authentication' => array(
        'odm_default' => array(
            'objectManager' => 'doctrine.documentmanager.odm_default',
            'identityClass' => 'Application\Document\User',
            'identityProperty' => 'username',
            'credentialProperty' => 'password',
            'credentialCallable' => 'Application\Utils::hashPassword' // Not needed if you don't hash passwords
        ),
    ),
),
...

这对我的一些项目非常有用

于 2013-09-06T14:45:53.237 回答