我正在开发一个简单的CRUD来管理我正在工作的应用程序的用户/角色/组。管理我正在使用FOSUserBundle
的用户。我想做的事可以用几种方式完成:
但我不知道怎么做。我知道FOSUser BaseUser
类已经有一个列roles
,并且在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
的新表,其中处理用户/角色之间的关系,但是之间的关系团体/角色远离它,然后那就是我有点迷失的地方,需要更有经验的人帮助告诉我并提醒我是否正常,这将使他们实现我在前两个解释点。有什么建议或帮助吗?你怎么处理这个?
答案 0 :(得分:28)
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
{
//...
答案 1 :(得分:3)
我通过覆盖注册控制器中的confirmAction添加了在注册期间向用户添加默认组的功能
我所做的是通过定义FosUserBUndle的父级来覆盖我的项目Bundle中的注册控制器。
然后创建了一个函数confirmedAction并在函数体中添加了这段代码
$repository = $em->getRepository('AdminAdminBundle:Group');
$group = $repository->findOneByName('staff');
$em = $this->getDoctrine()->getEntityManager();
$user = $this->getUser();
$user->addGroup($group);
$userManager = $this->get('fos_user.user_manager');
$userManager->updateUser($user);
if (!is_object($user) || !$user instanceof FOS\UserBundle\Model\UserInterface) {
throw new AccessDeniedException('This user does not have access to this section.');
}
return $this->render('FOSUserBundle:Registration:confirmed.html.twig',
['user' => $user]);
它完全保存在带有组分配的数据库中。
希望这对有需要的人有所帮助,因为官方fosuserbundle文档中的实施信息很少。