friendica/mod/openid.php

79 lines
2.3 KiB
PHP
Raw Normal View History

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
use Friendica\App;
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;
use Friendica\Core\Session;
use Friendica\Database\DBA;
use Friendica\Util\Strings;
function openid_content(App $a) {
2010-11-18 02:03:27 +01:00
if (Config::get('system','no_openid')) {
$a->internalRedirect();
}
Logger::log('mod_openid ' . print_r($_REQUEST,true), Logger::DATA);
if (!empty($_GET['openid_mode']) && !empty($_SESSION['openid'])) {
2012-03-19 23:10:14 +01:00
$openid = new LightOpenID($a->getHostName());
2010-11-18 02:03:27 +01:00
if ($openid->validate()) {
2019-10-24 22:23:26 +02:00
$authid = $openid->data['openid_identity'];
if (empty($authid)) {
2018-10-29 22:20:46 +01:00
Logger::log(L10n::t('OpenID protocol error. No ID returned.') . EOL);
$a->internalRedirect();
2012-03-19 23:03:09 +01:00
}
2010-11-18 05:35:50 +01: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
//
$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']);
Session::setAuthenticatedForUser($a, $user, true, true);
2012-03-19 23:03:09 +01:00
// just in case there was no return url set
2012-03-19 23:03:09 +01:00
// and we fell through
$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) {
notice(L10n::t('Account not found. Please login to your existing account to add the OpenID to it.') . EOL);
} else {
notice(L10n::t('Account not found. Please register a new account or login to your existing account to add the OpenID to it.') . EOL);
}
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);
$a->internalRedirect();
2010-11-18 02:03:27 +01:00
// NOTREACHED
}