2010-11-17 20:03:27 -05:00
|
|
|
<?php
|
2018-01-21 13:33:59 -05:00
|
|
|
/**
|
|
|
|
* @file mod/openid.php
|
|
|
|
*/
|
2018-01-27 16:31:49 -05:00
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2019-12-03 16:29:37 -05:00
|
|
|
use Friendica\BaseObject;
|
2019-12-08 16:45:34 -05:00
|
|
|
use Friendica\App\Authentication;
|
2017-11-06 21:22:52 -05:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 13:33:59 -05:00
|
|
|
use Friendica\Core\L10n;
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2019-05-13 00:55:26 -04:00
|
|
|
use Friendica\Core\Session;
|
2018-07-21 08:40:21 -04:00
|
|
|
use Friendica\Database\DBA;
|
2018-11-08 10:14:37 -05:00
|
|
|
use Friendica\Util\Strings;
|
2016-02-07 09:11:34 -05:00
|
|
|
|
2017-01-09 07:14:25 -05:00
|
|
|
function openid_content(App $a) {
|
2010-11-17 20:03:27 -05:00
|
|
|
|
2019-09-11 12:46:13 -04:00
|
|
|
if (Config::get('system','no_openid')) {
|
2018-10-19 14:11:27 -04:00
|
|
|
$a->internalRedirect();
|
2019-09-11 12:46:13 -04:00
|
|
|
}
|
2010-11-28 23:58:23 -05:00
|
|
|
|
2018-10-30 09:58:45 -04:00
|
|
|
Logger::log('mod_openid ' . print_r($_REQUEST,true), Logger::DATA);
|
2012-03-19 09:48:11 -04:00
|
|
|
|
2019-09-11 12:46:13 -04:00
|
|
|
if (!empty($_GET['openid_mode']) && !empty($_SESSION['openid'])) {
|
2012-03-19 18:10:14 -04:00
|
|
|
|
2018-10-09 13:58:58 -04:00
|
|
|
$openid = new LightOpenID($a->getHostName());
|
2010-11-17 20:03:27 -05:00
|
|
|
|
2019-09-11 12:46:13 -04:00
|
|
|
if ($openid->validate()) {
|
2019-10-24 16:23:26 -04:00
|
|
|
$authid = $openid->data['openid_identity'];
|
2012-03-19 09:48:11 -04:00
|
|
|
|
2019-09-11 12:46:13 -04:00
|
|
|
if (empty($authid)) {
|
2018-10-29 17:20:46 -04:00
|
|
|
Logger::log(L10n::t('OpenID protocol error. No ID returned.') . EOL);
|
2018-10-19 14:11:27 -04:00
|
|
|
$a->internalRedirect();
|
2012-03-19 18:03:09 -04:00
|
|
|
}
|
2010-11-17 23:35:50 -05:00
|
|
|
|
2016-05-25 06:43:26 -04: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 12:46:13 -04: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 18:10:14 -04:00
|
|
|
|
|
|
|
// successful OpenID login
|
|
|
|
|
2012-03-19 18:03:09 -04:00
|
|
|
unset($_SESSION['openid']);
|
|
|
|
|
2019-12-03 16:29:37 -05:00
|
|
|
/** @var Authentication $authentication */
|
|
|
|
$authentication = BaseObject::getClass(Authentication::class);
|
|
|
|
$authentication->setForUser($a, $user, true, true);
|
2012-03-19 18:03:09 -04:00
|
|
|
|
2017-01-09 07:14:25 -05:00
|
|
|
// just in case there was no return url set
|
2012-03-19 18:03:09 -04:00
|
|
|
// and we fell through
|
|
|
|
|
2018-10-19 14:11:27 -04:00
|
|
|
$a->internalRedirect();
|
2012-03-19 18:03:09 -04:00
|
|
|
}
|
|
|
|
|
2012-03-19 18:10:14 -04:00
|
|
|
// Successful OpenID login - but we can't match it to an existing account.
|
2012-03-19 18:03:09 -04:00
|
|
|
unset($_SESSION['register']);
|
2019-10-24 16:23:26 -04:00
|
|
|
Session::set('openid_attributes', $openid->getAttributes());
|
|
|
|
Session::set('openid_identity', $authid);
|
2010-11-17 20:03:27 -05:00
|
|
|
|
2019-10-24 16:23:26 -04: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-01 23:18:47 -05:00
|
|
|
|
2019-10-24 16:23:26 -04:00
|
|
|
if (intval(Config::get('config', 'register_policy')) === \Friendica\Module\Register::CLOSED) {
|
2019-10-28 09:51:38 -04:00
|
|
|
notice(L10n::t('Account not found. Please login to your existing account to add the OpenID to it.'));
|
2019-10-24 16:23:26 -04:00
|
|
|
} else {
|
2019-10-28 09:51:38 -04: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 16:23:26 -04:00
|
|
|
}
|
2010-12-16 19:35:45 -05:00
|
|
|
|
2019-10-24 16:23:26 -04:00
|
|
|
$a->internalRedirect('login');
|
2010-11-17 20:03:27 -05:00
|
|
|
}
|
|
|
|
}
|
2018-01-21 13:33:59 -05:00
|
|
|
notice(L10n::t('Login failed.') . EOL);
|
2018-10-19 14:11:27 -04:00
|
|
|
$a->internalRedirect();
|
2010-11-17 20:03:27 -05:00
|
|
|
// NOTREACHED
|
2011-05-23 05:39:57 -04:00
|
|
|
}
|