gpt4 book ai didi

doctrine-orm - 使用 Doctrine 2 MongoDbODM 模块进行身份验证

转载 作者:行者123 更新时间:2023-12-04 02:46:53 26 4
gpt4 key购买 nike

我正在尝试使用 Zend2 和 DoctrineODMModule 设置登录(身份验证),但出现错误。 enter image description here

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

有什么建议我做错了吗?或者我必须做什么?

最佳答案

我是通过以下方式完成的。在学说 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 中创建 Controller

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,
));
}

关于doctrine-orm - 使用 Doctrine 2 MongoDbODM 模块进行身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18657815/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com