friendica/src/Worker/Cron.php

136 lines
3.7 KiB
PHP
Raw Normal View History

<?php
2017-11-18 08:31:33 +01:00
/**
* @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/>.
*
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;
use Friendica\DI;
use Friendica\Model\Tag;
class Cron
{
public static function execute()
{
$a = DI::app();
$last = DI::config()->get('system', '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');
}
// Fork the cron jobs in separate parts to avoid problems when one of them is crashing
2020-09-01 10:32:53 +02:00
Hook::fork($a->queue['priority'], 'cron');
2020-09-01 10:30:12 +02:00
// Poll contacts
2020-09-01 14:55:46 +02:00
Worker::add(PRIORITY_MEDIUM, 'PollContacts');
2020-09-01 10:30:12 +02:00
// Update contact information
Worker::add(PRIORITY_LOW, 'UpdatePublicContacts');
2019-12-21 19:57:00 +01:00
// run the process to update server directories in the background
Worker::add(PRIORITY_LOW, 'UpdateServerDirectories');
// Expire and remove user entries
Worker::add(PRIORITY_MEDIUM, 'ExpireAndRemoveUsers');
// Call possible post update functions
Worker::add(PRIORITY_LOW, 'PostUpdate');
2020-09-01 10:30:12 +02:00
// Hourly cron calls
if (DI::config()->get('system', 'last_cron_hourly', 0) + 3600 < time()) {
// Update trending tags cache for the community page
Tag::setLocalTrendingHashtags(24, 20);
Tag::setGlobalTrendingHashtags(24, 20);
2020-09-01 10:30:12 +02:00
// Search for new contacts in the directory
if (DI::config()->get('system', 'synchronize_directory')) {
Worker::add(PRIORITY_LOW, 'PullDirectory');
}
// Delete all done workerqueue entries
2020-09-01 15:40:37 +02:00
Worker::add(PRIORITY_LOW, 'CleanWorkerQueue');
2020-09-01 10:30:12 +02:00
// Clear cache entries
Worker::add(PRIORITY_LOW, 'ClearCache');
DI::config()->set('system', 'last_cron_hourly', time());
}
2020-10-17 14:39:42 +02:00
// Daily maintenance cron calls
if (Worker::isInMaintenanceWindow(true)) {
Worker::add(PRIORITY_LOW, 'UpdateContactBirthdays');
Worker::add(PRIORITY_LOW, 'UpdatePhotoAlbums');
// update nodeinfo data
Worker::add(PRIORITY_LOW, 'NodeInfo');
2019-12-21 19:57:00 +01:00
Worker::add(PRIORITY_LOW, 'UpdateGServers');
// Repair entries in the database
Worker::add(PRIORITY_LOW, 'RepairDatabase');
2017-11-19 17:25:13 +01:00
Worker::add(PRIORITY_LOW, 'Expire');
Worker::add(PRIORITY_LOW, 'ExpirePosts');
2020-08-26 07:33:37 +02:00
Worker::add(PRIORITY_LOW, 'ExpireConversations');
Worker::add(PRIORITY_LOW, 'CleanItemUri');
// check upstream version?
2017-11-15 22:12:33 +01:00
Worker::add(PRIORITY_LOW, 'CheckVersion');
2020-09-01 15:40:37 +02:00
Worker::add(PRIORITY_LOW, 'CheckDeletedContacts');
2020-08-19 21:41:22 +02:00
if (DI::config()->get('system', 'optimize_tables')) {
Worker::add(PRIORITY_LOW, 'OptimizeTables');
2020-08-19 20:16:48 +02:00
}
2020-09-01 10:30:12 +02:00
DI::config()->set('system', 'last_cron_daily', time());
}
2020-09-01 10:30:12 +02:00
Logger::notice('end');
DI::config()->set('system', 'last_cron', time());
}
}