2019-12-27 16:16:40 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module\Security;
|
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2019-12-29 10:48:15 -05:00
|
|
|
use Friendica\DI;
|
2019-12-27 16:16:40 -05:00
|
|
|
use Friendica\Util\Strings;
|
|
|
|
use LightOpenID;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs an login with OpenID
|
|
|
|
*/
|
|
|
|
class OpenID extends BaseModule
|
|
|
|
{
|
2019-12-28 09:21:58 -05:00
|
|
|
public static function content(array $parameters = [])
|
2019-12-27 16:16:40 -05:00
|
|
|
{
|
2019-12-29 10:48:15 -05:00
|
|
|
if (DI::config()->get('system', 'no_openid')) {
|
|
|
|
DI::baseUrl()->redirect();
|
2019-12-27 16:16:40 -05:00
|
|
|
}
|
|
|
|
|
2019-12-29 10:48:15 -05:00
|
|
|
DI::logger()->debug('mod_openid.', ['request' => $_REQUEST]);
|
2019-12-27 16:16:40 -05:00
|
|
|
|
2019-12-29 10:48:15 -05:00
|
|
|
$session = DI::session();
|
2019-12-27 16:16:40 -05:00
|
|
|
|
|
|
|
if (!empty($_GET['openid_mode']) && !empty($session->get('openid'))) {
|
|
|
|
|
2019-12-29 10:48:15 -05:00
|
|
|
$openid = new LightOpenID(DI::baseUrl()->getHostname());
|
2019-12-27 16:16:40 -05:00
|
|
|
|
2019-12-29 10:48:15 -05:00
|
|
|
$l10n = DI::l10n();
|
2019-12-27 16:16:40 -05:00
|
|
|
|
|
|
|
if ($openid->validate()) {
|
|
|
|
$authId = $openid->data['openid_identity'];
|
|
|
|
|
|
|
|
if (empty($authId)) {
|
2019-12-29 10:48:15 -05:00
|
|
|
DI::logger()->info($l10n->t('OpenID protocol error. No ID returned'));
|
|
|
|
DI::baseUrl()->redirect();
|
2019-12-27 16:16:40 -05: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)]];
|
|
|
|
|
2019-12-29 10:48:15 -05:00
|
|
|
$dba = DI::dba();
|
2019-12-27 16:16:40 -05:00
|
|
|
|
|
|
|
$user = $dba->selectFirst('user', [], $condition);
|
|
|
|
if ($dba->isResult($user)) {
|
|
|
|
|
|
|
|
// successful OpenID login
|
|
|
|
$session->remove('openid');
|
|
|
|
|
2019-12-29 21:50:15 -05:00
|
|
|
DI::auth()->setForUser(DI::app(), $user, true, true);
|
2019-12-27 16:16:40 -05:00
|
|
|
|
|
|
|
// just in case there was no return url set
|
|
|
|
// and we fell through
|
2019-12-29 10:48:15 -05:00
|
|
|
DI::baseUrl()->redirect();
|
2019-12-27 16:16:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Successful OpenID login - but we can't match it to an existing account.
|
|
|
|
$session->remove('register');
|
|
|
|
$session->set('openid_attributes', $openid->getAttributes());
|
|
|
|
$session->set('openid_identity', $authId);
|
|
|
|
|
|
|
|
// Detect the server URL
|
2019-12-29 10:48:15 -05:00
|
|
|
$open_id_obj = new LightOpenID(DI::baseUrl()->getHostName());
|
2019-12-27 16:16:40 -05:00
|
|
|
$open_id_obj->identity = $authId;
|
|
|
|
$session->set('openid_server', $open_id_obj->discover($open_id_obj->identity));
|
|
|
|
|
2019-12-29 10:48:15 -05:00
|
|
|
if (intval(DI::config()->get('config', 'register_policy')) === \Friendica\Module\Register::CLOSED) {
|
2019-12-27 16:16:40 -05:00
|
|
|
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.'));
|
|
|
|
}
|
|
|
|
|
2019-12-29 10:48:15 -05:00
|
|
|
DI::baseUrl()->redirect('login');
|
2019-12-27 16:16:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|