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;
|
2019-12-03 22:29:37 +01:00
|
|
|
use Friendica\BaseObject;
|
|
|
|
use Friendica\Core\Authentication;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2019-05-13 06:55:26 +02:00
|
|
|
use Friendica\Core\Session;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2018-11-08 16:14:37 +01:00
|
|
|
use Friendica\Util\Strings;
|
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
|
|
|
|
2019-09-11 18:46:13 +02:00
|
|
|
if (Config::get('system','no_openid')) {
|
2018-10-19 20:11:27 +02:00
|
|
|
$a->internalRedirect();
|
2019-09-11 18:46:13 +02:00
|
|
|
}
|
2010-11-29 05:58:23 +01:00
|
|
|
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log('mod_openid ' . print_r($_REQUEST,true), Logger::DATA);
|
2012-03-19 14:48:11 +01:00
|
|
|
|
2019-09-11 18:46:13 +02:00
|
|
|
if (!empty($_GET['openid_mode']) && !empty($_SESSION['openid'])) {
|
2012-03-19 23:10:14 +01:00
|
|
|
|
2018-10-09 19:58:58 +02:00
|
|
|
$openid = new LightOpenID($a->getHostName());
|
2010-11-18 02:03:27 +01:00
|
|
|
|
2019-09-11 18:46:13 +02:00
|
|
|
if ($openid->validate()) {
|
2019-10-24 22:23:26 +02:00
|
|
|
$authid = $openid->data['openid_identity'];
|
2012-03-19 14:48:11 +01:00
|
|
|
|
2019-09-11 18:46:13 +02:00
|
|
|
if (empty($authid)) {
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log(L10n::t('OpenID protocol error. No ID returned.') . EOL);
|
2018-10-19 20:11:27 +02:00
|
|
|
$a->internalRedirect();
|
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
|
|
|
|
//
|
2019-09-11 18:46:13 +02:00
|
|
|
$condition = ['blocked' => false, 'account_expired' => false, 'account_removed' => false, 'verified' => true,
|
|
|
|
'openid' => [$authid, Strings::normaliseOpenID($authid)]];
|
|
|
|
$user = DBA::selectFirst('user', [], $condition);
|
|
|
|
if (DBA::isResult($user)) {
|
2012-03-19 23:10:14 +01:00
|
|
|
|
|
|
|
// successful OpenID login
|
|
|
|
|
2012-03-19 23:03:09 +01:00
|
|
|
unset($_SESSION['openid']);
|
|
|
|
|
2019-12-03 22:29:37 +01:00
|
|
|
/** @var Authentication $authentication */
|
|
|
|
$authentication = BaseObject::getClass(Authentication::class);
|
|
|
|
$authentication->setForUser($a, $user, true, true);
|
2012-03-19 23:03:09 +01:00
|
|
|
|
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
|
|
|
|
|
2018-10-19 20:11:27 +02:00
|
|
|
$a->internalRedirect();
|
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.
|
2012-03-19 23:03:09 +01:00
|
|
|
unset($_SESSION['register']);
|
2019-10-24 22:23:26 +02:00
|
|
|
Session::set('openid_attributes', $openid->getAttributes());
|
|
|
|
Session::set('openid_identity', $authid);
|
2010-11-18 02:03:27 +01:00
|
|
|
|
2019-10-24 22:23:26 +02:00
|
|
|
// Detect the server URL
|
|
|
|
$open_id_obj = new LightOpenID($a->getHostName());
|
|
|
|
$open_id_obj->identity = $authid;
|
|
|
|
Session::set('openid_server', $open_id_obj->discover($open_id_obj->identity));
|
2011-03-02 05:18:47 +01:00
|
|
|
|
2019-10-24 22:23:26 +02:00
|
|
|
if (intval(Config::get('config', 'register_policy')) === \Friendica\Module\Register::CLOSED) {
|
2019-10-28 14:51:38 +01:00
|
|
|
notice(L10n::t('Account not found. Please login to your existing account to add the OpenID to it.'));
|
2019-10-24 22:23:26 +02:00
|
|
|
} else {
|
2019-10-28 14:51:38 +01:00
|
|
|
notice(L10n::t('Account not found. Please register a new account or login to your existing account to add the OpenID to it.'));
|
2019-10-24 22:23:26 +02:00
|
|
|
}
|
2010-12-17 01:35:45 +01:00
|
|
|
|
2019-10-24 22:23:26 +02:00
|
|
|
$a->internalRedirect('login');
|
2010-11-18 02:03:27 +01:00
|
|
|
}
|
|
|
|
}
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Login failed.') . EOL);
|
2018-10-19 20:11:27 +02:00
|
|
|
$a->internalRedirect();
|
2010-11-18 02:03:27 +01:00
|
|
|
// NOTREACHED
|
2011-05-23 11:39:57 +02:00
|
|
|
}
|