Onepoll hadn't polled anymore / small relocation in zrlinit for better logging
This commit is contained in:
parent
012fe3c11e
commit
35a73b729f
|
@ -1014,15 +1014,6 @@ class Profile
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Avoid endless loops
|
|
||||||
$cachekey = 'zrlInit:' . $my_url;
|
|
||||||
if (Cache::get($cachekey)) {
|
|
||||||
logger('URL ' . $my_url . ' already tried to authenticate.', LOGGER_DEBUG);
|
|
||||||
return;
|
|
||||||
} else {
|
|
||||||
Cache::set($cachekey, true, CACHE_MINUTE);
|
|
||||||
}
|
|
||||||
|
|
||||||
$arr = ['zrl' => $my_url, 'url' => $a->cmd];
|
$arr = ['zrl' => $my_url, 'url' => $a->cmd];
|
||||||
Addon::callHooks('zrl_init', $arr);
|
Addon::callHooks('zrl_init', $arr);
|
||||||
|
|
||||||
|
@ -1033,8 +1024,6 @@ class Profile
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Worker::add(PRIORITY_LOW, 'GProbe', $my_url);
|
|
||||||
|
|
||||||
$contact = DBA::selectFirst('contact',['id', 'url'], ['id' => $cid]);
|
$contact = DBA::selectFirst('contact',['id', 'url'], ['id' => $cid]);
|
||||||
|
|
||||||
if (DBA::isResult($contact) && remote_user() && remote_user() == $contact['id']) {
|
if (DBA::isResult($contact) && remote_user() && remote_user() == $contact['id']) {
|
||||||
|
@ -1042,8 +1031,19 @@ class Profile
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Avoid endless loops
|
||||||
|
$cachekey = 'zrlInit:' . $my_url;
|
||||||
|
if (Cache::get($cachekey)) {
|
||||||
|
logger('URL ' . $my_url . ' already tried to authenticate.', LOGGER_DEBUG);
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
Cache::set($cachekey, true, CACHE_MINUTE);
|
||||||
|
}
|
||||||
|
|
||||||
logger('Not authenticated. Invoking reverse magic-auth for ' . $my_url, LOGGER_DEBUG);
|
logger('Not authenticated. Invoking reverse magic-auth for ' . $my_url, LOGGER_DEBUG);
|
||||||
|
|
||||||
|
Worker::add(PRIORITY_LOW, 'GProbe', $my_url);
|
||||||
|
|
||||||
// Try to avoid recursion - but send them home to do a proper magic auth.
|
// Try to avoid recursion - but send them home to do a proper magic auth.
|
||||||
$query = str_replace(array('?zrl=', '&zid='), array('?rzrl=', '&rzrl='), $a->query_string);
|
$query = str_replace(array('?zrl=', '&zid='), array('?rzrl=', '&rzrl='), $a->query_string);
|
||||||
// The other instance needs to know where to redirect.
|
// The other instance needs to know where to redirect.
|
||||||
|
|
|
@ -333,7 +333,7 @@ class OnePoll
|
||||||
$curlResult = Network::curl($contact['poll'], false, $redirects, ['cookiejar' => $cookiejar]);
|
$curlResult = Network::curl($contact['poll'], false, $redirects, ['cookiejar' => $cookiejar]);
|
||||||
unlink($cookiejar);
|
unlink($cookiejar);
|
||||||
|
|
||||||
if (!$curlResult->isTimeout()) {
|
if ($curlResult->isTimeout()) {
|
||||||
// set the last-update so we don't keep polling
|
// set the last-update so we don't keep polling
|
||||||
DBA::update('contact', ['last-update' => DateTimeFormat::utcNow()], ['id' => $contact['id']]);
|
DBA::update('contact', ['last-update' => DateTimeFormat::utcNow()], ['id' => $contact['id']]);
|
||||||
Contact::markForArchival($contact);
|
Contact::markForArchival($contact);
|
||||||
|
|
Loading…
Reference in a new issue