2012-08-09 02:48:36 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Artem Sidorenko <artem@posteo.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Damjan Georgievski <gdamjan@gmail.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Daniel Kesselberg <mail@danielkesselberg.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Ko- <k.stoffelen@cs.ru.nl>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Michael Kuhn <michael@ikkoku.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Oliver Kohl D.Sc. <oliver@kohl.bz>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Steffen Lindner <mail@steffen-lindner.de>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2013-04-20 23:26:47 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
2013-04-20 23:26:47 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
2013-04-20 23:26:47 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-04-20 23:26:47 +04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 13:44:34 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-04-20 23:26:47 +04:00
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-04-20 23:26:47 +04:00
|
|
|
*
|
|
|
|
*/
|
2012-08-10 00:22:43 +04:00
|
|
|
|
2017-10-13 22:30:29 +03:00
|
|
|
require_once __DIR__ . '/lib/versioncheck.php';
|
2016-12-19 17:29:52 +03:00
|
|
|
|
2013-06-10 15:45:19 +04:00
|
|
|
try {
|
2016-10-06 13:13:02 +03:00
|
|
|
require_once __DIR__ . '/lib/base.php';
|
2013-03-17 03:48:10 +04:00
|
|
|
|
2014-07-23 23:29:24 +04:00
|
|
|
if (\OCP\Util::needUpgrade()) {
|
2018-04-20 15:35:37 +03:00
|
|
|
\OC::$server->getLogger()->debug('Update required, skipping cron', ['app' => 'cron']);
|
2015-03-12 23:03:26 +03:00
|
|
|
exit;
|
|
|
|
}
|
2019-02-06 19:08:41 +03:00
|
|
|
if ((bool) \OC::$server->getSystemConfig()->getValue('maintenance', false)) {
|
2018-04-20 15:35:37 +03:00
|
|
|
\OC::$server->getLogger()->debug('We are in maintenance mode, skipping cron', ['app' => 'cron']);
|
2015-03-12 23:03:26 +03:00
|
|
|
exit;
|
2014-07-23 23:29:24 +04:00
|
|
|
}
|
|
|
|
|
2014-02-18 20:17:08 +04:00
|
|
|
// load all apps to get all api routes properly setup
|
|
|
|
OC_App::loadApps();
|
|
|
|
|
2014-07-16 21:40:22 +04:00
|
|
|
\OC::$server->getSession()->close();
|
2012-08-10 01:52:48 +04:00
|
|
|
|
2014-07-02 14:00:35 +04:00
|
|
|
// initialize a dummy memory session
|
2015-07-20 13:59:04 +03:00
|
|
|
$session = new \OC\Session\Memory('');
|
|
|
|
$cryptoWrapper = \OC::$server->getSessionCryptoWrapper();
|
|
|
|
$session = $cryptoWrapper->wrapSession($session);
|
|
|
|
\OC::$server->setSession($session);
|
2014-07-02 13:52:45 +04:00
|
|
|
|
2015-07-03 15:06:40 +03:00
|
|
|
$logger = \OC::$server->getLogger();
|
2015-10-30 11:51:16 +03:00
|
|
|
$config = \OC::$server->getConfig();
|
2013-12-02 16:41:47 +04:00
|
|
|
|
2018-01-26 02:14:00 +03:00
|
|
|
// Don't do anything if Nextcloud has not been installed
|
2015-10-30 11:51:16 +03:00
|
|
|
if (!$config->getSystemValue('installed', false)) {
|
2013-06-10 15:45:19 +04:00
|
|
|
exit(0);
|
2012-08-11 19:18:49 +04:00
|
|
|
}
|
|
|
|
|
2014-10-22 19:36:52 +04:00
|
|
|
\OC::$server->getTempManager()->cleanOld();
|
2012-08-09 02:48:36 +04:00
|
|
|
|
2013-06-10 15:45:19 +04:00
|
|
|
// Exit if background jobs are disabled!
|
2018-01-26 02:14:00 +03:00
|
|
|
$appMode = $config->getAppValue('core', 'backgroundjobs_mode', 'ajax');
|
|
|
|
if ($appMode === 'none') {
|
2013-06-10 15:45:19 +04:00
|
|
|
if (OC::$CLI) {
|
|
|
|
echo 'Background Jobs are disabled!' . PHP_EOL;
|
|
|
|
} else {
|
2020-03-26 11:30:18 +03:00
|
|
|
OC_JSON::error(['data' => ['message' => 'Background jobs disabled!']]);
|
2013-06-10 15:45:19 +04:00
|
|
|
}
|
2013-04-20 23:26:47 +04:00
|
|
|
exit(1);
|
2012-08-09 02:48:36 +04:00
|
|
|
}
|
2012-10-27 01:16:17 +04:00
|
|
|
|
2013-06-10 15:45:19 +04:00
|
|
|
if (OC::$CLI) {
|
2015-03-11 03:09:12 +03:00
|
|
|
// set to run indefinitely if needed
|
2017-03-11 19:04:21 +03:00
|
|
|
if (strpos(@ini_get('disable_functions'), 'set_time_limit') === false) {
|
|
|
|
@set_time_limit(0);
|
|
|
|
}
|
2015-03-11 03:09:12 +03:00
|
|
|
|
2015-04-01 11:31:48 +03:00
|
|
|
// the cron job must be executed with the right user
|
2016-07-08 16:55:17 +03:00
|
|
|
if (!function_exists('posix_getuid')) {
|
|
|
|
echo "The posix extensions are required - see http://php.net/manual/en/book.posix.php" . PHP_EOL;
|
2017-03-08 22:04:55 +03:00
|
|
|
exit(1);
|
2016-07-08 16:55:17 +03:00
|
|
|
}
|
2019-08-17 18:18:17 +03:00
|
|
|
|
2020-10-03 17:32:49 +03:00
|
|
|
$user = posix_getuid();
|
|
|
|
$configUser = fileowner(OC::$configDir . 'config.php');
|
|
|
|
if ($user !== $configUser) {
|
2019-08-17 18:18:17 +03:00
|
|
|
echo "Console has to be executed with the user that owns the file config/config.php" . PHP_EOL;
|
2020-10-03 17:32:49 +03:00
|
|
|
echo "Current user id: " . $user . PHP_EOL;
|
|
|
|
echo "Owner id of config.php: " . $configUser . PHP_EOL;
|
2017-03-08 22:04:55 +03:00
|
|
|
exit(1);
|
2015-04-01 11:31:48 +03:00
|
|
|
}
|
|
|
|
|
2020-10-03 17:32:49 +03:00
|
|
|
|
2018-01-26 02:14:00 +03:00
|
|
|
// We call Nextcloud from the CLI (aka cron)
|
|
|
|
if ($appMode !== 'cron') {
|
|
|
|
$config->setAppValue('core', 'backgroundjobs_mode', 'cron');
|
2013-06-10 15:45:19 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Work
|
2014-02-11 17:00:24 +04:00
|
|
|
$jobList = \OC::$server->getJobList();
|
2016-01-28 17:34:50 +03:00
|
|
|
|
2020-02-16 22:50:50 +03:00
|
|
|
// We only ask for jobs for 14 minutes, because after 5 minutes the next
|
|
|
|
// system cron task should spawn and we want to have at most three
|
|
|
|
// cron jobs running in parallel.
|
2016-04-21 11:33:44 +03:00
|
|
|
$endTime = time() + 14 * 60;
|
|
|
|
|
2016-01-28 17:34:50 +03:00
|
|
|
$executedJobs = [];
|
|
|
|
while ($job = $jobList->getNext()) {
|
|
|
|
if (isset($executedJobs[$job->getId()])) {
|
2016-05-18 15:27:48 +03:00
|
|
|
$jobList->unlockJob($job);
|
2016-01-28 17:34:50 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2013-12-02 16:41:47 +04:00
|
|
|
$job->execute($jobList, $logger);
|
2016-09-30 14:30:16 +03:00
|
|
|
// clean up after unclean jobs
|
|
|
|
\OC_Util::tearDownFS();
|
2016-01-28 17:34:50 +03:00
|
|
|
|
|
|
|
$jobList->setLastJob($job);
|
|
|
|
$executedJobs[$job->getId()] = true;
|
|
|
|
unset($job);
|
2016-04-21 11:33:44 +03:00
|
|
|
|
|
|
|
if (time() > $endTime) {
|
|
|
|
break;
|
|
|
|
}
|
2013-06-10 15:45:19 +04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// We call cron.php from some website
|
2017-05-30 13:10:10 +03:00
|
|
|
if ($appMode === 'cron') {
|
2013-06-10 15:45:19 +04:00
|
|
|
// Cron is cron :-P
|
2020-03-26 11:30:18 +03:00
|
|
|
OC_JSON::error(['data' => ['message' => 'Backgroundjobs are using system cron!']]);
|
2013-06-10 15:45:19 +04:00
|
|
|
} else {
|
|
|
|
// Work and success :-)
|
2014-02-11 17:00:24 +04:00
|
|
|
$jobList = \OC::$server->getJobList();
|
2013-06-10 15:45:19 +04:00
|
|
|
$job = $jobList->getNext();
|
2014-07-24 15:54:55 +04:00
|
|
|
if ($job != null) {
|
2014-07-24 15:46:40 +04:00
|
|
|
$job->execute($jobList, $logger);
|
|
|
|
$jobList->setLastJob($job);
|
|
|
|
}
|
2013-06-10 15:45:19 +04:00
|
|
|
OC_JSON::success();
|
|
|
|
}
|
2012-08-10 01:49:20 +04:00
|
|
|
}
|
2012-10-27 01:16:17 +04:00
|
|
|
|
2014-10-17 14:08:31 +04:00
|
|
|
// Log the successful cron execution
|
2017-05-30 13:10:10 +03:00
|
|
|
$config->setAppValue('core', 'lastcron', time());
|
2013-06-10 15:45:19 +04:00
|
|
|
exit();
|
|
|
|
} catch (Exception $ex) {
|
2018-01-12 17:24:28 +03:00
|
|
|
\OC::$server->getLogger()->logException($ex, ['app' => 'cron']);
|
2016-04-20 19:01:47 +03:00
|
|
|
} catch (Error $ex) {
|
2018-01-12 17:24:28 +03:00
|
|
|
\OC::$server->getLogger()->logException($ex, ['app' => 'cron']);
|
2013-08-18 13:02:08 +04:00
|
|
|
}
|