We're building a business app from the ground up in Symfony 2, and I've run into a bit of a snag with the user registration flow: after the user creates an account, they should be automatically logged in with those credentials, instead of being immediately forced to provide their credentials again.

Anyone had any experience with this, or able to point me in the right direction?

link|improve this question

80% accept rate
feedback

5 Answers

up vote 19 down vote accepted

Figured this one out, finally.

After user registration, you should have access to an object instanceof whatever you've set as your user entity in your provider configuration. The solution is to create a new token with that user entity and pass it into the security context. Here's an example based on my setup:

RegistrationController.php:

$token = new UsernamePasswordToken($userEntity, null, 'main', array('ROLE_USER'));
$this->get('security.context')->setToken($token);

Where main is the name of the firewall for your application (thanks, @Joe). That's really all there is to it; the system now considers your user fully logged in as the user they've just created.

EDIT: Per @Miquel's comment, I've updated the controller code sample to include a sensible default role for a new user (though obviously this can be adjusted according to your application's specific needs).

link|improve this answer
1  
This isn't quite right with the release version of Symfony 2. You need to pass the user's roles as a fourth argument to the UsernamePasswordToken constructor, or it will be marked as unauthenticated and the user won't have any of their roles. – Miquel Oct 19 '11 at 14:31
What about "Remember me" flag? How to login users by hand, but also they should be logged in forever. This piece of code doesn't solve that issue. – maectpo May 4 at 9:20
@maectpo that wasn't in the scope of my original requirements, but sounds like a great followup answer. Let us know what you come up with. – Problematic May 4 at 18:30
feedback

For me the answer by "Problematic" is correct except that I need to provide the name of the firewall as the third argument for the token object and not the name of the user provider.

link|improve this answer
Good addition to an old question. – James Webster Sep 28 '11 at 8:24
I've been looking this over, and I think what happened is that I named the firewall and the user provider the same thing. Since the constructor property of UsernamePasswordToken is $providerKey, I made a logical leap that was, apparently, wrong. Thanks for the update! – Problematic Oct 19 '11 at 15:14
feedback

Don't forget to specify on your controller next line

use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;

Otherwise, class UsernamePasswordToken won't be found.

link|improve this answer
feedback

As Problematic here already mentioned, this elusive $providerKey parameter is in reality nothing more than the name of your firewall rule, 'foobar' in the case of the example below.

firewalls:
    foobar:
        pattern:    /foo/
link|improve this answer
feedback

If you have a UserInterface object (and that should be the case most of the time) you might want to use the getRoles function that it implements for the last argument. So if you create a function logUser, it should looks like that:

public function logUser(UserInterface $user) {
    $token = new UsernamePasswordToken($user, null, 'main', $user->getRoles());
    $this->container->get('security.context')->setToken($token);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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