2012-08-09 02:48:36 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Jakob Sack
|
|
|
|
* @copyright 2012 Jakob Sack owncloud@jakobsack.de
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library 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 library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-08-10 01:49:20 +04:00
|
|
|
// Unfortunately we need this class for shutdown function
|
|
|
|
class my_temporary_cron_class {
|
|
|
|
public static $sent = false;
|
2012-10-27 01:16:17 +04:00
|
|
|
public static $lockfile = "";
|
|
|
|
public static $keeplock = false;
|
2012-08-10 00:22:43 +04:00
|
|
|
}
|
|
|
|
|
2012-10-27 01:16:17 +04:00
|
|
|
// We use this function to handle (unexpected) shutdowns
|
2012-08-10 01:49:20 +04:00
|
|
|
function handleUnexpectedShutdown() {
|
2012-10-27 01:16:17 +04:00
|
|
|
// Delete lockfile
|
2012-11-04 13:46:32 +04:00
|
|
|
if( !my_temporary_cron_class::$keeplock && file_exists( my_temporary_cron_class::$lockfile )) {
|
2012-10-27 01:16:17 +04:00
|
|
|
unlink( my_temporary_cron_class::$lockfile );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Say goodbye if the app did not shutdown properly
|
2012-09-04 13:08:58 +04:00
|
|
|
if( !my_temporary_cron_class::$sent ) {
|
|
|
|
if( OC::$CLI ) {
|
2012-08-10 01:49:20 +04:00
|
|
|
echo 'Unexpected error!'.PHP_EOL;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
OC_JSON::error( array( 'data' => array( 'message' => 'Unexpected error!')));
|
|
|
|
}
|
2012-08-10 00:22:43 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-09 02:48:36 +04:00
|
|
|
$RUNTIME_NOSETUPFS = true;
|
2012-09-04 13:08:58 +04:00
|
|
|
require_once 'lib/base.php';
|
2012-08-09 02:48:36 +04:00
|
|
|
|
2012-08-10 16:03:26 +04:00
|
|
|
// Don't do anything if ownCloud has not been installed
|
2012-09-04 13:08:58 +04:00
|
|
|
if( !OC_Config::getValue( 'installed', false )) {
|
2012-08-10 16:03:26 +04:00
|
|
|
exit( 0 );
|
|
|
|
}
|
|
|
|
|
2012-08-10 01:52:48 +04:00
|
|
|
// Handle unexpected errors
|
|
|
|
register_shutdown_function('handleUnexpectedShutdown');
|
|
|
|
|
2012-10-19 02:11:20 +04:00
|
|
|
// Delete temp folder
|
|
|
|
OC_Helper::cleanTmpNoClean();
|
|
|
|
|
2012-08-11 19:18:49 +04:00
|
|
|
// Exit if background jobs are disabled!
|
2012-10-27 12:23:36 +04:00
|
|
|
$appmode = OC_BackgroundJob::getExecutionType();
|
2012-09-04 13:08:58 +04:00
|
|
|
if( $appmode == 'none' ) {
|
2012-08-11 19:18:49 +04:00
|
|
|
my_temporary_cron_class::$sent = true;
|
2012-09-04 13:08:58 +04:00
|
|
|
if( OC::$CLI ) {
|
2012-08-11 19:18:49 +04:00
|
|
|
echo 'Background Jobs are disabled!'.PHP_EOL;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
OC_JSON::error( array( 'data' => array( 'message' => 'Background jobs disabled!')));
|
|
|
|
}
|
|
|
|
exit( 1 );
|
|
|
|
}
|
|
|
|
|
2012-09-04 13:08:58 +04:00
|
|
|
if( OC::$CLI ) {
|
2012-10-27 01:16:17 +04:00
|
|
|
// Create lock file first
|
|
|
|
my_temporary_cron_class::$lockfile = OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' ).'/cron.lock';
|
|
|
|
|
|
|
|
// We call ownCloud from the CLI (aka cron)
|
2012-09-04 13:08:58 +04:00
|
|
|
if( $appmode != 'cron' ) {
|
2012-10-27 01:16:17 +04:00
|
|
|
// Use cron in feature!
|
2012-10-27 12:23:36 +04:00
|
|
|
OC_BackgroundJob::setExecutionType('cron' );
|
2012-08-09 02:48:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
// check if backgroundjobs is still running
|
2012-11-04 13:46:32 +04:00
|
|
|
if( file_exists( my_temporary_cron_class::$lockfile )) {
|
2012-10-27 01:16:17 +04:00
|
|
|
my_temporary_cron_class::$keeplock = true;
|
|
|
|
my_temporary_cron_class::$sent = true;
|
|
|
|
echo "Another instance of cron.php is still running!";
|
|
|
|
exit( 1 );
|
2012-08-09 02:48:36 +04:00
|
|
|
}
|
2012-10-27 01:16:17 +04:00
|
|
|
|
|
|
|
// Create a lock file
|
|
|
|
touch( my_temporary_cron_class::$lockfile );
|
2012-08-09 02:48:36 +04:00
|
|
|
|
|
|
|
// Work
|
|
|
|
OC_BackgroundJob_Worker::doAllSteps();
|
|
|
|
}
|
|
|
|
else{
|
2012-10-27 01:16:17 +04:00
|
|
|
// We call cron.php from some website
|
2012-09-07 17:22:01 +04:00
|
|
|
if( $appmode == 'cron' ) {
|
2012-10-27 01:16:17 +04:00
|
|
|
// Cron is cron :-P
|
2012-08-09 02:48:36 +04:00
|
|
|
OC_JSON::error( array( 'data' => array( 'message' => 'Backgroundjobs are using system cron!')));
|
|
|
|
}
|
2012-08-10 01:49:20 +04:00
|
|
|
else{
|
2012-10-27 01:16:17 +04:00
|
|
|
// Work and success :-)
|
2012-08-10 01:49:20 +04:00
|
|
|
OC_BackgroundJob_Worker::doNextStep();
|
|
|
|
OC_JSON::success();
|
|
|
|
}
|
2012-08-09 02:48:36 +04:00
|
|
|
}
|
2012-10-27 01:16:17 +04:00
|
|
|
|
|
|
|
// done!
|
2012-08-10 01:49:20 +04:00
|
|
|
my_temporary_cron_class::$sent = true;
|
2012-08-09 02:48:36 +04:00
|
|
|
exit();
|