2010-11-18 02:03:27 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
|
|
require_once('library/openid.php');
|
|
|
|
|
|
|
|
|
|
|
|
function openid_content(&$a) {
|
|
|
|
|
2010-11-29 05:58:23 +01:00
|
|
|
$noid = get_config('system','no_openid');
|
|
|
|
if($noid)
|
2011-08-02 06:02:25 +02:00
|
|
|
goaway(z_root());
|
2010-11-29 05:58:23 +01:00
|
|
|
|
2012-03-19 14:48:11 +01:00
|
|
|
logger('mod_openid ' . print_r($_REQUEST,true), LOGGER_DATA);
|
|
|
|
|
2010-11-18 02:03:27 +01:00
|
|
|
if((x($_GET,'openid_mode')) && (x($_SESSION,'openid'))) {
|
2012-03-19 23:10:14 +01:00
|
|
|
|
2010-11-18 02:03:27 +01:00
|
|
|
$openid = new LightOpenID;
|
|
|
|
|
|
|
|
if($openid->validate()) {
|
|
|
|
|
2012-03-19 14:48:11 +01:00
|
|
|
$authid = normalise_openid($_REQUEST['openid_identity']);
|
|
|
|
|
2012-03-19 23:03:09 +01:00
|
|
|
if(! strlen($authid)) {
|
|
|
|
logger( t('OpenID protocol error. No ID returned.') . EOL);
|
|
|
|
goaway(z_root());
|
|
|
|
}
|
2010-11-18 05:35:50 +01:00
|
|
|
|
2011-08-25 05:40:08 +02:00
|
|
|
$r = q("SELECT `user`.*, `user`.`pubkey` as `upubkey`, `user`.`prvkey` as `uprvkey`
|
2012-03-19 23:03:09 +01:00
|
|
|
FROM `user` WHERE `openid` = '%s' AND `blocked` = 0
|
2012-11-02 21:43:47 +01:00
|
|
|
AND `account_expired` = 0 AND `account_removed` = 0 AND `verified` = 1 LIMIT 1",
|
2012-03-19 14:48:11 +01:00
|
|
|
dbesc($authid)
|
2010-11-18 02:03:27 +01:00
|
|
|
);
|
2012-03-19 14:48:11 +01:00
|
|
|
|
2012-03-19 23:03:09 +01:00
|
|
|
if($r && count($r)) {
|
2012-03-19 23:10:14 +01:00
|
|
|
|
|
|
|
// successful OpenID login
|
|
|
|
|
2012-03-19 23:03:09 +01:00
|
|
|
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
|
|
|
|
|
2011-08-02 06:02:25 +02:00
|
|
|
goaway(z_root());
|
2012-03-19 23:03:09 +01:00
|
|
|
}
|
|
|
|
|
2012-03-19 23:10:14 +01:00
|
|
|
// Successful OpenID login - but we can't match it to an existing account.
|
|
|
|
// New registration?
|
2012-03-19 23:03:09 +01:00
|
|
|
|
|
|
|
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']);
|
|
|
|
$args = '';
|
|
|
|
$attr = $openid->getAttributes();
|
|
|
|
if(is_array($attr) && count($attr)) {
|
|
|
|
foreach($attr as $k => $v) {
|
|
|
|
if($k === 'namePerson/friendly')
|
|
|
|
$nick = notags(trim($v));
|
|
|
|
if($k === 'namePerson/first')
|
|
|
|
$first = notags(trim($v));
|
|
|
|
if($k === 'namePerson')
|
|
|
|
$args .= '&username=' . notags(trim($v));
|
|
|
|
if($k === 'contact/email')
|
|
|
|
$args .= '&email=' . notags(trim($v));
|
|
|
|
if($k === 'media/image/aspect11')
|
|
|
|
$photosq = bin2hex(trim($v));
|
|
|
|
if($k === 'media/image/default')
|
|
|
|
$photo = bin2hex(trim($v));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if($nick)
|
|
|
|
$args .= '&nickname=' . $nick;
|
|
|
|
elseif($first)
|
|
|
|
$args .= '&nickname=' . $first;
|
|
|
|
|
|
|
|
if($photosq)
|
|
|
|
$args .= '&photo=' . $photosq;
|
|
|
|
elseif($photo)
|
|
|
|
$args .= '&photo=' . $photo;
|
2010-11-18 02:03:27 +01:00
|
|
|
|
2012-03-19 23:03:09 +01:00
|
|
|
$args .= '&openid_url=' . notags(trim($authid));
|
2011-03-02 05:18:47 +01:00
|
|
|
|
2012-03-19 23:03:09 +01:00
|
|
|
goaway($a->get_baseurl() . '/register' . $args);
|
2010-12-17 01:35:45 +01:00
|
|
|
|
2012-03-19 23:03:09 +01:00
|
|
|
// NOTREACHED
|
2010-11-18 02:03:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
notice( t('Login failed.') . EOL);
|
2011-08-02 06:02:25 +02:00
|
|
|
goaway(z_root());
|
2010-11-18 02:03:27 +01:00
|
|
|
// NOTREACHED
|
2011-05-23 11:39:57 +02:00
|
|
|
}
|