我想從數據庫中拉出用於認證用戶的角色。要做到這一點,我已經創建了一個擴展的角色很像貝婁碼組對象:symfony2角色類中的角色和名稱有什麼區別?
// src/Acme/Bundle/UserBundle/Entity/Group.php
namespace Acme\UserBundle\Entity;
use Symfony\Component\Security\Core\Role\Role;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="acme_groups")
* @ORM\Entity()
*/
class Group extends Role
{
/**
* @ORM\Column(name="id", type="integer")
* @ORM\Id()
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @ORM\Column(name="name", type="string", length=30)
*/
private $name;
/**
* @ORM\Column(name="role", type="string", length=20, unique=true)
*/
private $role;
/**
* @ORM\ManyToMany(targetEntity="User", mappedBy="groups")
*/
private $users;
public function __construct()
{
$this->users = new ArrayCollection();
}
// ... getters and setters for each property
/**
* @see RoleInterface
*/
public function getRole()
{
return $this->role;
}
}
什麼讓我困惑的是,我看不到這個類之間的關係,並在這種security.yml相應字段作爲:
role_hierarchy:
ROLE_ADMIN: ROLE_USER
ROLE_SUPER_ADMIN: [ROLE_USER, ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH]
所以名稱會在右側:和角色在右側?例如,在
ROLE_ADMIN: ROLE_USER
將ROLE_ADMIN是組名和ROLE_USER成爲角色?對我來說沒有意義的是symfony2如何將角色屬性作爲單個變量而不是數組來實現。由於在聲明中
ROLE_SUPER_ADMIN: [ROLE_USER, ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH]
有多個角色,不只是一個角色。這些如何與上面定義的類相對應?我正在關注symfony2食譜http://symfony.com/doc/current/cookbook/security/entity_provider.html#managing-roles-in-the-database。
這一切都有道理,非常感謝! –