php – 在FOSUserBundle中管理用户/角色/组
作者:互联网
我正在开发一个简单的CRUD来管理我正在工作的应用程序的用户/角色/组.管理用户我正在使用FOSUserBundle.我想做的事可以通过以下几种方式完成:
>将角色分配给组,然后将用户分配给这些组
>直接为用户分配角色
但我不知道怎么做.我知道FOSUser BaseUser类已经具有列角色,并且在FOSUser的documentation中解释了如何在用户和组之间建立ManyToMany关系,但是没有谈论任何关于角色的事情.想到的唯一想法是创建一个实体来管理角色以及一个用于相同目的的表单,如下所示:
角色实体
use Symfony\Component\Security\Core\Role\RoleInterface;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="fos_role")
* @ORM\Entity(repositoryClass="UserBundle\Entity\Repository\RoleRepository")
*
* @see User
* @see \UserBundle\Role\RoleHierarchy
*
*/
class Role implements RoleInterface
{
/**
* @ORM\Column(name="id", type="integer")
* @ORM\Id()
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @ORM\Column(name="name", type="string", length=80, unique=true)
*/
private $name;
/**
* @ORM\ManyToOne(targetEntity="Role", inversedBy="children")
* @ORM\JoinColumn(name="parent_id", referencedColumnName="id", nullable=true)
* @var Role[]
*/
private $parent;
/**
* @ORM\OneToMany(targetEntity="Role", mappedBy="parent")
* @var ArrayCollection|Role[]
*/
private $children;
/**
* @ORM\ManyToMany(targetEntity="User", mappedBy="roles")
*/
private $users;
public function __construct($role = "")
{
if (0 !== strlen($role)) {
$this->name = strtoupper($role);
}
$this->users = new ArrayCollection();
$this->children = new ArrayCollection();
}
/**
* @see RoleInterface
*/
public function getRole()
{
return $this->name;
}
public function getId()
{
return $this->id;
}
public function setId($id)
{
$this->id = $id;
}
public function getName()
{
return $this->name;
}
public function setName($name)
{
$this->name = $name;
}
public function getUsers()
{
return $this->users;
}
public function addUser($user, $addRoleToUser = true)
{
$this->users->add($user);
$addRoleToUser && $user->addRole($this, false);
}
public function removeUser($user)
{
$this->users->removeElement($user);
}
public function getChildren()
{
return $this->children;
}
public function addChildren(Role $child, $setParentToChild = true)
{
$this->children->add($child);
$setParentToChild && $child->setParent($this, false);
}
public function getDescendant(& $descendants = array())
{
foreach ($this->children as $role) {
$descendants[spl_object_hash($role)] = $role;
$role->getDescendant($descendants);
}
return $descendants;
}
public function removeChildren(Role $children)
{
$this->children->removeElement($children);
}
public function getParent()
{
return $this->parent;
}
public function setParent(Role $parent, $addChildToParent = true)
{
$addChildToParent && $parent->addChildren($this, false);
$this->parent = $parent;
}
public function __toString()
{
if ($this->children->count()) {
$childNameList = array();
foreach ($this->children as $child) {
$childNameList[] = $child->getName();
}
return sprintf('%s [%s]', $this->name, implode(', ', $childNameList));
}
return sprintf('%s', $this->name);
}
}
角色表单类型
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;
class RoleType extends AbstractType {
/**
* @param FormBuilderInterface $builder
* @param array $options
*/
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('name')
->add('parent');
}
/**
* @param OptionsResolverInterface $resolver
*/
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'Tanane\UserBundle\Entity\Role'
));
}
/**
* @return string
*/
public function getName()
{
return 'role';
}
}
如果是这样,那么添加到我的用户表单会是什么样子
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder
->add('username', 'text')
->add('email', 'email')
->add('enabled', null, array(
'label' => 'Habilitado',
'required' => false
))
->add('rolesCollection', 'entity', array(
'class' => 'UserBundle:Role',
'multiple' => true,
'expanded' => true,
'attr' => array('class' => 'single-line-checks')
))
->add('groups', 'entity', array(
'class' => 'UserBundle:Group',
'multiple' => true,
'expanded' => true,
));
}
但是我不知道它是否是处理角色的正确方法,因为在这种情况下我将在我的数据库中创建一个名为fos_roles的新表,其中处理用户/角色之间的关系,但组/角色之间的关系不在其中,那就是我有点失落的地方,需要更有经验的帮助,告诉我并警告我是否正常,这将使他们达到我在前两点解释的内容.有什么建议或帮助吗?你怎么处理这个?
解决方法:
FOSUserBundle处理Roles的方式是将它们存储在您看到的角色列中,采用如下序列化格式:a:1:{i:0; s:10:“ROLE_ADMIN”;}.所以不需要任何其他表或实体^.
^这与需要显式配置的组形成对比,由单独的表/实体表示,并且涉及将用户与数据库中的组相关联.通过组,您可以定义任意角色集合,然后可以将这些角色作为离散包提供给每个用户.
用户可以是任意数量角色的成员.它们由以“ROLE_”开头的字符串标识,您可以开始使用新角色.
角色对您的应用程序的意义完全取决于您,但它们是一个非常高级的工具 – 用户要么处于特定角色,要么不是.
你通过Symfony console将人们置于角色中:
php app/console fos:user:promote testuser ROLE_ADMIN
或者在PHP中:
$user = $this->getUser();
$userManager = $container->get('fos_user.user_manager');
$user->addRole('ROLE_ADMIN');
$userManager->updateUser($user);
您可以在PHP中测试成员身份:
$user = $this->getUser();
if ($user->hasRole('ROLE_ADMIN'))
{
//do something
}
或者使用Annotations:
/**
* @Security("has_role('ROLE_ADMIN')")
*/
public function adminAction()
{
//...
要么
/**
* @Security("has_role('ROLE_ADMIN')")
*/
class AdminController
{
//...
标签:usergroups,php,symfony,fosuserbundle,user-roles 来源: https://codeday.me/bug/20191004/1852207.html