mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:42:53 +00:00
Improved logging for local probing, avoid worker fork
This commit is contained in:
parent
57893fe24a
commit
b28acc7dad
2 changed files with 8 additions and 3 deletions
|
@ -271,7 +271,7 @@ class Contact
|
||||||
|
|
||||||
// Update the contact in the background if needed
|
// Update the contact in the background if needed
|
||||||
$updated = max($contact['success_update'], $contact['created'], $contact['updated'], $contact['last-update'], $contact['failure_update']);
|
$updated = max($contact['success_update'], $contact['created'], $contact['updated'], $contact['last-update'], $contact['failure_update']);
|
||||||
if (($updated < DateTimeFormat::utc('now -7 days')) && in_array($contact['network'], Protocol::FEDERATED)) {
|
if (($updated < DateTimeFormat::utc('now -7 days')) && in_array($contact['network'], Protocol::FEDERATED) && !self::isLocalById($contact['id'])) {
|
||||||
Worker::add(PRIORITY_LOW, "UpdateContact", $contact['id']);
|
Worker::add(PRIORITY_LOW, "UpdateContact", $contact['id']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -87,10 +87,11 @@ class Relation
|
||||||
|
|
||||||
$uid = User::getIdForURL($url);
|
$uid = User::getIdForURL($url);
|
||||||
if (!empty($uid)) {
|
if (!empty($uid)) {
|
||||||
// Fetch the followers/followings locally
|
Logger::info('Fetch the followers/followings locally', ['url' => $url]);
|
||||||
$followers = self::getContacts($uid, [Contact::FOLLOWER, Contact::FRIEND]);
|
$followers = self::getContacts($uid, [Contact::FOLLOWER, Contact::FRIEND]);
|
||||||
$followings = self::getContacts($uid, [Contact::SHARING, Contact::FRIEND]);
|
$followings = self::getContacts($uid, [Contact::SHARING, Contact::FRIEND]);
|
||||||
} else {
|
} elseif (!Contact::isLocal($url)) {
|
||||||
|
Logger::info('Fetch the followers/followings by polling the endpoints', ['url' => $url]);
|
||||||
$apcontact = APContact::getByURL($url, false);
|
$apcontact = APContact::getByURL($url, false);
|
||||||
|
|
||||||
if (!empty($apcontact['followers']) && is_string($apcontact['followers'])) {
|
if (!empty($apcontact['followers']) && is_string($apcontact['followers'])) {
|
||||||
|
@ -104,6 +105,10 @@ class Relation
|
||||||
} else {
|
} else {
|
||||||
$followings = [];
|
$followings = [];
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
Logger::notice('Contact seems to be local but could not be found here', ['url' => $url]);
|
||||||
|
$followers = [];
|
||||||
|
$followings = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($followers) && empty($followings)) {
|
if (empty($followers) && empty($followings)) {
|
||||||
|
|
Loading…
Reference in a new issue