2010-11-18 02:03:27 +01:00
|
|
|
<?php
|
2018-01-21 19:33:59 +01:00
|
|
|
/**
|
|
|
|
* @file mod/openid.php
|
|
|
|
*/
|
2018-01-27 22:31:49 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2017-01-09 13:14:25 +01:00
|
|
|
function openid_content(App $a) {
|
2010-11-18 02:03:27 +01:00
|
|
|
|
2017-11-07 03:22:52 +01:00
|
|
|
$noid = Config::get('system','no_openid');
|
2017-03-21 17:02:59 +01:00
|
|
|
if($noid)
|
2017-08-26 09:32:10 +02:00
|
|
|
goaway(System::baseUrl());
|
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);
|
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if((x($_GET,'openid_mode')) && (x($_SESSION,'openid'))) {
|
2012-03-19 23:10:14 +01:00
|
|
|
|
2018-05-17 00:21:06 +02:00
|
|
|
$openid = new LightOpenID($a->get_hostname());
|
2010-11-18 02:03:27 +01:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if($openid->validate()) {
|
2010-11-18 02:03:27 +01:00
|
|
|
|
2016-05-24 22:36:51 +02:00
|
|
|
$authid = $_REQUEST['openid_identity'];
|
2012-03-19 14:48:11 +01:00
|
|
|
|
2017-03-21 17:02:59 +01:00
|
|
|
if(! strlen($authid)) {
|
2018-01-22 13:29:50 +01:00
|
|
|
logger(L10n::t('OpenID protocol error. No ID returned.') . EOL);
|
2017-08-26 09:32:10 +02:00
|
|
|
goaway(System::baseUrl());
|
2012-03-19 23:03:09 +01:00
|
|
|
}
|
2010-11-18 05:35:50 +01:00
|
|
|
|
2016-05-25 12:43:26 +02:00
|
|
|
// NOTE: we search both for normalised and non-normalised form of $authid
|
|
|
|
// because the normalization step was removed from setting
|
|
|
|
// mod/settings.php in 8367cad so it might have left mixed
|
|
|
|
// records in the user table
|
|
|
|
//
|
2017-11-26 20:55:47 +01:00
|
|
|
$r = q("SELECT *
|
|
|
|
FROM `user`
|
2016-05-25 16:06:16 +02:00
|
|
|
WHERE ( `openid` = '%s' OR `openid` = '%s' )
|
|
|
|
AND `blocked` = 0 AND `account_expired` = 0
|
|
|
|
AND `account_removed` = 0 AND `verified` = 1
|
|
|
|
LIMIT 1",
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($authid), DBA::escape(normalise_openid($authid))
|
2010-11-18 02:03:27 +01:00
|
|
|
);
|
2012-03-19 14:48:11 +01:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($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);
|
|
|
|
|
2017-01-09 13:14:25 +01:00
|
|
|
// just in case there was no return url set
|
2012-03-19 23:03:09 +01:00
|
|
|
// and we fell through
|
|
|
|
|
2017-08-26 09:32:10 +02:00
|
|
|
goaway(System::baseUrl());
|
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
|
|
|
|
2018-07-15 21:04:48 +02:00
|
|
|
if (intval(Config::get('config', 'register_policy')) === REGISTER_CLOSED) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Account not found and OpenID registration is not permitted on this site.') . EOL);
|
2017-08-26 09:32:10 +02:00
|
|
|
goaway(System::baseUrl());
|
2012-03-19 23:03:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
unset($_SESSION['register']);
|
|
|
|
$args = '';
|
|
|
|
$attr = $openid->getAttributes();
|
2016-12-20 21:15:53 +01:00
|
|
|
if (is_array($attr) && count($attr)) {
|
|
|
|
foreach ($attr as $k => $v) {
|
|
|
|
if ($k === 'namePerson/friendly') {
|
2012-03-19 23:03:09 +01:00
|
|
|
$nick = notags(trim($v));
|
2016-12-20 21:15:53 +01:00
|
|
|
}
|
2017-03-21 17:02:59 +01:00
|
|
|
if($k === 'namePerson/first') {
|
2012-03-19 23:03:09 +01:00
|
|
|
$first = notags(trim($v));
|
2016-12-20 21:15:53 +01:00
|
|
|
}
|
2017-03-21 17:02:59 +01:00
|
|
|
if($k === 'namePerson') {
|
2017-04-23 13:48:46 +02:00
|
|
|
$args .= '&username=' . urlencode(notags(trim($v)));
|
2016-12-20 21:15:53 +01:00
|
|
|
}
|
|
|
|
if ($k === 'contact/email') {
|
2017-04-23 13:48:46 +02:00
|
|
|
$args .= '&email=' . urlencode(notags(trim($v)));
|
2016-12-20 21:15:53 +01:00
|
|
|
}
|
|
|
|
if ($k === 'media/image/aspect11') {
|
2012-03-19 23:03:09 +01:00
|
|
|
$photosq = bin2hex(trim($v));
|
2016-12-20 21:15:53 +01:00
|
|
|
}
|
|
|
|
if ($k === 'media/image/default') {
|
2012-03-19 23:03:09 +01:00
|
|
|
$photo = bin2hex(trim($v));
|
2016-12-20 21:15:53 +01:00
|
|
|
}
|
2012-03-19 23:03:09 +01:00
|
|
|
}
|
|
|
|
}
|
2016-12-20 21:15:53 +01:00
|
|
|
if ($nick) {
|
2017-04-23 13:48:46 +02:00
|
|
|
$args .= '&nickname=' . urlencode($nick);
|
2016-12-20 21:15:53 +01:00
|
|
|
}
|
|
|
|
elseif ($first) {
|
2017-04-23 13:48:46 +02:00
|
|
|
$args .= '&nickname=' . urlencode($first);
|
2016-12-20 21:15:53 +01:00
|
|
|
}
|
2012-03-19 23:03:09 +01:00
|
|
|
|
2016-12-20 21:15:53 +01:00
|
|
|
if ($photosq) {
|
2017-04-23 13:48:46 +02:00
|
|
|
$args .= '&photo=' . urlencode($photosq);
|
2016-12-20 21:15:53 +01:00
|
|
|
}
|
|
|
|
elseif ($photo) {
|
2017-04-23 13:48:46 +02:00
|
|
|
$args .= '&photo=' . urlencode($photo);
|
2016-12-20 21:15:53 +01:00
|
|
|
}
|
2010-11-18 02:03:27 +01:00
|
|
|
|
2017-04-23 13:48:46 +02:00
|
|
|
$args .= '&openid_url=' . urlencode(notags(trim($authid)));
|
2011-03-02 05:18:47 +01:00
|
|
|
|
2017-08-26 09:32:10 +02:00
|
|
|
goaway(System::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
|
|
|
}
|
|
|
|
}
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Login failed.') . EOL);
|
2017-08-26 09:32:10 +02:00
|
|
|
goaway(System::baseUrl());
|
2010-11-18 02:03:27 +01:00
|
|
|
// NOTREACHED
|
2011-05-23 11:39:57 +02:00
|
|
|
}
|