Adds branching for when social login user wasn't created

This commit is contained in:
Maxi Redigonda 2020-08-20 16:23:30 -03:00
parent 5d2e4fcb1f
commit 0518b0ac17

View File

@ -55,24 +55,19 @@ class LoginController extends Controller {
$client = new Google_Client(['client_id' => '50174278643-gtvjdpm5rmkv75lf3jsp95iv77a2usgu.apps.googleusercontent.com']); // Specify the CLIENT_ID of the app that accesses the backend
$payload = $client->verifyIdToken(Controller::request('googleId'));
if ($payload) {
// $userid = $payload['sub'];
// ob_start();
// var_dump($payload);
// $result = ob_get_clean();
$this->userInstance = User::getUser($payload['email'], 'email');
if ($this->userInstance->isNull()) {
// Here I should create a new user with this email...
throw new Exception("Creating of new user by Google login yet to be done");
} else {
Session::getInstance()->createSession($this->userInstance->id, false);
Response::respondSuccess($this->getUserData());
return;
} else {
echo "Invalid token" . PHP_EOL;
}
Response::respondSuccess(array(
'userId' => -1,
));
return;
} else {
throw new Exception("Invalid GoogleID token");
}
}
if ($this->checkInputCredentials() || $this->checkRememberToken()) {