So each time a user logs in, I want to make a session for the user. I'm also using the Facebook API to login. I am totally new to PHP and everything, by the way, so pologies if I'm scrambled!
Currently, what I have is this in a login controller.
if ($user) {
try {
// Proceed knowing you have a logged in user who's
// authenticated.
$user_profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
if (! empty($user_profile)) {
// Get the relevant information from the user's profile.
$firstname = $user_profile['first_name'];
$lastname = $user_profile['last_name'];
$userid = $user_profile['id'];
$model = new Enligne_Model_Users();
$model->createUser($firstname, $lastname);
$session = new Zend_Session_Namespace('session'); //Creates a new Zend namespace equivalent to session start.
$session['uid'] = $userid; //sets the user id of the session to uid.
Zend_Registry::set('usersession', $session); //sets the user session in the zend registry.
}
}
Is this the correct place to create a session? I want the user to be 'logged in' once they, well, log in, but yeah. Do I also need to edit my Users file to reflect the fact that I'm using sessions? Thanks for the help!
$user_profile = $facebook->api('/me');(without the if condition). Also note that the PHP-SDK already set the session, so if Zend has a function to check that variable directly then you don't need to do it yourself! – ifaour Jan 19 at 17:15