2020-09-01 10:09:16 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
|
|
|
use Friendica\Core\Logger;
|
|
|
|
use Friendica\Core\Protocol;
|
|
|
|
use Friendica\Core\Worker;
|
|
|
|
use Friendica\Database\DBA;
|
2020-09-27 13:55:31 +02:00
|
|
|
use Friendica\DI;
|
2020-09-01 10:09:16 +02:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update public contacts
|
|
|
|
*/
|
|
|
|
class UpdatePublicContacts
|
|
|
|
{
|
|
|
|
public static function execute()
|
|
|
|
{
|
|
|
|
$count = 0;
|
2020-10-03 12:52:34 +02:00
|
|
|
$ids = [];
|
|
|
|
$base_condition = ['network' => Protocol::FEDERATED, 'uid' => 0, 'self' => false];
|
2020-09-01 10:09:16 +02:00
|
|
|
|
2020-12-03 16:47:50 +01:00
|
|
|
$existing = Worker::countWorkersByCommand('UpdateContact');
|
|
|
|
Logger::info('Already existing jobs', ['existing' => $existing]);
|
|
|
|
if ($existing > 100) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$limit = 100 - $existing;
|
|
|
|
|
2020-10-03 12:52:34 +02:00
|
|
|
if (!DI::config()->get('system', 'update_active_contacts')) {
|
2020-12-03 16:47:50 +01:00
|
|
|
$part = 3;
|
2020-10-03 12:52:34 +02:00
|
|
|
// Add every contact (mostly failed ones) that hadn't been updated for six months
|
|
|
|
$condition = DBA::mergeConditions($base_condition,
|
|
|
|
["`last-update` < ?", DateTimeFormat::utc('now - 6 month')]);
|
2020-12-03 16:47:50 +01:00
|
|
|
$ids = self::getContactsToUpdate($condition, $ids, round($limit / $part));
|
2020-10-03 12:52:34 +02:00
|
|
|
|
|
|
|
// Add every non failed contact that hadn't been updated for a month
|
|
|
|
$condition = DBA::mergeConditions($base_condition,
|
|
|
|
["NOT `failed` AND `last-update` < ?", DateTimeFormat::utc('now - 1 month')]);
|
2020-12-03 16:47:50 +01:00
|
|
|
$ids = self::getContactsToUpdate($condition, $ids, round($limit / $part));
|
|
|
|
} else {
|
|
|
|
$part = 1;
|
2020-10-03 12:52:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add every contact our system interacted with and hadn't been updated for a week
|
|
|
|
$condition = DBA::mergeConditions($base_condition, ["(`id` IN (SELECT `author-id` FROM `item`) OR
|
2020-09-27 13:55:31 +02:00
|
|
|
`id` IN (SELECT `owner-id` FROM `item`) OR `id` IN (SELECT `causer-id` FROM `item`) OR
|
2020-10-03 12:52:34 +02:00
|
|
|
`id` IN (SELECT `cid` FROM `post-tag`) OR `id` IN (SELECT `cid` FROM `user-contact`)) AND
|
|
|
|
`last-update` < ?", DateTimeFormat::utc('now - 1 week')]);
|
2020-12-03 16:47:50 +01:00
|
|
|
$ids = self::getContactsToUpdate($condition, $ids, round($limit / $part));
|
2020-10-03 12:52:34 +02:00
|
|
|
|
|
|
|
foreach ($ids as $id) {
|
|
|
|
Worker::add(PRIORITY_LOW, "UpdateContact", $id);
|
|
|
|
++$count;
|
2020-09-27 13:55:31 +02:00
|
|
|
}
|
|
|
|
|
2020-10-03 12:52:34 +02:00
|
|
|
Logger::info('Initiated update for public contacts', ['count' => $count]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns contact ids based on a given condition
|
|
|
|
*
|
|
|
|
* @param array $condition
|
|
|
|
* @param array $ids
|
|
|
|
* @return array contact ids
|
|
|
|
*/
|
2020-12-03 16:47:50 +01:00
|
|
|
private static function getContactsToUpdate(array $condition, array $ids = [], int $limit)
|
2020-10-03 12:52:34 +02:00
|
|
|
{
|
2020-12-03 16:47:50 +01:00
|
|
|
$contacts = DBA::select('contact', ['id'], $condition, ['limit' => $limit, 'order' => ['last-update']]);
|
2020-09-01 10:09:16 +02:00
|
|
|
while ($contact = DBA::fetch($contacts)) {
|
2020-10-03 12:52:34 +02:00
|
|
|
$ids[] = $contact['id'];
|
2020-09-01 10:09:16 +02:00
|
|
|
}
|
|
|
|
DBA::close($contacts);
|
2020-10-03 12:52:34 +02:00
|
|
|
return $ids;
|
2020-09-01 10:09:16 +02:00
|
|
|
}
|
|
|
|
}
|