将角色列表添加到FOS Userbundle配置文件编辑表单

时间:2015-07-15 14:41:41

标签: symfony fosuserbundle

这个问题类似于Symfony2: Getting the list of user roles in FormBuilder,但是那里的答案适用于任何形式,但我的问题是针对用户套件创建的表单。问题是UserBundle控制器创建如下形式:

$form = $this->container->get('fos_user.profile.form');

因此我不知道如何将角色发送到我的表单类型。

2 个答案:

答案 0 :(得分:2)

我的答案类似于@Mihai Aurelian在similar question上回答的答案。

创建了一个名为Role Helper的服务:

<?php

namespace AppBundle\Services;

/**
 * Roles helper displays roles set in config.
 */
class RolesHelper
{
  private $rolesHierarchy;

  public function __construct($rolesHierarchy)
  {
    $this->rolesHierarchy = $rolesHierarchy;
  }

  /**
   * Return roles.
   *
   * @return array
   */
  public function getRoles()
  {
    $roles = array();

    array_walk_recursive($this->rolesHierarchy, function($val) use (&$roles) {
      $roles[] = $val;
    });

    return array_unique($roles);
  }
}

使用Overriding Default FOSUserBundle Forms指令覆盖表单类型并更新默认构造函数以包含RolesHelper作为参数。

<?php

namespace AppBundle\Form\Type;

use Symfony\Component\Form\FormBuilderInterface;
use FOS\UserBundle\Form\Type\RegistrationFormType as BaseType;
use AppBundle\Services\RolesHelper;

class UserType extends BaseType
{
  /**
   * @var RolesHelper
   */
  private $roles;

  /**
   * @param string $class The User class name
   * @param RolesHelper $roles Array or roles.
   */
  public function __construct($class, RolesHelper $roles)
  {
    parent::__construct($class);

    $this->roles = $roles;
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(FormBuilderInterface $builder, array $options)
  {
    parent::buildForm($builder, $options);

    $builder->add('firstName')
            ->add('lastName')
            ->add('roles', 'choice', array(
              'choices' => $this->roles->getRoles(),
              'required' => false,
              'multiple'=>true
            ));
  }

  /**
   * {@inheritdoc}
   */
  public function getName()
  {
    return 'user_registration';
  }
}

更新了services.yml

app_roles_helper:
   class: AppBundle\Services\RolesHelper
   arguments: ['%security.role_hierarchy.roles%']

在services.yml:

中为app_user.registration.form.type添加了第二个参数
app_user.registration.form.type:
  class: AppBundle\Form\Type\UserType
  arguments: [%fos_user.model.user.class%, @app_roles_helper]
  tags:
    - { name: form.type, alias: user_registration }

答案 1 :(得分:0)

我无法发表评论,所以我会将我的评论作为答案。你编写getRoles函数的方式只会返回数组作为角色的位置,例如,如果你有三个位置数组,它将返回0,1,2作为选择,而不是角色名称。然后我在这一行尝试了不同的东西,而不是:

array_walk_recursive($this->rolesHierarchy, function($val) use (&$roles) {
  $roles[] = $val;
});

我把

array_walk_recursive($this->rolesHierarchy, function($val) use (&$roles) {
  $roles[$val] = $val;
});

这解决了返回数值数组位置而不是角色名称的问题。但是有一个问题,对于这样的层次结构:

role_hierarchy:
    ROLE_ADMIN:       ROLE_USER
    ROLE_SUPER_ADMIN: [ ROLE_ADMIN, ROLE_TEST ]

它只返回ROLE_USER,ROLE_ADMIN和ROLE_TEST,但对于Symfony,ROLE_ADMIN和ROLE_SUPER_ADMIN也是角色。问题在于array_walk_recursive不会将其值为数组的键传递给回调函数。由于ROLE_ADMIN是ARRAY(1)=&gt; ([0] =&gt;(字符串)ROLE_USER)和ROLE_SUPER_ADMIN是ARRAY(2)=&gt; ([0] =&gt;(字符串)ROLE_ADMIN [1] =&gt;(字符串)ROLE_TEST),它们都将被忽略。

解决方案是这样做:

public function getRoles() {
    $roles = array();

    foreach (array_keys($this->rolesHierarchy) as $key){
        $roles[$key] = $key;
        array_walk_recursive($this->rolesHierarchy[$key], function($val) use (&$roles){
            $roles[$val] = $val;
        });
    }

    return array_unique($roles);

数组键本身也被视为角色,这是包含$ roles [$ key] = $ key的原因。并且,要递归到层次结构中包含的每个数组中:

        array_walk_recursive($this->rolesHierarchy[$key], function($val) use (&$roles){
            $roles[$val] = $val;
        });