Merge pull request #7971 from annando/issue-7685

Issue 7685: Just forward on remoteauth for non legacy-DFRN and other contacts
This commit is contained in:
Hypolite Petovan 2019-12-19 07:51:49 -05:00 committed by GitHub
commit 85ae12a873
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -5098,14 +5098,17 @@ function api_friendica_remoteauth()
// traditional DFRN
$contact = DBA::selectFirst('contact', [], ['uid' => api_user(), 'nurl' => $c_url]);
if (!DBA::isResult($contact) || ($contact['network'] !== Protocol::DFRN)) {
if (!DBA::isResult($contact)) {
throw new BadRequestException("Unknown contact");
}
$cid = $contact['id'];
$dfrn_id = $contact['issued-id'] ?? $contact['dfrn-id'];
$dfrn_id = $contact['issued-id'] ?: $contact['dfrn-id'];
if (($contact['network'] !== Protocol::DFRN) || empty($dfrn_id)) {
System::externalRedirect($url ?: $c_url);
}
if ($contact['duplex'] && $contact['issued-id']) {
$orig_id = $contact['issued-id'];