2017-11-14 22:50:16 +01:00
|
|
|
<?php
|
2017-11-18 08:31:33 +01:00
|
|
|
/**
|
2022-01-02 08:27:47 +01:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 16:18:46 +01:00
|
|
|
*
|
|
|
|
* @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
|
|
|
*/
|
2020-02-09 16:18:46 +01:00
|
|
|
|
2017-11-14 22:50:16 +01:00
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-10-21 07:15:02 +02:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2017-11-14 22:50:16 +01:00
|
|
|
use Friendica\Core\Worker;
|
2021-01-07 00:05:55 +01:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 22:34:11 +01:00
|
|
|
use Friendica\DI;
|
2020-09-26 11:42:12 +02:00
|
|
|
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;
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2018-07-10 04:39:59 +02:00
|
|
|
class Cron
|
|
|
|
{
|
2019-06-26 07:18:11 +02:00
|
|
|
public static function execute()
|
2018-07-10 04:39:59 +02:00
|
|
|
{
|
2019-12-15 22:34:11 +01:00
|
|
|
$a = DI::app();
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
$last = DI::config()->get('system', 'last_cron');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
$poll_interval = intval(DI::config()->get('system', 'cron_interval'));
|
2017-11-14 22:50:16 +01:00
|
|
|
|
|
|
|
if ($last) {
|
|
|
|
$next = $last + ($poll_interval * 60);
|
|
|
|
if ($next > time()) {
|
2020-09-01 10:11:42 +02:00
|
|
|
Logger::notice('cron intervall not reached');
|
2017-11-14 22:50:16 +01:00
|
|
|
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');
|
|
|
|
}
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2021-01-07 00:05:55 +01:00
|
|
|
if (DI::config()->get('system', 'delete_sleeping_processes')) {
|
|
|
|
self::deleteSleepingProcesses();
|
|
|
|
}
|
|
|
|
|
2018-02-06 23:52:36 +01:00
|
|
|
// Fork the cron jobs in separate parts to avoid problems when one of them is crashing
|
2020-11-29 17:41:20 +01:00
|
|
|
Hook::fork(PRIORITY_MEDIUM, 'cron');
|
2018-02-06 23:52:36 +01:00
|
|
|
|
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
|
2020-12-04 06:53:11 +01:00
|
|
|
Worker::add(PRIORITY_LOW, 'UpdateContacts');
|
2020-09-01 10:30:12 +02:00
|
|
|
|
2020-12-03 16:47:50 +01:00
|
|
|
// Update server information
|
|
|
|
Worker::add(PRIORITY_LOW, 'UpdateGServers');
|
|
|
|
|
2019-12-21 19:57:00 +01:00
|
|
|
// run the process to update server directories in the background
|
|
|
|
Worker::add(PRIORITY_LOW, 'UpdateServerDirectories');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
|
|
|
// Expire and remove user entries
|
2020-08-16 10:39:04 +02:00
|
|
|
Worker::add(PRIORITY_MEDIUM, 'ExpireAndRemoveUsers');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
|
|
|
// Call possible post update functions
|
2020-08-16 10:39:04 +02:00
|
|
|
Worker::add(PRIORITY_LOW, 'PostUpdate');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2020-09-01 10:30:12 +02:00
|
|
|
// Hourly cron calls
|
|
|
|
if (DI::config()->get('system', 'last_cron_hourly', 0) + 3600 < time()) {
|
|
|
|
|
2020-10-03 08:10:39 +02:00
|
|
|
// 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
|
2022-08-03 05:38:03 +02:00
|
|
|
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')) {
|
|
|
|
Worker::add(PRIORITY_LOW, 'PullDirectory');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear cache entries
|
|
|
|
Worker::add(PRIORITY_LOW, 'ClearCache');
|
|
|
|
|
|
|
|
DI::config()->set('system', 'last_cron_hourly', time());
|
|
|
|
}
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2020-10-17 14:39:42 +02:00
|
|
|
// Daily maintenance cron calls
|
|
|
|
if (Worker::isInMaintenanceWindow(true)) {
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2020-08-16 10:39:04 +02:00
|
|
|
Worker::add(PRIORITY_LOW, 'UpdateContactBirthdays');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2020-08-16 10:39:04 +02:00
|
|
|
Worker::add(PRIORITY_LOW, 'UpdatePhotoAlbums');
|
2018-05-22 22:10:18 +02:00
|
|
|
|
2021-03-02 08:06:22 +01:00
|
|
|
Worker::add(PRIORITY_LOW, 'ExpirePosts');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2022-07-27 19:39:00 +02:00
|
|
|
Worker::add(PRIORITY_LOW, 'ExpireActivities');
|
2020-08-26 07:33:37 +02:00
|
|
|
|
2022-04-24 17:27:20 +02:00
|
|
|
Worker::add(PRIORITY_LOW, 'RemoveUnusedTags');
|
|
|
|
|
2020-12-05 22:07:48 +01:00
|
|
|
Worker::add(PRIORITY_LOW, 'RemoveUnusedContacts');
|
|
|
|
|
2020-12-20 07:22:31 +01:00
|
|
|
Worker::add(PRIORITY_LOW, 'RemoveUnusedAvatars');
|
|
|
|
|
2017-11-14 22:50:16 +01:00
|
|
|
// check upstream version?
|
2017-11-15 22:12:33 +01:00
|
|
|
Worker::add(PRIORITY_LOW, 'CheckVersion');
|
2018-05-22 22:10:18 +02:00
|
|
|
|
2020-09-01 15:40:37 +02:00
|
|
|
Worker::add(PRIORITY_LOW, 'CheckDeletedContacts');
|
2020-01-11 18:22:37 +01:00
|
|
|
|
2020-08-19 21:41:22 +02:00
|
|
|
if (DI::config()->get('system', 'optimize_tables')) {
|
2020-09-01 10:09:16 +02:00
|
|
|
Worker::add(PRIORITY_LOW, 'OptimizeTables');
|
2020-08-19 20:16:48 +02:00
|
|
|
}
|
2022-07-24 11:26:52 +02:00
|
|
|
|
2022-05-24 09:02:42 +02:00
|
|
|
// Resubscribe to relay servers
|
|
|
|
Relay::reSubscribe();
|
2022-07-24 11:26:52 +02:00
|
|
|
|
|
|
|
DI::config()->set('system', 'last_cron_daily', time());
|
2018-07-21 07:41:19 +02:00
|
|
|
}
|
|
|
|
|
2020-09-01 10:30:12 +02:00
|
|
|
Logger::notice('end');
|
2017-11-14 22:50:16 +01:00
|
|
|
|
2020-01-19 21:21:53 +01:00
|
|
|
DI::config()->set('system', 'last_cron', time());
|
2017-11-14 22:50:16 +01:00
|
|
|
}
|
2021-01-07 00:05:55 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Kill sleeping database processes
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
private static function deleteSleepingProcesses()
|
|
|
|
{
|
|
|
|
Logger::info('Looking for sleeping processes');
|
|
|
|
|
|
|
|
$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);
|
|
|
|
}
|
2017-11-14 22:50:16 +01:00
|
|
|
}
|