I have built a very simple CakePHP application to test out a possible implementation of the Facebook PHP SDK whereby users can signup either using the app or Facebook and can also login using the app or Facebook. But because the user can do things on the app, they will also have a user account on the app even if they login/register via their Facebook account.
So far I have created the two methods for handling auth and getting user info:
// Asks user to authenticate
public function facebook()
{
$params = array(
'redirect_uri' => 'http://domain.com/users/signupfacebook',
'scope'=> 'email',
'display' => 'popup'
);
$loginUrl = $this->Facebook->Sdk->getLoginUrl($params);
// Need to know if user is already a user on OUR app
// If true log them in. If false redirect to signup form like below
$this->autoRender = false;
$this->response->header('Location', $loginUrl);
}
// Handle the return
public function signupfacebook()
{
$user = $this->Facebook->Sdk->getUser();
if($user)
{
try
{
$facebookuser = $this->Facebook->Sdk->api('/me');
$this->set('facebookuser', $facebookuser);
}
catch(FacebookApiException $e)
{
error_log($e);
$user = NULL;
}
}
else
{
$this->Session->setFlash('An error has occurred! Please try again.');
$this->redirect(array('action'=>'index'));
}
}
So a user says I want to authenticate using Facebook and this uses the facebook() method of my controller and then it will ask them for permission and redirect them based on this action. Currently it will just send them to a signup page where some of the fields are pre-filled based on their passed user info like so:
<?php echo $this->Form->create('User'); ?>
<?php echo $this->Form->input('User.email', array('type' => 'text', 'default'=> $facebookuser['email'], 'label' => array('class' => 'placeholder', 'text' => 'Email address') )); ?>
<?php echo $this->Form->input('User.firstname', array('type' => 'text', 'default'=> $facebookuser['first_name'], 'label' => array('class' => 'placeholder', 'text' => 'Firstname') )); ?>
<?php echo $this->Form->input('User.lastname', array('type' => 'text', 'default'=> $facebookuser['last_name'], 'label' => array('class' => 'placeholder', 'text' => 'Lastname') )); ?>
<?php echo $this->Form->input('User.username', array('type' => 'text', 'default'=> $facebookuser['username'], 'label' => array('class' => 'placeholder', 'text' => 'Username') )); ?>
<?php echo $this->Form->input('User.password', array('value' => '','type' => 'password', 'label' => array('class' => 'placeholder', 'text' => 'Password') )); ?>
<button type="submit">Create</button>
<?php echo $this->Form->end(); ?>
But I have a few issues here:
Question 1.) If the user already has an account in the system with the Facebook credentials they have just entered then it needs to handle this and log the user in. Does this require the use of anything special from the Facebook end? As I'm thinking of just searching the Users table for a matching account and then logging them in automatically, but I've not found any examples online of authenticating your own users table once FB authentication has taken place.
Question 2.) Potentially related to previous question, but when a user registers an account, no association with the Facebook account they used to login is saved so if and when they try to login again using Facebook the association won't be seen unless I search the DB for similar details but again this seems very flakey and not the correct use of the API. Essentially the user has just used FB to populate a form and not actually physically signed up using their Facebook account.
I could check if the same email address exists in the DB as the one being passed via Facebook, but what if they have changed it since? I thought about perhaps storing the Facebook user id in a table with the user id in the app so the connection is stored. Would this be a solution? Or the wrong way to do this?
e.g. a new table to store the link between FB Users and CakePHP App Users:
id
user_id (this is the relationship to your USER table)
facebook_user_id
But even when doing this, not sure how I'd make use of this to properly link the accounts in a useful way and handle the authentication via Facebook correctly instead of just auto-populating the form or logging the user in if certain details match (which I'm sure has potential security risks).
Question 3.) When the user is sent back to the signup form via Facebook they get the following URL (note bits have been altered for security reasons):
http://domain.com/users/signupfacebook?state=dbf2f6dds322b7cb90d71b6c958a001bf4a3ba&code=AQa7-GDsesM0ZfgswjgGF-mMKwjcoboLl19WKprIA2-f4iZzUdsd8o8z-NweYYODzySS3h9GksBw0G9WCXj79Pp-0ldyeIRCOLSt9gfgfsmEFEfOrEO6gm7a0jmDuQvchdsaHaw1QpI8RdGTCrqAPlLzpHGcqiCtBvXjiQtBhQP--tMr8CIlvRwbrJRwiZwF6xo30howlRkVTLddsdDCDt60_KGznPVmEe-T4Qbu9gdkv9v#_=_
From what I can tell based on: https://developers.facebook.com/docs/howtos/login/server-side-login/ I should be creating an extra step between the two methods posted above to handle the code and get an access token back.
But I have accessed all of the required info I needed to fill out the signup form WITHOUT doing the second stage of the OAuth process and getting an access token! So not sure if I need it for this circumstance... Or do I? And if so how would it assist in solving the first two questions if it all?
users can signup either using the app or Facebook and can also login using the app or Facebook. I can't see what you meant. Could you correct it? By the way, could you clearly say whether you also plan to let users to connect without Facebook? It would mean that you would let the users create accounts and manage passwords. – Stéphane Bruckert Mar 2 at 22:14