2012-10-27 01:13:19 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
|
|
|
* @author Felix Moeller <mail@felixmoeller.de>
|
|
|
|
* @author Jakob Sack <mail@jakobsack.de>
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Scrutinizer Auto-Fixer <auto-fixer@scrutinizer-ci.com>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class does the dirty work.
|
2012-10-27 01:13:19 +04:00
|
|
|
*/
|
|
|
|
class OC_BackgroundJob{
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* get the execution type of background jobs
|
2012-10-27 01:13:19 +04:00
|
|
|
* @return string
|
|
|
|
*
|
|
|
|
* This method returns the type how background jobs are executed. If the user
|
|
|
|
* did not select something, the type is ajax.
|
|
|
|
*/
|
2012-10-27 12:15:39 +04:00
|
|
|
public static function getExecutionType() {
|
2012-10-27 01:13:19 +04:00
|
|
|
return OC_Appconfig::getValue( 'core', 'backgroundjobs_mode', 'ajax' );
|
|
|
|
}
|
2013-01-14 23:30:39 +04:00
|
|
|
|
2012-10-27 01:13:19 +04:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* sets the background jobs execution type
|
2014-02-06 19:30:58 +04:00
|
|
|
* @param string $type execution type
|
2014-02-19 12:31:54 +04:00
|
|
|
* @return false|null
|
2012-10-27 01:13:19 +04:00
|
|
|
*
|
2012-11-05 01:16:04 +04:00
|
|
|
* This method sets the execution type of the background jobs. Possible types
|
2012-10-27 12:15:39 +04:00
|
|
|
* are "none", "ajax", "webcron", "cron"
|
2012-10-27 01:13:19 +04:00
|
|
|
*/
|
2012-10-27 12:15:39 +04:00
|
|
|
public static function setExecutionType( $type ) {
|
2012-11-04 13:46:32 +04:00
|
|
|
if( !in_array( $type, array('none', 'ajax', 'webcron', 'cron'))) {
|
2012-10-27 01:13:19 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return OC_Appconfig::setValue( 'core', 'backgroundjobs_mode', $type );
|
|
|
|
}
|
|
|
|
}
|