friendica/src/Worker/Cron.php

178 lines
5.1 KiB
PHP
Raw Normal View History

<?php
2017-11-18 08:31:33 +01:00
/**
2023-01-01 15:36:24 +01:00
* @copyright Copyright (C) 2010-2023, the Friendica project
*
* @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/>.
*
2017-11-18 08:31:33 +01:00
*/
namespace Friendica\Worker;
use Friendica\Core\Hook;
2018-10-29 22:20:46 +01:00
use Friendica\Core\Logger;
use Friendica\Core\Worker;
2021-01-07 00:05:55 +01:00
use Friendica\Database\DBA;
use Friendica\DI;
use Friendica\Model\Tag;
2022-07-21 07:33:01 +02:00
use Friendica\Protocol\ActivityPub\Queue;
2022-05-24 09:02:42 +02:00
use Friendica\Protocol\Relay;
use Friendica\Util\DateTimeFormat;
class Cron
{
public static function execute()
{
$a = DI::app();
$last = DI::keyValue()->get('last_cron');
$poll_interval = intval(DI::config()->get('system', 'cron_interval'));
if ($last) {
$next = $last + ($poll_interval * 60);
if ($next > time()) {
2020-09-01 10:11:42 +02:00
Logger::notice('cron intervall not reached');
return;
}
}
2020-09-01 10:30:12 +02:00
Logger::notice('start');
// Ensure to have a .htaccess file.
// this is a precaution for systems that update automatically
$basepath = $a->getBasePath();
if (!file_exists($basepath . '/.htaccess') && is_writable($basepath)) {
copy($basepath . '/.htaccess-dist', $basepath . '/.htaccess');
}
2021-01-07 00:05:55 +01:00
if (DI::config()->get('system', 'delete_sleeping_processes')) {
self::deleteSleepingProcesses();
}
// Fork the cron jobs in separate parts to avoid problems when one of them is crashing
2022-10-17 07:49:55 +02:00
Hook::fork(Worker::PRIORITY_MEDIUM, 'cron');
2020-09-01 10:30:12 +02:00
// Poll contacts
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_MEDIUM, 'PollContacts');
2020-09-01 10:30:12 +02:00
// Update contact information
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_LOW, 'UpdateContacts');
2020-09-01 10:30:12 +02:00
2020-12-03 16:47:50 +01:00
// Update server information
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_LOW, 'UpdateGServers');
2020-12-03 16:47:50 +01:00
2019-12-21 19:57:00 +01:00
// run the process to update server directories in the background
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_LOW, 'UpdateServerDirectories');
// Expire and remove user entries
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_MEDIUM, 'ExpireAndRemoveUsers');
// Call possible post update functions
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_LOW, 'PostUpdate');
2020-09-01 10:30:12 +02:00
// Hourly cron calls
if ((DI::keyValue()->get('last_cron_hourly') ?? 0) + 3600 < time()) {
// Update trending tags cache for the community page
Tag::setLocalTrendingHashtags(24, 20);
Tag::setGlobalTrendingHashtags(24, 20);
2022-07-21 08:23:55 +02:00
// Remove old pending posts from the queue
Queue::clear();
2022-07-21 07:33:01 +02:00
2022-07-24 15:09:35 +02:00
// Process all unprocessed entries
Queue::processAll();
2022-07-24 15:09:35 +02:00
2020-09-01 10:30:12 +02:00
// Search for new contacts in the directory
if (DI::config()->get('system', 'synchronize_directory')) {
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_LOW, 'PullDirectory');
2020-09-01 10:30:12 +02:00
}
// Clear cache entries
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_LOW, 'ClearCache');
2020-09-01 10:30:12 +02:00
DI::keyValue()->set('last_cron_hourly', time());
2020-09-01 10:30:12 +02:00
}
2020-10-17 14:39:42 +02:00
// Daily maintenance cron calls
if (Worker::isInMaintenanceWindow(true)) {
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_LOW, 'UpdateContactBirthdays');
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_LOW, 'UpdatePhotoAlbums');
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_LOW, 'ExpirePosts');
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_LOW, 'ExpireActivities');
2020-08-26 07:33:37 +02:00
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_LOW, 'RemoveUnusedTags');
2022-04-24 17:27:20 +02:00
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_LOW, 'RemoveUnusedContacts');
2020-12-05 22:07:48 +01:00
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_LOW, 'RemoveUnusedAvatars');
// check upstream version?
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_LOW, 'CheckVersion');
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_LOW, 'CheckDeletedContacts');
2022-11-30 06:59:27 +01:00
Worker::add(Worker::PRIORITY_LOW, 'UpdateAllSuggestions');
2020-08-19 21:41:22 +02:00
if (DI::config()->get('system', 'optimize_tables')) {
2022-10-17 07:49:55 +02:00
Worker::add(Worker::PRIORITY_LOW, 'OptimizeTables');
2020-08-19 20:16:48 +02:00
}
2022-07-24 11:26:52 +02:00
2022-12-23 07:26:58 +01:00
$users = DBA::select('owner-view', ['uid'], ["`homepage_verified` OR (`last-activity` > ? AND `homepage` != ?)", DateTimeFormat::utc('now - 7 days', 'Y-m-d'), '']);
while ($user = DBA::fetch($users)) {
Worker::add(Worker::PRIORITY_LOW, 'CheckRelMeProfileLink', $user['uid']);
}
DBA::close($users);
2023-01-01 15:36:24 +01:00
2022-05-24 09:02:42 +02:00
// Resubscribe to relay servers
Relay::reSubscribe();
2022-07-24 11:26:52 +02:00
// Update "blocked" status of servers
Worker::add(Worker::PRIORITY_LOW, 'UpdateBlockedServers');
DI::keyValue()->set('last_cron_daily', time());
}
2020-09-01 10:30:12 +02:00
Logger::notice('end');
DI::keyValue()->set('last_cron', time());
}
2021-01-07 00:05:55 +01:00
/**
* Kill sleeping database processes
*
* @return void
*/
private static function deleteSleepingProcesses()
{
Logger::info('Looking for sleeping processes');
2023-01-01 15:36:24 +01:00
2021-01-07 00:05:55 +01:00
$processes = DBA::p("SHOW FULL PROCESSLIST");
while ($process = DBA::fetch($processes)) {
2021-01-07 00:24:00 +01:00
if (($process['Command'] != 'Sleep') || ($process['Time'] < 300) || ($process['db'] != DBA::databaseName())) {
2021-01-07 00:05:55 +01:00
continue;
}
DBA::e("KILL ?", $process['Id']);
Logger::notice('Killed sleeping process', ['id' => $process['Id']]);
}
DBA::close($processes);
}
}