Subversion Repositories oidplus

Rev

Rev 1200 | Rev 1305 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1200 Rev 1267
Line 98... Line 98...
98
if (!$ra->existing()) {
98
if (!$ra->existing()) {
99
        $ra->register_ra(null); // create a user account without password
99
        $ra->register_ra(null); // create a user account without password
100
 
100
 
101
        OIDplus::db()->query("update ###ra set ra_name = ?, personal_name = ? where email = ?", array($personal_name, $personal_name, $email));
101
        OIDplus::db()->query("update ###ra set ra_name = ?, personal_name = ? where email = ?", array($personal_name, $personal_name, $email));
102
 
102
 
103
        OIDplus::logger()->log("[INFO]RA(%1)!", "RA '%1' was created because of successful Facebook OAuth2 login", $email);
103
        OIDplus::logger()->log("V2:[INFO]RA(%1)", "RA '%1' was created because of successful Facebook OAuth2 login", $email);
104
}
104
}
105
 
105
 
106
OIDplus::authUtils()->raLoginEx($email, $remember_me=false, 'Facebook-OAuth2');
106
OIDplus::authUtils()->raLoginEx($email, $remember_me=false, 'Facebook-OAuth2');
107
 
107
 
108
OIDplus::db()->query("UPDATE ###ra set last_login = ".OIDplus::db()->sqlDate()." where email = ?", array($email));
108
OIDplus::db()->query("UPDATE ###ra set last_login = ".OIDplus::db()->sqlDate()." where email = ?", array($email));