管理者ユーザーを追加するための私のコードは次のとおりです。
public function addAction(Request $request){
$admin=new Admin();
$form=$this->createForm(new AdminType(), $admin);
if($request->getMethod()=='POST'){
$form->bindRequest($request);
if($form->isValid()){
$factory = $this->get('security.encoder_factory');
$encoder = $factory->getEncoder($admin);
$password = $encoder->encodePassword($admin->getPassword(), $admin->getSalt());
$admin->setPassword($password);
$em=$this->getDoctrine()->getEntityManager();
$em->persist($admin);
$em->flush();
}
}
return $this->render('PuzzleAdminBundle:Admin:add.html.twig', array(
'form'=>$form->createView()
));
}
ここに私のsecurity.ymlがあります:
security:
encoders:
Puzzle\AdminBundle\Entity\Admin: sha512
Symfony\Component\Security\Core\User\User: plaintext
role_hierarchy:
ROLE_ADMIN: ROLE_USER
ROLE_SUPER_ADMIN: [ROLE_USER, ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH]
providers:
chain_providers:
chain:
providers: [admin_db, in_memory]
admin_db:
entity: { class: Puzzle\AdminBundle\Entity\Admin, property: username }
in_memory:
memory:
users:
root: { password: 123456, roles: [ 'ROLE_SUPER_ADMIN' ] }
root でログインしたいとき、またはエンティティ エンコーダーをプレーンテキストに設定したときは、すべて問題ありません。エンティティ エンコーダーを sha512 に設定すると、常に不正な資格情報が取得されるのはなぜですか?