friendica/mod/openid.php

81 lines
2.0 KiB
PHP
Raw Normal View History

2010-11-18 02:03:27 +01:00
<?php
require_once('library/openid.php');
function openid_content(&$a) {
$noid = get_config('system','no_openid');
if($noid)
goaway(z_root());
2010-11-18 02:03:27 +01:00
if((x($_GET,'openid_mode')) && (x($_SESSION,'openid'))) {
$openid = new LightOpenID;
if($openid->validate()) {
2010-11-18 05:35:50 +01:00
if(x($_SESSION,'register')) {
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));
2010-11-18 05:35:50 +01:00
}
}
if($nick)
$args .= '&nickname=' . $nick;
elseif($first)
$args .= '&nickname=' . $first;
if($photosq)
$args .= '&photo=' . $photosq;
elseif($photo)
$args .= '&photo=' . $photo;
2010-11-18 05:35:50 +01:00
$args .= '&openid_url=' . notags(trim($_SESSION['openid']));
if($a->config['register_policy'] != REGISTER_CLOSED)
goaway($a->get_baseurl() . '/register' . $args);
else
goaway(z_root());
2010-11-18 05:35:50 +01:00
// NOTREACHED
}
2011-08-25 05:40:08 +02:00
$r = q("SELECT `user`.*, `user`.`pubkey` as `upubkey`, `user`.`prvkey` as `uprvkey`
2011-09-19 04:53:45 +02:00
FROM `user` WHERE `openid` = '%s' AND `blocked` = 0 AND `account_expired` = 0 AND `verified` = 1 LIMIT 1",
2010-11-18 02:03:27 +01:00
dbesc($_SESSION['openid'])
);
if(! count($r)) {
notice( t('Login failed.') . EOL );
goaway(z_root());
2010-11-18 02:03:27 +01:00
}
unset($_SESSION['openid']);
2012-01-13 00:46:39 +01:00
require_once('include/security.php');
authenticate_success($r[0],true,true);
2011-03-02 05:18:47 +01:00
2012-01-13 00:46:39 +01:00
// just in case there was no return url set
// and we fell through
2010-12-17 01:35:45 +01:00
2012-01-13 00:46:39 +01:00
goaway(z_root());
2010-11-18 02:03:27 +01:00
}
}
notice( t('Login failed.') . EOL);
goaway(z_root());
2010-11-18 02:03:27 +01:00
// NOTREACHED
}