2017-11-14 21:50:16 +00:00
|
|
|
<?php
|
2017-11-18 07:31:33 +00:00
|
|
|
/**
|
2020-02-09 15:18:46 +00: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 07:31:33 +00:00
|
|
|
*/
|
2020-02-09 15:18:46 +00:00
|
|
|
|
2017-11-14 21:50:16 +00:00
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-10-21 05:15:02 +00:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 21:20:46 +00:00
|
|
|
use Friendica\Core\Logger;
|
2017-11-14 21:50:16 +00:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 21:34:11 +00:00
|
|
|
use Friendica\DI;
|
2018-01-27 02:38:34 +00:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2017-11-14 21:50:16 +00:00
|
|
|
|
2018-07-10 02:39:59 +00:00
|
|
|
class Cron
|
|
|
|
{
|
2019-06-26 05:18:11 +00:00
|
|
|
public static function execute()
|
2018-07-10 02:39:59 +00:00
|
|
|
{
|
2019-12-15 21:34:11 +00:00
|
|
|
$a = DI::app();
|
2017-11-14 21:50:16 +00:00
|
|
|
|
2020-01-19 20:21:13 +00:00
|
|
|
$last = DI::config()->get('system', 'last_cron');
|
2017-11-14 21:50:16 +00:00
|
|
|
|
2020-01-19 20:21:13 +00:00
|
|
|
$poll_interval = intval(DI::config()->get('system', 'cron_interval'));
|
2017-11-14 21:50:16 +00:00
|
|
|
|
|
|
|
if ($last) {
|
|
|
|
$next = $last + ($poll_interval * 60);
|
|
|
|
if ($next > time()) {
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('cron intervall not reached');
|
2017-11-14 21:50:16 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('cron: start');
|
2017-11-14 21:50:16 +00:00
|
|
|
|
2018-02-06 22:52:36 +00:00
|
|
|
// Fork the cron jobs in separate parts to avoid problems when one of them is crashing
|
2018-10-21 05:15:02 +00:00
|
|
|
Hook::fork($a->queue['priority'], "cron");
|
2018-02-06 22:52:36 +00:00
|
|
|
|
2019-12-21 18:57:00 +00:00
|
|
|
// run the process to update server directories in the background
|
|
|
|
Worker::add(PRIORITY_LOW, 'UpdateServerDirectories');
|
2017-11-14 21:50:16 +00:00
|
|
|
|
|
|
|
// Expire and remove user entries
|
2020-08-16 08:39:04 +00:00
|
|
|
Worker::add(PRIORITY_MEDIUM, 'ExpireAndRemoveUsers');
|
2017-11-14 21:50:16 +00:00
|
|
|
|
|
|
|
// Call possible post update functions
|
2020-08-16 08:39:04 +00:00
|
|
|
Worker::add(PRIORITY_LOW, 'PostUpdate');
|
2017-11-14 21:50:16 +00:00
|
|
|
|
|
|
|
// Repair entries in the database
|
2020-08-16 08:39:04 +00:00
|
|
|
Worker::add(PRIORITY_LOW, 'RepairDatabase');
|
2017-11-14 21:50:16 +00:00
|
|
|
|
|
|
|
// once daily run birthday_updates and then expire in background
|
2020-01-19 20:21:13 +00:00
|
|
|
$d1 = DI::config()->get('system', 'last_expire_day');
|
2018-01-27 02:38:34 +00:00
|
|
|
$d2 = intval(DateTimeFormat::utcNow('d'));
|
2017-11-14 21:50:16 +00:00
|
|
|
|
2018-05-15 17:50:29 +00:00
|
|
|
// Daily cron calls
|
2017-11-14 21:50:16 +00:00
|
|
|
if ($d2 != intval($d1)) {
|
|
|
|
|
2020-08-16 08:39:04 +00:00
|
|
|
Worker::add(PRIORITY_LOW, 'UpdateContactBirthdays');
|
2017-11-14 21:50:16 +00:00
|
|
|
|
2020-08-16 08:39:04 +00:00
|
|
|
Worker::add(PRIORITY_LOW, 'UpdatePhotoAlbums');
|
2018-05-22 20:10:18 +00:00
|
|
|
|
|
|
|
// update nodeinfo data
|
2020-08-16 08:39:04 +00:00
|
|
|
Worker::add(PRIORITY_LOW, 'NodeInfo');
|
2018-05-22 20:10:18 +00:00
|
|
|
|
2019-12-21 18:57:00 +00:00
|
|
|
Worker::add(PRIORITY_LOW, 'UpdateGServers');
|
2017-11-14 21:50:16 +00:00
|
|
|
|
2017-11-19 16:25:13 +00:00
|
|
|
Worker::add(PRIORITY_LOW, 'Expire');
|
2017-11-14 21:50:16 +00:00
|
|
|
|
2017-11-18 05:45:44 +00:00
|
|
|
Worker::add(PRIORITY_MEDIUM, 'DBClean');
|
2017-11-14 21:50:16 +00:00
|
|
|
|
2020-08-26 05:33:37 +00:00
|
|
|
Worker::add(PRIORITY_LOW, 'ExpireConversations');
|
|
|
|
|
|
|
|
Worker::add(PRIORITY_LOW, 'CleanItemUri');
|
|
|
|
|
2017-11-14 21:50:16 +00:00
|
|
|
// check upstream version?
|
2017-11-15 21:12:33 +00:00
|
|
|
Worker::add(PRIORITY_LOW, 'CheckVersion');
|
2018-05-22 20:10:18 +00:00
|
|
|
|
2020-09-01 08:09:16 +00:00
|
|
|
Worker::add(PRIORITY_LOW, 'CheckdeletedContacts');
|
2020-01-11 17:22:37 +00:00
|
|
|
|
2020-08-19 19:41:22 +00:00
|
|
|
if (DI::config()->get('system', 'optimize_tables')) {
|
2020-09-01 08:09:16 +00:00
|
|
|
Worker::add(PRIORITY_LOW, 'OptimizeTables');
|
2020-08-19 18:16:48 +00:00
|
|
|
}
|
|
|
|
|
2020-01-19 20:21:53 +00:00
|
|
|
DI::config()->set('system', 'last_expire_day', $d2);
|
2017-11-14 21:50:16 +00:00
|
|
|
}
|
|
|
|
|
2018-05-15 17:50:29 +00:00
|
|
|
// Hourly cron calls
|
2020-01-19 20:21:13 +00:00
|
|
|
if (DI::config()->get('system', 'last_cron_hourly', 0) + 3600 < time()) {
|
2018-05-15 17:50:29 +00:00
|
|
|
|
2020-07-31 09:08:51 +00:00
|
|
|
// Search for new contacts in the directory
|
|
|
|
if (DI::config()->get('system', 'synchronize_directory')) {
|
|
|
|
Worker::add(PRIORITY_LOW, 'PullDirectory');
|
|
|
|
}
|
|
|
|
|
2018-05-15 17:50:29 +00:00
|
|
|
// Delete all done workerqueue entries
|
2018-07-20 12:19:26 +00:00
|
|
|
DBA::delete('workerqueue', ['`done` AND `executed` < UTC_TIMESTAMP() - INTERVAL 1 HOUR']);
|
2018-05-15 17:50:29 +00:00
|
|
|
|
|
|
|
// Optimizing this table only last seconds
|
2020-08-04 12:24:24 +00:00
|
|
|
if (DI::config()->get('system', 'optimize_tables')) {
|
2020-08-19 18:16:48 +00:00
|
|
|
// We are acquiring the two locks from the worker to avoid locking problems
|
|
|
|
if (DI::lock()->acquire(Worker::LOCK_PROCESS, 10)) {
|
|
|
|
if (DI::lock()->acquire(Worker::LOCK_WORKER, 10)) {
|
|
|
|
DBA::e("OPTIMIZE TABLE `workerqueue`");
|
|
|
|
DBA::e("OPTIMIZE TABLE `process`");
|
|
|
|
DI::lock()->release(Worker::LOCK_WORKER);
|
|
|
|
}
|
|
|
|
DI::lock()->release(Worker::LOCK_PROCESS);
|
|
|
|
}
|
2018-05-27 06:23:18 +00:00
|
|
|
}
|
2018-05-15 17:50:29 +00:00
|
|
|
|
2020-08-19 18:16:48 +00:00
|
|
|
// Clear cache entries
|
|
|
|
Worker::add(PRIORITY_LOW, 'ClearCache');
|
|
|
|
|
2020-01-19 20:21:53 +00:00
|
|
|
DI::config()->set('system', 'last_cron_hourly', time());
|
2018-05-15 17:50:29 +00:00
|
|
|
}
|
|
|
|
|
2018-07-21 05:41:19 +00:00
|
|
|
// Ensure to have a .htaccess file.
|
|
|
|
// this is a precaution for systems that update automatically
|
2018-10-09 17:58:58 +00:00
|
|
|
$basepath = $a->getBasePath();
|
2019-09-14 10:30:41 +00:00
|
|
|
if (!file_exists($basepath . '/.htaccess') && is_writable($basepath)) {
|
2018-07-21 05:41:19 +00:00
|
|
|
copy($basepath . '/.htaccess-dist', $basepath . '/.htaccess');
|
|
|
|
}
|
|
|
|
|
2017-11-14 21:50:16 +00:00
|
|
|
// Poll contacts
|
2020-09-01 08:09:16 +00:00
|
|
|
Worker::add(PRIORITY_HIGH, 'PollContacts');
|
2017-11-14 21:50:16 +00:00
|
|
|
|
2019-06-23 09:27:40 +00:00
|
|
|
// Update contact information
|
2020-09-01 08:09:16 +00:00
|
|
|
Worker::add(PRIORITY_LOW, 'UpdatePublicContacts');
|
2019-06-23 09:27:40 +00:00
|
|
|
|
2018-10-29 21:20:46 +00:00
|
|
|
Logger::log('cron: end');
|
2017-11-14 21:50:16 +00:00
|
|
|
|
2020-01-19 20:21:53 +00:00
|
|
|
DI::config()->set('system', 'last_cron', time());
|
2017-11-14 21:50:16 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|