Philipp Holzer
96555a7385
- withSession() - for auto authentication with Session/Cookie variables - withOpenId() - for authentication with an OpenID account - withPassword() - for authentication with Password - setForUser() - for setting the user auth context of the current session Refactor "Session" class - contains now "native" Session Management methods
83 lines
2.5 KiB
PHP
83 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* @file mod/openid.php
|
|
*/
|
|
|
|
use Friendica\App;
|
|
use Friendica\BaseObject;
|
|
use Friendica\Core\Authentication;
|
|
use Friendica\Core\Config;
|
|
use Friendica\Core\L10n;
|
|
use Friendica\Core\Logger;
|
|
use Friendica\Core\Session;
|
|
use Friendica\Database\DBA;
|
|
use Friendica\Util\Strings;
|
|
|
|
function openid_content(App $a) {
|
|
|
|
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'])) {
|
|
|
|
$openid = new LightOpenID($a->getHostName());
|
|
|
|
if ($openid->validate()) {
|
|
$authid = $openid->data['openid_identity'];
|
|
|
|
if (empty($authid)) {
|
|
Logger::log(L10n::t('OpenID protocol error. No ID returned.') . EOL);
|
|
$a->internalRedirect();
|
|
}
|
|
|
|
// 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)) {
|
|
|
|
// successful OpenID login
|
|
|
|
unset($_SESSION['openid']);
|
|
|
|
/** @var Authentication $authentication */
|
|
$authentication = BaseObject::getClass(Authentication::class);
|
|
$authentication->setForUser($a, $user, true, true);
|
|
|
|
// just in case there was no return url set
|
|
// and we fell through
|
|
|
|
$a->internalRedirect();
|
|
}
|
|
|
|
// Successful OpenID login - but we can't match it to an existing account.
|
|
unset($_SESSION['register']);
|
|
Session::set('openid_attributes', $openid->getAttributes());
|
|
Session::set('openid_identity', $authid);
|
|
|
|
// 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));
|
|
|
|
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.'));
|
|
} else {
|
|
notice(L10n::t('Account not found. Please register a new account or login to your existing account to add the OpenID to it.'));
|
|
}
|
|
|
|
$a->internalRedirect('login');
|
|
}
|
|
}
|
|
notice(L10n::t('Login failed.') . EOL);
|
|
$a->internalRedirect();
|
|
// NOTREACHED
|
|
}
|