Always usa magic on the same server

This commit is contained in:
Michael 2018-12-25 19:43:57 +00:00
parent f413abb82b
commit a565406b47
2 changed files with 7 additions and 6 deletions

View File

@ -436,7 +436,7 @@ function dfrn_poll_content(App $a)
switch ($direction) { switch ($direction) {
case -1: case -1:
if ($type === 'profile') { if ($type === 'profile') {
$sql_extra = sprintf(" AND ( `dfrn-id` = '%s' OR `issued-id` = '%s' ) ", DBA::escape($dfrn_id), DBA::escape($dfrn_id)); $sql_extra = sprintf(" AND (`dfrn-id` = '%s' OR `issued-id` = '%s') ", DBA::escape($dfrn_id), DBA::escape($dfrn_id));
} else { } else {
$sql_extra = sprintf(" AND `issued-id` = '%s' ", DBA::escape($dfrn_id)); $sql_extra = sprintf(" AND `issued-id` = '%s' ", DBA::escape($dfrn_id));
} }

View File

@ -83,14 +83,15 @@ function redir_init(App $a) {
// When the remote page does support OWA, then we enforce the use of it // When the remote page does support OWA, then we enforce the use of it
$basepath = Contact::getBasepath($contact_url); $basepath = Contact::getBasepath($contact_url);
$serverret = Network::curl($basepath . '/magic'); if ($basepath == System::baseUrl()) {
if ($serverret->isSuccess()) { $use_magic = true;
$contact['issued-id'] = ''; } else {
$contact['dfrn-id'] = ''; $serverret = Network::curl($basepath . '/magic');
$use_magic = $serverret->isSuccess();
} }
// Doing remote auth with dfrn. // Doing remote auth with dfrn.
if (local_user() && (!empty($contact['dfrn-id']) || !empty($contact['issued-id'])) && empty($contact['pending'])) { if (local_user() && !$use_magic && (!empty($contact['dfrn-id']) || !empty($contact['issued-id'])) && empty($contact['pending'])) {
$dfrn_id = $orig_id = (($contact['issued-id']) ? $contact['issued-id'] : $contact['dfrn-id']); $dfrn_id = $orig_id = (($contact['issued-id']) ? $contact['issued-id'] : $contact['dfrn-id']);
if ($contact['duplex'] && $contact['issued-id']) { if ($contact['duplex'] && $contact['issued-id']) {