Ejemplo n.º 1
0
<?php

include 'config/functions.php';
require_once "config/dbconfig.php";
session_start();
if (!empty($_GET['openid_ext1_value_firstname']) && !empty($_GET['openid_ext1_value_lastname']) && !empty($_GET['openid_ext1_value_email'])) {
    $fname = $_GET['openid_ext1_value_firstname'];
    $lname = $_GET['openid_ext1_value_lastname'];
    $email = $_GET['openid_ext1_value_email'];
    $user = new User();
    $userdata = $user->checkUserGoogle($uid, 'Google', $fname, $lname, $email);
    if (!empty($userdata)) {
        session_start();
        $_SESSION['id'] = $userdata['id'];
        $_SESSION['oauth_id'] = $uid;
        $_SESSION['logged'] = "true";
        $_SESSION['login_email'] = $email;
        $_SESSION['oauth_provider'] = $userdata['oauth_provider'];
        header("Location:http://fostergem.com/GettingStarted/PostGoogleRegistration");
    } else {
        // Something's missing, go back to square 1
        header('Location:http://fostergem.com/home');
    }
}
Ejemplo n.º 2
0
<?php

include 'includes/google/functionsgoogle.php';
session_start();
if (!empty($_GET['openid_ext1_value_firstname']) && !empty($_GET['openid_ext1_value_lastname']) && !empty($_GET['openid_ext1_value_email'])) {
    $firstname = $_GET['openid_ext1_value_firstname'];
    $lastname = $_GET['openid_ext1_value_lastname'];
    $email = $_GET['openid_ext1_value_email'];
    $user = new User();
    $userdata = $user->checkUserGoogle($uid, 'Google', $firstname, $lastname, $email);
    if (!empty($userdata)) {
        $email = urldecode($email);
        session_start();
        $_SESSION['oauth_id'] = $uid;
        $_SESSION['email_id'] = $email;
        $_SESSION['oauth_provider'] = $userdata['oauth_provider'];
        header('location:my-profile.php');
        //        if(!empty($_SESSION['email_id']))
        //        {
        //            $upwd=$query = mysql_fetch_assoc(mysql_query("SELECT password,User_ID FROM `registration` WHERE email_id='$_SESSION[User_Email]'"));
        //            $_SESSION['User_ID'] = $upwd['User_ID'];
        //            if($upwd['User_Password']==""){ header("Location: changeacpwd.php");}
        //            else{ header("Location: index.php");}
        //        }
    } else {
        // Something's missing, go back to square 1
        header('Location: error.php');
    }
}