You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cron.php 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Bernhard Posselt <dev@bernhard-posselt.com>
  6. * @author Christopher Schäpers <kondou@ts.unde.re>
  7. * @author Jakob Sack <mail@jakobsack.de>
  8. * @author Joas Schilling <coding@schilljs.com>
  9. * @author Jörn Friedrich Dreyer <jfd@butonic.de>
  10. * @author Morris Jobke <hey@morrisjobke.de>
  11. * @author Oliver Kohl D.Sc. <oliver@kohl.bz>
  12. * @author Robin Appelman <robin@icewind.nl>
  13. * @author Steffen Lindner <mail@steffen-lindner.de>
  14. * @author Thomas Müller <thomas.mueller@tmit.eu>
  15. * @author Vincent Petry <pvince81@owncloud.com>
  16. *
  17. * @license AGPL-3.0
  18. *
  19. * This code is free software: you can redistribute it and/or modify
  20. * it under the terms of the GNU Affero General Public License, version 3,
  21. * as published by the Free Software Foundation.
  22. *
  23. * This program is distributed in the hope that it will be useful,
  24. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. * GNU Affero General Public License for more details.
  27. *
  28. * You should have received a copy of the GNU Affero General Public License, version 3,
  29. * along with this program. If not, see <http://www.gnu.org/licenses/>
  30. *
  31. */
  32. try {
  33. require_once __DIR__ . '/lib/base.php';
  34. if (\OCP\Util::needUpgrade()) {
  35. \OCP\Util::writeLog('cron', 'Update required, skipping cron', \OCP\Util::DEBUG);
  36. exit;
  37. }
  38. if (\OC::$server->getSystemConfig()->getValue('maintenance', false)) {
  39. \OCP\Util::writeLog('cron', 'We are in maintenance mode, skipping cron', \OCP\Util::DEBUG);
  40. exit;
  41. }
  42. if (\OC::$server->getSystemConfig()->getValue('singleuser', false)) {
  43. \OCP\Util::writeLog('cron', 'We are in admin only mode, skipping cron', \OCP\Util::DEBUG);
  44. exit;
  45. }
  46. // load all apps to get all api routes properly setup
  47. OC_App::loadApps();
  48. \OC::$server->getSession()->close();
  49. // initialize a dummy memory session
  50. $session = new \OC\Session\Memory('');
  51. $cryptoWrapper = \OC::$server->getSessionCryptoWrapper();
  52. $session = $cryptoWrapper->wrapSession($session);
  53. \OC::$server->setSession($session);
  54. $logger = \OC::$server->getLogger();
  55. $config = \OC::$server->getConfig();
  56. // Don't do anything if ownCloud has not been installed
  57. if (!$config->getSystemValue('installed', false)) {
  58. exit(0);
  59. }
  60. \OC::$server->getTempManager()->cleanOld();
  61. // Exit if background jobs are disabled!
  62. $appMode = \OCP\BackgroundJob::getExecutionType();
  63. if ($appMode == 'none') {
  64. if (OC::$CLI) {
  65. echo 'Background Jobs are disabled!' . PHP_EOL;
  66. } else {
  67. OC_JSON::error(array('data' => array('message' => 'Background jobs disabled!')));
  68. }
  69. exit(1);
  70. }
  71. if (OC::$CLI) {
  72. // set to run indefinitely if needed
  73. set_time_limit(0);
  74. // the cron job must be executed with the right user
  75. if (!function_exists('posix_getuid')) {
  76. echo "The posix extensions are required - see http://php.net/manual/en/book.posix.php" . PHP_EOL;
  77. exit(0);
  78. }
  79. $user = posix_getpwuid(posix_getuid());
  80. $configUser = posix_getpwuid(fileowner(OC::$configDir . 'config.php'));
  81. if ($user['name'] !== $configUser['name']) {
  82. echo "Console has to be executed with the same user as the web server is operated" . PHP_EOL;
  83. echo "Current user: " . $user['name'] . PHP_EOL;
  84. echo "Web server user: " . $configUser['name'] . PHP_EOL;
  85. exit(0);
  86. }
  87. // We call ownCloud from the CLI (aka cron)
  88. if ($appMode != 'cron') {
  89. \OCP\BackgroundJob::setExecutionType('cron');
  90. }
  91. // Work
  92. $jobList = \OC::$server->getJobList();
  93. // We only ask for jobs for 14 minutes, because after 15 minutes the next
  94. // system cron task should spawn.
  95. $endTime = time() + 14 * 60;
  96. $executedJobs = [];
  97. while ($job = $jobList->getNext()) {
  98. if (isset($executedJobs[$job->getId()])) {
  99. $jobList->unlockJob($job);
  100. break;
  101. }
  102. $logger->debug('Run ' . get_class($job) . ' job with ID ' . $job->getId(), ['app' => 'cron']);
  103. $job->execute($jobList, $logger);
  104. $logger->debug('Finished ' . get_class($job) . ' job with ID ' . $job->getId(), ['app' => 'cron']);
  105. $jobList->setLastJob($job);
  106. $executedJobs[$job->getId()] = true;
  107. unset($job);
  108. if (time() > $endTime) {
  109. break;
  110. }
  111. }
  112. } else {
  113. // We call cron.php from some website
  114. if ($appMode == 'cron') {
  115. // Cron is cron :-P
  116. OC_JSON::error(array('data' => array('message' => 'Backgroundjobs are using system cron!')));
  117. } else {
  118. // Work and success :-)
  119. $jobList = \OC::$server->getJobList();
  120. $job = $jobList->getNext();
  121. if ($job != null) {
  122. $job->execute($jobList, $logger);
  123. $jobList->setLastJob($job);
  124. }
  125. OC_JSON::success();
  126. }
  127. }
  128. // Log the successful cron execution
  129. if (\OC::$server->getConfig()->getSystemValue('cron_log', true)) {
  130. \OC::$server->getConfig()->setAppValue('core', 'lastcron', time());
  131. }
  132. exit();
  133. } catch (Exception $ex) {
  134. \OCP\Util::writeLog('cron', $ex->getMessage(), \OCP\Util::FATAL);
  135. } catch (Error $ex) {
  136. \OCP\Util::writeLog('cron', $ex->getMessage(), \OCP\Util::FATAL);
  137. }