refactor openid logins/registrations
This commit is contained in:
parent
139a86dbd3
commit
9e133d6412
3 changed files with 60 additions and 77 deletions
2
boot.php
2
boot.php
|
@ -9,7 +9,7 @@ require_once('include/nav.php');
|
||||||
require_once('include/cache.php');
|
require_once('include/cache.php');
|
||||||
|
|
||||||
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
define ( 'FRIENDICA_PLATFORM', 'Friendica');
|
||||||
define ( 'FRIENDICA_VERSION', '2.3.1285' );
|
define ( 'FRIENDICA_VERSION', '2.3.1286' );
|
||||||
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
|
||||||
define ( 'DB_UPDATE_VERSION', 1132 );
|
define ( 'DB_UPDATE_VERSION', 1132 );
|
||||||
|
|
||||||
|
|
|
@ -77,7 +77,7 @@ else {
|
||||||
|
|
||||||
$noid = get_config('system','no_openid');
|
$noid = get_config('system','no_openid');
|
||||||
|
|
||||||
$openid_url = trim( (strlen($_POST['openid_url'])?$_POST['openid_url']:$_POST['username']) );
|
$openid_url = trim((strlen($_POST['openid_url'])?$_POST['openid_url']:$_POST['username']) );
|
||||||
|
|
||||||
// validate_url alters the calling parameter
|
// validate_url alters the calling parameter
|
||||||
|
|
||||||
|
@ -99,31 +99,10 @@ else {
|
||||||
$openid->identity = $openid_url;
|
$openid->identity = $openid_url;
|
||||||
$_SESSION['openid'] = $openid_url;
|
$_SESSION['openid'] = $openid_url;
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
$openid->returnUrl = $a->get_baseurl() . '/openid';
|
$openid->returnUrl = $a->get_baseurl(true) . '/openid';
|
||||||
|
|
||||||
$r = q("SELECT `uid` FROM `user` WHERE `openid` = '%s' LIMIT 1",
|
|
||||||
dbesc($openid_url)
|
|
||||||
);
|
|
||||||
if(count($r)) {
|
|
||||||
// existing account
|
|
||||||
goaway($openid->authUrl());
|
goaway($openid->authUrl());
|
||||||
// NOTREACHED
|
// NOTREACHED
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
if($a->config['register_policy'] == REGISTER_CLOSED) {
|
|
||||||
$a = get_app();
|
|
||||||
notice( t('Login failed.') . EOL);
|
|
||||||
goaway(z_root());
|
|
||||||
// NOTREACHED
|
|
||||||
}
|
|
||||||
// new account
|
|
||||||
$_SESSION['register'] = 1;
|
|
||||||
$openid->required = array('namePerson/friendly', 'contact/email', 'namePerson');
|
|
||||||
$openid->optional = array('namePerson/first','media/image/aspect11','media/image/default');
|
|
||||||
goaway($openid->authUrl());
|
|
||||||
// NOTREACHED
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
if((x($_POST,'auth-params')) && $_POST['auth-params'] === 'login') {
|
if((x($_POST,'auth-params')) && $_POST['auth-params'] === 'login') {
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,38 @@ function openid_content(&$a) {
|
||||||
|
|
||||||
if($openid->validate()) {
|
if($openid->validate()) {
|
||||||
|
|
||||||
if(x($_SESSION,'register')) {
|
$authid = normalise_openid($_REQUEST['openid_identity']);
|
||||||
|
|
||||||
|
if(! strlen($authid)) {
|
||||||
|
logger( t('OpenID protocol error. No ID returned.') . EOL);
|
||||||
|
goaway(z_root());
|
||||||
|
}
|
||||||
|
|
||||||
|
$r = q("SELECT `user`.*, `user`.`pubkey` as `upubkey`, `user`.`prvkey` as `uprvkey`
|
||||||
|
FROM `user` WHERE `openid` = '%s' AND `blocked` = 0
|
||||||
|
AND `account_expired` = 0 AND `verified` = 1 LIMIT 1",
|
||||||
|
dbesc($authid)
|
||||||
|
);
|
||||||
|
|
||||||
|
if($r && count($r)) {
|
||||||
|
unset($_SESSION['openid']);
|
||||||
|
|
||||||
|
require_once('include/security.php');
|
||||||
|
authenticate_success($r[0],true,true);
|
||||||
|
|
||||||
|
// just in case there was no return url set
|
||||||
|
// and we fell through
|
||||||
|
|
||||||
|
goaway(z_root());
|
||||||
|
}
|
||||||
|
|
||||||
|
// new registration?
|
||||||
|
|
||||||
|
if($a->config['register_policy'] == REGISTER_CLOSED) {
|
||||||
|
notice( t('Account not found and OpenID registration is not permitted on this site.') . EOL);
|
||||||
|
goaway(z_root());
|
||||||
|
}
|
||||||
|
|
||||||
unset($_SESSION['register']);
|
unset($_SESSION['register']);
|
||||||
$args = '';
|
$args = '';
|
||||||
$attr = $openid->getAttributes();
|
$attr = $openid->getAttributes();
|
||||||
|
@ -47,39 +78,12 @@ function openid_content(&$a) {
|
||||||
elseif($photo)
|
elseif($photo)
|
||||||
$args .= '&photo=' . $photo;
|
$args .= '&photo=' . $photo;
|
||||||
|
|
||||||
$args .= '&openid_url=' . notags(trim($_SESSION['openid']));
|
$args .= '&openid_url=' . notags(trim($authid));
|
||||||
if($a->config['register_policy'] != REGISTER_CLOSED)
|
|
||||||
goaway($a->get_baseurl() . '/register' . $args);
|
goaway($a->get_baseurl() . '/register' . $args);
|
||||||
else
|
|
||||||
goaway(z_root());
|
|
||||||
|
|
||||||
// NOTREACHED
|
// NOTREACHED
|
||||||
}
|
}
|
||||||
|
|
||||||
$authid = normalise_openid($_REQUEST['openid_identity']);
|
|
||||||
if(! strlen($authid))
|
|
||||||
goaway(z_root());
|
|
||||||
|
|
||||||
|
|
||||||
$r = q("SELECT `user`.*, `user`.`pubkey` as `upubkey`, `user`.`prvkey` as `uprvkey`
|
|
||||||
FROM `user` WHERE `openid` = '%s' AND `blocked` = 0 AND `account_expired` = 0 AND `verified` = 1 LIMIT 1",
|
|
||||||
dbesc($authid)
|
|
||||||
);
|
|
||||||
|
|
||||||
if(! count($r)) {
|
|
||||||
notice( t('Login failed.') . EOL );
|
|
||||||
goaway(z_root());
|
|
||||||
}
|
|
||||||
unset($_SESSION['openid']);
|
|
||||||
|
|
||||||
require_once('include/security.php');
|
|
||||||
authenticate_success($r[0],true,true);
|
|
||||||
|
|
||||||
// just in case there was no return url set
|
|
||||||
// and we fell through
|
|
||||||
|
|
||||||
goaway(z_root());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
notice( t('Login failed.') . EOL);
|
notice( t('Login failed.') . EOL);
|
||||||
goaway(z_root());
|
goaway(z_root());
|
||||||
|
|
Loading…
Reference in a new issue