friendica/src/Worker/UpdateGServers.php

79 lines
2.5 KiB
PHP
Raw Normal View History

2019-12-20 22:12:44 +01: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/>.
*
2019-12-20 22:12:44 +01:00
*/
2019-12-20 22:12:44 +01:00
namespace Friendica\Worker;
use Friendica\Core\Logger;
use Friendica\Core\Worker;
use Friendica\Database\DBA;
2020-12-03 23:32:51 +01:00
use Friendica\DI;
use Friendica\Util\Strings;
2019-12-20 22:12:44 +01:00
2019-12-21 19:57:00 +01:00
class UpdateGServers
2019-12-20 22:12:44 +01:00
{
/**
2020-12-03 23:32:51 +01:00
* Updates a defined number of servers
2019-12-20 22:12:44 +01:00
*/
public static function execute()
{
2020-12-03 23:32:51 +01:00
$update_limit = DI::config()->get('system', 'gserver_update_limit');
if (empty($update_limit)) {
return;
}
2020-12-03 16:47:50 +01:00
$updating = Worker::countWorkersByCommand('UpdateGServer');
2020-12-03 23:32:51 +01:00
$limit = $update_limit - $updating;
2020-12-03 16:47:50 +01:00
if ($limit <= 0) {
Logger::info('The number of currently running jobs exceed the limit');
2019-12-20 22:12:44 +01:00
return;
}
2020-12-03 16:47:50 +01:00
$total = DBA::count('gserver');
2020-12-03 23:32:51 +01:00
$condition = ["`next_contact` < UTC_TIMESTAMP() AND (`nurl` != ? OR `url` != ?)", '', ''];
$outdated = DBA::count('gserver', $condition);
2020-12-03 16:47:50 +01:00
Logger::info('Server status', ['total' => $total, 'outdated' => $outdated, 'updating' => $limit]);
2019-12-20 22:12:44 +01:00
2020-12-03 23:32:51 +01:00
$gservers = DBA::select('gserver', ['url', 'nurl'], $condition, ['limit' => $limit]);
2020-12-03 16:47:50 +01:00
if (!DBA::isResult($gservers)) {
return;
}
2019-12-20 22:12:44 +01:00
2020-12-03 16:47:50 +01:00
$count = 0;
while ($gserver = DBA::fetch($gservers)) {
2020-12-03 23:32:51 +01:00
// Sometimes the "nurl" and "url" doesn't seem to fit, see https://forum.friendi.ca/display/ec054ce7-155f-c94d-6159-f50372664245
// There are duplicated "url" but not "nurl". So we check both addresses instead of just overwriting them,
// since that would mean loosing data.
if (!empty($gserver['url'])) {
2020-12-05 22:07:48 +01:00
if (Worker::add(PRIORITY_LOW, 'UpdateGServer', $gserver['url'])) {
$count++;
}
2020-12-03 23:32:51 +01:00
}
if (!empty($gserver['nurl']) && ($gserver['nurl'] != Strings::normaliseLink($gserver['url']))) {
2020-12-05 22:07:48 +01:00
if (Worker::add(PRIORITY_LOW, 'UpdateGServer', $gserver['nurl'])) {
$count++;
}
2020-12-03 23:32:51 +01:00
}
2019-12-20 22:12:44 +01:00
}
2020-04-28 09:10:18 +02:00
DBA::close($gservers);
2020-12-03 16:47:50 +01:00
Logger::info('Updated servers', ['count' => $count]);
2019-12-20 22:12:44 +01:00
}
}