我无法通过sonataadmin仪表板更新用户密码。
我使用symfony2 FosUserBundle2.0 SonataAdminBundle(但不使用SonataUserBundle)并按照文档进行操作。
MyUserBundle\Admin\UserAdmin.php
类UserAdmin像这样扩展Admin
protected function configureFormFields(FormMapper $formMapper)
{
$formMapper
......
->add('plainPassword', 'repeated', array(
'type' => 'password',
'options' => array('translation_domain' => 'FOSUserBundle'),
'first_options' => array('label' => 'form.password'),
'second_options' => array('label' => 'form.password_confirmation'),
'invalid_message' => 'fos_user.password.mismatch',
'required' => false,
)
)
..
}
使用sonataadminbundle
信息中心创建新用户时没有问题,但是当我使用信息中心更新密码时,数据库中的密码不会更改。
其他人可以更新但密码,我不知道为什么。没有任何错误信息。
我是symfony2的新手,有人帮我吗?
感谢kwozny,现在我解决了它〜 我没有改变configureFormFields函数的功能,只需按照kwozny的建议,添加以下代码。我不知道为什么,但我的工作! 我可以更新密码,当我更新其他密码(密码字段为空)时,密码不会更改。
public function prePersist($object)
{
parent::prePersist($object);
}
public function preUpdate($object)
{
parent::preUpdate($object);
}
答案 0 :(得分:7)
那是因为您必须捕获对象User(preUpdate()和prePersist())并使用$ user-> setPlainPassword设置密码。这就是我的代码的样子:
相反:
->add('plainPassword', 'repeated', array(
'type' => 'password',
'options' => array('translation_domain' => 'FOSUserBundle'),
'first_options' => array('label' => 'form.password'),
'second_options' => array('label' => 'form.password_confirmation'),
'invalid_message' => 'fos_user.password.mismatch',
'required' => false,
)
)
我有:
->add('newPass', 'text', array(
'label' => 'New password (empty filed means no changes)',
'required' => FALSE
))
然后在同一个管理文件中:
public function prePersist($object) {
parent::prePersist($object);
$this->updateUser($object);
}
public function preUpdate($object) {
parent::preUpdate($object);
$this->updateUser($object);
}
public function updateUser(\AppBundle\Entity\User $u) {
if ($u->getNewPass()) {
$u->setPlainPassword($u->getNewPass());
}
$um = $this->getConfigurationPool()->getContainer()->get('fos_user.user_manager');
$um->updateUser($u, false);
}
答案 1 :(得分:0)
我找到了一个更好的方法,基于kamwoz答案,它对我有用。
在FormMapper中:
$passwordoptions=array(
'type' => 'password',
'options' => array('translation_domain' => 'FOSUserBundle'),
'first_options' => array('label' => 'form.password'),
'second_options' => array('label' => 'form.password_confirmation'),
'translation_domain' => 'FOSUserBundle',
'invalid_message' => 'fos_user.password.mismatch',
);
$this->record_id = $this->request->get($this->getIdParameter());
if (!empty($this->record_id)) {
$passwordoptions['required'] = false;
} else {
$passwordoptions['required'] = true;
}
$formMapper
// ...
->add('plainPassword', 'repeated', $passwordoptions)
注意:如果用户存在,我添加了条件:不需要密码,新用户:需要传递。
现在只需在admin:
中添加这样的代码public function prePersist($object) {
parent::prePersist($object);
$this->updateUser($object);
}
public function preUpdate($object) {
parent::preUpdate($object);
$this->updateUser($object);
}
public function updateUser(\AppBundle\Entity\User $u) {
$um = $this->getConfigurationPool()->getContainer()->get('fos_user.user_manager');
$um->updateUser($u, false);
}
无需更改用户实体,只需像往常一样使用plainPassword。
答案 2 :(得分:0)
在我的情况下添加
public function preUpdate($object) {
parent::preUpdate($object);
//$this->updateUser($object);
if($object->getPlainPassword())
{
$um = $this->getConfigurationPool()->getContainer()->get('fos_user.user_manager');
$um->updateCanonicalFields($object);
$um->updatePassword($object);
}
}
答案 3 :(得分:0)
就我而言,我已经以这种方式解决了。我的答案如下。我已经使用了以上答案的某些代码以及奏鸣曲类型为重复的代码,因此对于相同的密码验证,验证仍然有效。
public function prePersist($object)
{
parent::prePersist($object);
}
public function preUpdate($object)
{
parent::preUpdate($object);
$this->updateUser($object);
}
//update password
public function updateUser(\AppBundle\Entity\User $u) {
if ($u->getPlainPassword()) {
$u->setPlainPassword($u->getPlainPassword());
}
$um = $this->getConfigurationPool()->getContainer()->get('fos_user.user_manager');
$um->updateUser($u, false);
}
protected function configureFormFields(FormMapper $formMapper)
{
$pass_required = false;
//if form is create then add required validation
if (!$this->subject->getId())
$pass_required = true;
$formMapper->add('name', 'text')
->add('email', 'email', array('label' => "Email") )
->add('username', 'text', array('label' => "Username") )
->add('groups', 'entity', array(
'class' => 'AppBundle\Entity\Group',
'required' => false,
'multiple' =>true
))
->add('plainPassword', 'repeated', array(
'type' => 'password',
'options' => array('translation_domain' => 'FOSUserBundle'),
'first_options' => array('label' => 'form.password'),
'second_options' => array('label' => 'form.password_confirmation'),
'invalid_message' => 'fos_user.password.mismatch',
'required' => $pass_required,
))
->end()
;
}