[Pkg-owncloud-commits] [owncloud] 78/165: Removed OC_BackgroundJob - reduce class overhead

David Prévot taffit at moszumanska.debian.org
Thu Apr 23 04:06:34 UTC 2015


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch stable8
in repository owncloud.

commit 60b8aa2a83fe100f410a6d80b09adaf882619301
Author: Morris Jobke <hey at morrisjobke.de>
Date:   Sat Apr 18 23:37:32 2015 +0200

    Removed OC_BackgroundJob - reduce class overhead
    
    * method code is now in the static public namespace (5 sloc)
---
 cron.php                      |  4 ++--
 lib/private/backgroundjob.php | 56 -------------------------------------------
 lib/public/backgroundjob.php  |  7 ++++--
 3 files changed, 7 insertions(+), 60 deletions(-)

diff --git a/cron.php b/cron.php
index 8c02536..6ace296 100644
--- a/cron.php
+++ b/cron.php
@@ -64,7 +64,7 @@ try {
 	\OC::$server->getTempManager()->cleanOld();
 
 	// Exit if background jobs are disabled!
-	$appMode = OC_BackgroundJob::getExecutionType();
+	$appMode = \OCP\BackgroundJob::getExecutionType();
 	if ($appMode == 'none') {
 		if (OC::$CLI) {
 			echo 'Background Jobs are disabled!' . PHP_EOL;
@@ -107,7 +107,7 @@ try {
 
 		// We call ownCloud from the CLI (aka cron)
 		if ($appMode != 'cron') {
-			OC_BackgroundJob::setExecutionType('cron');
+			\OCP\BackgroundJob::setExecutionType('cron');
 		}
 
 		// open the file and try to lock if. If it is not locked, the background
diff --git a/lib/private/backgroundjob.php b/lib/private/backgroundjob.php
deleted file mode 100644
index 574109f..0000000
--- a/lib/private/backgroundjob.php
+++ /dev/null
@@ -1,56 +0,0 @@
-<?php
-/**
- * @author Bart Visscher <bartv at thisnet.nl>
- * @author Felix Moeller <mail at felixmoeller.de>
- * @author Jakob Sack <mail at jakobsack.de>
- * @author Jörn Friedrich Dreyer <jfd at butonic.de>
- * @author Morris Jobke <hey at morrisjobke.de>
- * @author Scrutinizer Auto-Fixer <auto-fixer at 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/>
- *
- */
-
-/**
- * This class does the dirty work.
- */
-class OC_BackgroundJob{
-	/**
-	 * get the execution type of background jobs
-	 * @return string
-	 *
-	 * This method returns the type how background jobs are executed. If the user
-	 * did not select something, the type is ajax.
-	 */
-	public static function getExecutionType() {
-		return OC_Appconfig::getValue( 'core', 'backgroundjobs_mode', 'ajax' );
-	}
-
-	/**
-	 * sets the background jobs execution type
-	 * @param string $type execution type
-	 * @return false|null
-	 *
-	 * This method sets the execution type of the background jobs. Possible types
-	 * are "none", "ajax", "webcron", "cron"
-	 */
-	public static function setExecutionType( $type ) {
-		if( !in_array( $type, array('none', 'ajax', 'webcron', 'cron'))) {
-			return false;
-		}
-		return OC_Appconfig::setValue( 'core', 'backgroundjobs_mode', $type );
-	}
-}
diff --git a/lib/public/backgroundjob.php b/lib/public/backgroundjob.php
index 40fdd4b..33ccf65 100644
--- a/lib/public/backgroundjob.php
+++ b/lib/public/backgroundjob.php
@@ -60,7 +60,7 @@ class BackgroundJob {
 	 * @since 5.0.0
 	 */
 	public static function getExecutionType() {
-		return \OC_BackgroundJob::getExecutionType();
+		return \OC::$server->getConfig()->getAppValue('core', 'backgroundjobs_mode', 'ajax');
 	}
 
 	/**
@@ -74,7 +74,10 @@ class BackgroundJob {
 	 * @since 5.0.0
 	 */
 	public static function setExecutionType($type) {
-		return \OC_BackgroundJob::setExecutionType($type);
+		if( !in_array( $type, array('none', 'ajax', 'webcron', 'cron'))) {
+			return false;
+		}
+		\OC::$server->getConfig()->setAppValue('core', 'backgroundjobs_mode', $type);
 	}
 
 	/**

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git



More information about the Pkg-owncloud-commits mailing list