Subversion Repositories oidplus

Rev

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

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