2012-08-08 18:48:36 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
|
|
|
|
* @author Christopher Schäpers <kondou@ts.unde.re>
|
|
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
|
* @author Oliver Kohl D.Sc. <oliver@kohl.bz>
|
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
|
* @author Steffen Lindner <mail@steffen-lindner.de>
|
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
|
* @author Vincent Petry <pvince81@owncloud.com>
|
2013-04-20 15:26:47 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
|
* @license AGPL-3.0
|
2013-04-20 15:26:47 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04: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 15:26:47 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2013-04-20 15:26:47 -04:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-03-26 06:44:34 -04:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU Affero General Public License for more details.
|
2013-04-20 15:26:47 -04:00
|
|
|
*
|
2015-03-26 06:44:34 -04:00
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2013-04-20 15:26:47 -04:00
|
|
|
*
|
|
|
|
|
*/
|
2012-08-09 16:22:43 -04:00
|
|
|
|
2013-06-10 07:45:19 -04:00
|
|
|
try {
|
2012-08-08 18:48:36 -04:00
|
|
|
|
2013-06-10 07:45:19 -04:00
|
|
|
require_once 'lib/base.php';
|
2013-03-16 19:48:10 -04:00
|
|
|
|
2014-07-23 15:29:24 -04:00
|
|
|
if (\OCP\Util::needUpgrade()) {
|
|
|
|
|
\OCP\Util::writeLog('cron', 'Update required, skipping cron', \OCP\Util::DEBUG);
|
2015-03-12 16:03:26 -04:00
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
if (\OC::$server->getSystemConfig()->getValue('maintenance', false)) {
|
|
|
|
|
\OCP\Util::writeLog('cron', 'We are in maintenance mode, skipping cron', \OCP\Util::DEBUG);
|
|
|
|
|
exit;
|
2014-07-23 15:29:24 -04:00
|
|
|
}
|
|
|
|
|
|
2014-02-18 11:17:08 -05:00
|
|
|
// load all apps to get all api routes properly setup
|
|
|
|
|
OC_App::loadApps();
|
|
|
|
|
|
2014-07-16 13:40:22 -04:00
|
|
|
\OC::$server->getSession()->close();
|
2012-08-09 17:52:48 -04:00
|
|
|
|
2014-07-02 06:00:35 -04:00
|
|
|
// initialize a dummy memory session
|
2014-07-16 13:40:22 -04:00
|
|
|
\OC::$server->setSession(new \OC\Session\Memory(''));
|
2014-07-02 05:52:45 -04:00
|
|
|
|
2013-12-02 07:41:47 -05:00
|
|
|
$logger = \OC_Log::$object;
|
|
|
|
|
|
2013-06-10 07:45:19 -04:00
|
|
|
// Don't do anything if ownCloud has not been installed
|
|
|
|
|
if (!OC_Config::getValue('installed', false)) {
|
|
|
|
|
exit(0);
|
2012-08-11 11:18:49 -04:00
|
|
|
}
|
|
|
|
|
|
2014-10-22 11:36:52 -04:00
|
|
|
\OC::$server->getTempManager()->cleanOld();
|
2012-08-08 18:48:36 -04:00
|
|
|
|
2013-06-10 07:45:19 -04:00
|
|
|
// Exit if background jobs are disabled!
|
2015-02-20 07:10:16 -05:00
|
|
|
$appMode = OC_BackgroundJob::getExecutionType();
|
|
|
|
|
if ($appMode == 'none') {
|
2013-06-10 07:45:19 -04:00
|
|
|
if (OC::$CLI) {
|
|
|
|
|
echo 'Background Jobs are disabled!' . PHP_EOL;
|
|
|
|
|
} else {
|
|
|
|
|
OC_JSON::error(array('data' => array('message' => 'Background jobs disabled!')));
|
|
|
|
|
}
|
2013-04-20 15:26:47 -04:00
|
|
|
exit(1);
|
2012-08-08 18:48:36 -04:00
|
|
|
}
|
2012-10-26 17:16:17 -04:00
|
|
|
|
2013-06-10 07:45:19 -04:00
|
|
|
if (OC::$CLI) {
|
2015-03-10 20:09:12 -04:00
|
|
|
// set to run indefinitely if needed
|
|
|
|
|
set_time_limit(0);
|
|
|
|
|
|
2015-02-20 07:10:16 -05:00
|
|
|
$config = OC::$server->getConfig();
|
|
|
|
|
$instanceId = $config->getSystemValue('instanceid');
|
|
|
|
|
$lockFileName = 'owncloud-server-' . $instanceId . '-cron.lock';
|
|
|
|
|
$lockDirectory = $config->getSystemValue('cron.lockfile.location', sys_get_temp_dir());
|
|
|
|
|
$lockDirectory = rtrim($lockDirectory, '\\/');
|
|
|
|
|
$lockFile = $lockDirectory . '/' . $lockFileName;
|
|
|
|
|
|
|
|
|
|
if (!file_exists($lockFile)) {
|
|
|
|
|
touch($lockFile);
|
|
|
|
|
}
|
2012-08-08 18:48:36 -04:00
|
|
|
|
2013-06-10 07:45:19 -04:00
|
|
|
// We call ownCloud from the CLI (aka cron)
|
2015-02-20 07:10:16 -05:00
|
|
|
if ($appMode != 'cron') {
|
2013-06-10 07:45:19 -04:00
|
|
|
OC_BackgroundJob::setExecutionType('cron');
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-20 07:10:16 -05:00
|
|
|
// open the file and try to lock if. If it is not locked, the background
|
|
|
|
|
// job can be executed, otherwise another instance is already running
|
|
|
|
|
$fp = fopen($lockFile, 'w');
|
|
|
|
|
$isLocked = flock($fp, LOCK_EX|LOCK_NB, $wouldBlock);
|
|
|
|
|
|
|
|
|
|
// check if backgroundjobs is still running. The wouldBlock check is
|
|
|
|
|
// needed on systems with advisory locking, see
|
|
|
|
|
// http://php.net/manual/en/function.flock.php#45464
|
|
|
|
|
if (!$isLocked || $wouldBlock) {
|
2014-08-31 08:21:46 -04:00
|
|
|
echo "Another instance of cron.php is still running!" . PHP_EOL;
|
2013-06-10 07:45:19 -04:00
|
|
|
exit(1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Work
|
2014-02-11 08:00:24 -05:00
|
|
|
$jobList = \OC::$server->getJobList();
|
2013-06-10 07:45:19 -04:00
|
|
|
$jobs = $jobList->getAll();
|
|
|
|
|
foreach ($jobs as $job) {
|
2013-12-02 07:41:47 -05:00
|
|
|
$job->execute($jobList, $logger);
|
2013-06-10 07:45:19 -04:00
|
|
|
}
|
2015-02-20 07:10:16 -05:00
|
|
|
|
|
|
|
|
// unlock the file
|
|
|
|
|
flock($fp, LOCK_UN);
|
|
|
|
|
fclose($fp);
|
|
|
|
|
|
2013-06-10 07:45:19 -04:00
|
|
|
} else {
|
|
|
|
|
// We call cron.php from some website
|
2015-02-20 07:10:16 -05:00
|
|
|
if ($appMode == 'cron') {
|
2013-06-10 07:45:19 -04:00
|
|
|
// Cron is cron :-P
|
|
|
|
|
OC_JSON::error(array('data' => array('message' => 'Backgroundjobs are using system cron!')));
|
|
|
|
|
} else {
|
|
|
|
|
// Work and success :-)
|
2014-02-11 08:00:24 -05:00
|
|
|
$jobList = \OC::$server->getJobList();
|
2013-06-10 07:45:19 -04:00
|
|
|
$job = $jobList->getNext();
|
2014-07-24 07:54:55 -04:00
|
|
|
if ($job != null) {
|
2014-07-24 07:46:40 -04:00
|
|
|
$job->execute($jobList, $logger);
|
|
|
|
|
$jobList->setLastJob($job);
|
|
|
|
|
}
|
2013-06-10 07:45:19 -04:00
|
|
|
OC_JSON::success();
|
|
|
|
|
}
|
2012-08-09 17:49:20 -04:00
|
|
|
}
|
2012-10-26 17:16:17 -04:00
|
|
|
|
2014-10-17 06:08:31 -04:00
|
|
|
// Log the successful cron execution
|
|
|
|
|
if (\OC::$server->getConfig()->getSystemValue('cron_log', true)) {
|
2015-02-20 07:10:16 -05:00
|
|
|
\OC::$server->getConfig()->setAppValue('core', 'lastcron', time());
|
2014-03-12 10:20:51 -04:00
|
|
|
}
|
2013-06-10 07:45:19 -04:00
|
|
|
exit();
|
|
|
|
|
|
|
|
|
|
} catch (Exception $ex) {
|
|
|
|
|
\OCP\Util::writeLog('cron', $ex->getMessage(), \OCP\Util::FATAL);
|
2013-08-18 05:02:08 -04:00
|
|
|
}
|