duanmei2805 2018-06-08 13:30
浏览 35
已采纳

来自User实体的parameters.yml中的Symfony访问参数

I declared my roles with parameters.yml and I want to access them from my User entity for the getRoles function (from the UserInterface https://api.symfony.com/3.4/Symfony/Component/Security/Core/User/UserInterface.html#method_getRoles ).

role_global_admin: ROLE_GLOBAL_ADMIN
role_admin: ROLE_ADMIN
role_manager: ROLE_MANAGER

I wanted to access my parameters thanks to the service definition but I learned this is strictly forbidden in symfony (for the entities). Entities shouldn't have dependencies.

User.php

/**
 * Returns the roles granted to the user.
 *
 * @return (Role|string)[] The user roles
 */
public function getRoles()
{
    if (true === $this->isGlobalAdminRole()) {
        return ['ROLE_GLOBAL_ADMIN'];
    }

    return null == $this->getSymfonyOrganigramRole() ? ['ROLE_MANAGER'] : [$this->getSymfonyOrganigramRole()];
}

I want to access the role_global_admin parameter for example and not its value directly. getRoles() is executed automatically during the connexion to give the user a role.

How can I achieve that, I want my roles to be centralized in the parameters file.

Thanks

  • 写回答

1条回答 默认 最新

  • drls2738 2018-06-08 17:13
    关注

    You can define your roles as constants in a separate file or in your entity and then use them in your entity, security.yml or any other yml file as mentioned here

    For example:

    AppBundle\Utils\UserMetaData

    class UserMetaData {
        const ROLE_ADMIN = 'ROLE_ADMIN';
        const ROLE_USER  = 'ROLE_USER';
    }
    

    security.yml:

    role_hierarchy:
        !php/const AppBundle\Utils\UserMetaData::ROLE_ADMIN: !php/const AppBundle\Utils\UserMetaData::ROLE_USER
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信会员卡等级和折扣规则
  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分