Question

I want to know if a user has the 'VIEW_GEOLOC_DATA' role, but I have a problem using the twig function is_granted().

If I use in a template :

Roles : {{ dump(app.user.getRoles()) }}
is_granted('ROLE_SUPER_ADMIN') : {{ dump(is_granted('ROLE_SUPER_ADMIN')) }}
is_granted('VIEW_GEOLOC_DATA') : {{ dump(is_granted('VIEW_GEOLOC_DATA')) }}

This is what I get when rendering :

array(2) {
  [0]=>
  string(16) "ROLE_SUPER_ADMIN"
  [1]=>
  string(16) "VIEW_GEOLOC_DATA"
}
is_granted('ROLE_SUPER_ADMIN') : bool(true)
is_granted('VIEW_GEOLOC_DATA') : bool(false)

I've tried to logging in and out, emptying symfony's cache.
I also tried to switch the order of roles in the array returned by the method getRoles() of my User : the function is_granted will only take into account the first role of the array

Was it helpful?

Solution 2

I ended up creating a new method hasRole in my User Class :

public function hasRole($role)
{
    return in_array($role, $this->getRoles());
}

Then, in a template, I use:

{% if app.user.hasRole('ROLE_VIEW_GEOLOC_DATA') %}
    {# do something #}
{% endif %}

EDIT: As @JonnyS said, it may be possible that roles must start with ROLE_ to work with is_granted Symfony's function. Didn't tested.

OTHER TIPS

If you are expecting Symfony2 to handle your roles, then your roles need to start with "ROLE_".

Change

'VIEW_GEOLOC_DATA' 

to

'ROLE_VIEW_GEOLOC_DATA'

Of course, you'll need to change this in your config and add the new role.

This answer does not apply, if you are using a dedicated Role class.

Create a Security Voter that checks this. http://symfony.com/doc/current/cookbook/security/voters_data_permission.html

This is much cleaner then creating an method on an entity for this.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top