We are using Symfony2's roles feature to restrict users' access to certain parts of our app. Each of our User entities have many Subscription entities that have a start date and an end and users can purchase yearly subscriptions.

Now, is there a way to dynamically add a role to a user based on whether they have an 'active' subscription? In rails i would simply let the model handle whether it has the necessary rights but I know that by design symfony2 entities are not supposed to have access to Doctrine.

I know that you can access an entity's associations from within an entity instance but that would go through all the user's subscription objects and that seems unnecessaryly cumbersome to me.

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

I think you would do better setting up a custom voter and attribute.

/**
 * @Route("/whatever/")
 * @Template
 * @Secure("SUBSCRIPTION_X")
 */
public function viewAction()
{
    // etc...
}

The SUBSCRIPTION_X role (aka attribute) would need to be handled by a custom voter class.

class SubscriptionVoter implements VoterInterface
{
    private $em;

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

    public function supportsAttribute($attribute)
    {
        return 0 === strpos($atribute, 'SUBSCRIPTION_');
    }

    public function supportsClass($class)
    {
        return true;
    }

    public function vote(TokenInterface $token, $object, array $attributes)
    {
        // run your query and return either...
        //  * VoterInterface::ACCESS_GRANTED
        //  * VoterInterface::ACCESS_ABSTAIN
        //  * VoterInterface::ACCESS_DENIED
    }
}

You would need to configure and tag your voter:

services:
    subscription_voter:
        class: SubscriptionVoter
        public: false
        arguments: [ @doctrine.orm.entity_manager ]
        tags:
            - { name: security.voter }
link|improve this answer
@webda2l I don't understand your question – Kris Wallsmith Jan 16 at 17:06
Sorry.. I'll try to be a little easier to understand. The Voter class, which induced a query, is called only once by user or at each page load? In this last case, to avoid the repetition of the query, the best way will be to manage with session in the vote function, isn't it? – webda2l Jan 16 at 17:32
You can add a caching mechanism or optimize as you see fit. – Kris Wallsmith Jan 16 at 17:34
1  
thank you so much! I hadn't looked into nor heard of voters before. I always find sf2's more interesting features to be scarcely documented and the very basic stuff way too much so. – maiwald Jan 16 at 21:37
feedback

Assuming that you have the right relation "subscriptions" in your User Entity.

You can maybe try something like :

public function getRoles()
{
    $todayDate = new DateTime();
    $activesSubscriptions = $this->subscriptions->filter(function($entity) use ($todayDate) {
        return (($todayDate >= $entity->dateBegin()) && ($todayDate < $entity->dateEnd()));
    });

    if (!isEmpty($activesSubscriptions)) {
        return array('ROLE_OK');
    }

    return array('ROLE_KO');
}

Changing role can be done with :

$sc = $this->get('security.context')
$user = $sc->getToken()->getUser();
$user->setRole('ROLE_NEW');
// Assuming that "main" is your firewall name :
$token = new \Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken($user, null, 'main', $user->getRoles());
$sc->setToken($token);

But after a page change, the refreshUser function of the provider is called and sometimes, as this is the case with EntityUserProvider, the role is overwrite by a query. You need a custom provider to avoid this.

link|improve this answer
I know. But as I said, I'd rather not go through all the subscription objects but let MySQL do the 'heavy lifting', since this has to happen on every request. (I never tested this, but it just seems slower to me to needlessly hydrate a bunch of objects. Correct me if I'm wrong.) – maiwald Jan 16 at 13:46
You can use the success_handler option of form_login, to use an service with access to Doctrine. Inside it, in onAuthenticationSuccess function, you do the request for get the right role. And, because, roles are reload with each page change, you use an custom user provider which doesn't refresh user. – webda2l Jan 16 at 16:17
But would a user not have to log out and back in again should the roles change during a session? I wouldn't want that. – maiwald Jan 16 at 16:27
I have edited my answer. You can force a user to change its roles without logout. – webda2l Jan 16 at 16:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.