]> source.dussan.org Git - nextcloud-server.git/commitdiff
Get rid of legacy OC_Config
authorRoeland Jago Douma <rullzer@owncloud.com>
Fri, 18 Dec 2015 09:33:30 +0000 (10:33 +0100)
committerRoeland Jago Douma <rullzer@owncloud.com>
Fri, 18 Dec 2015 10:53:41 +0000 (11:53 +0100)
We were still using the lecagy class OC_Config all over the place. Which
was a wrapper around the new class OC\Config

lib/base.php
lib/private/app.php
lib/private/helper.php
lib/private/legacy/config.php [deleted file]
lib/private/systemconfig.php
lib/private/user.php
lib/private/util.php

index 8f1432d6fb929a060bfc88580b9318ca1eac36e1..887499b58a52d7af2b7b5525390682774543ef66 100644 (file)
@@ -112,6 +112,11 @@ class OC {
         */
        public static $server = null;
 
+       /**
+        * @var \OC\Config
+        */
+       public static $config = null;
+
        /**
         * @throws \RuntimeException when the 3rdparty directory is missing or
         * the app path list is empty or contains an invalid path
@@ -124,7 +129,7 @@ class OC {
                } else {
                        self::$configDir = OC::$SERVERROOT . '/config/';
                }
-               OC_Config::$object = new \OC\Config(self::$configDir);
+               self::$config = new \OC\Config(self::$configDir);
 
                OC::$SUBURI = str_replace("\\", "/", substr(realpath($_SERVER["SCRIPT_FILENAME"]), strlen(OC::$SERVERROOT)));
                /**
@@ -152,7 +157,7 @@ class OC {
 
 
                if (OC::$CLI) {
-                       OC::$WEBROOT = OC_Config::getValue('overwritewebroot', '');
+                       OC::$WEBROOT = \OC::$config->getValue('overwritewebroot', '');
                } else {
                        if (substr($scriptName, 0 - strlen(OC::$SUBURI)) === OC::$SUBURI) {
                                OC::$WEBROOT = substr($scriptName, 0, 0 - strlen(OC::$SUBURI));
@@ -165,7 +170,7 @@ class OC {
                                // This most likely means that we are calling from CLI.
                                // However some cron jobs still need to generate
                                // a web URL, so we use overwritewebroot as a fallback.
-                               OC::$WEBROOT = OC_Config::getValue('overwritewebroot', '');
+                               OC::$WEBROOT = \OC::$config->getValue('overwritewebroot', '');
                        }
 
                        // Resolve /owncloud to /owncloud/ to ensure to always have a trailing
@@ -178,8 +183,8 @@ class OC {
                }
 
                // search the 3rdparty folder
-               OC::$THIRDPARTYROOT = OC_Config::getValue('3rdpartyroot', null);
-               OC::$THIRDPARTYWEBROOT = OC_Config::getValue('3rdpartyurl', null);
+               OC::$THIRDPARTYROOT = \OC::$config->getValue('3rdpartyroot', null);
+               OC::$THIRDPARTYWEBROOT = \OC::$config->getValue('3rdpartyurl', null);
 
                if (empty(OC::$THIRDPARTYROOT) && empty(OC::$THIRDPARTYWEBROOT)) {
                        if (file_exists(OC::$SERVERROOT . '/3rdparty')) {
@@ -197,7 +202,7 @@ class OC {
                }
 
                // search the apps folder
-               $config_paths = OC_Config::getValue('apps_paths', array());
+               $config_paths = \OC::$config->getValue('apps_paths', array());
                if (!empty($config_paths)) {
                        foreach ($config_paths as $paths) {
                                if (isset($paths['url']) && isset($paths['path'])) {
index e8cc921922441bbb0f3f38cfc6c19a1a9cd43c60..b0d2273a0cd898fad487d246945ca29c742882a3 100644 (file)
@@ -96,7 +96,7 @@ class OC_App {
         * if $types is set, only apps of those types will be loaded
         */
        public static function loadApps($types = null) {
-               if (OC_Config::getValue('maintenance', false)) {
+               if (\OC::$config->getValue('maintenance', false)) {
                        return false;
                }
                // Load the enabled apps here
@@ -239,7 +239,7 @@ class OC_App {
         * @return string[]
         */
        public static function getEnabledApps($forceRefresh = false, $all = false) {
-               if (!OC_Config::getValue('installed', false)) {
+               if (!\OC::$config->getValue('installed', false)) {
                        return array();
                }
                // in incognito mode or when logged out, $user will be false,
@@ -374,7 +374,7 @@ class OC_App {
                $settings = array();
                // by default, settings only contain the help menu
                if (OC_Util::getEditionString() === '' &&
-                       OC_Config::getValue('knowledgebaseenabled', true) == true
+                       \OC::$config->getValue('knowledgebaseenabled', true) == true
                ) {
                        $settings = array(
                                array(
@@ -455,7 +455,7 @@ class OC_App {
         * @return string|false
         */
        public static function getInstallPath() {
-               if (OC_Config::getValue('appstoreenabled', true) == false) {
+               if (\OC::$config->getValue('appstoreenabled', true) == false) {
                        return false;
                }
 
index 72282362fe6767c0ef7add334946476a7660d8fa..707f6cdccad5e8791d8cdcc5f740f726fb748e0b 100644 (file)
@@ -746,7 +746,7 @@ class OC_Helper {
         */
        public static function getStorageInfo($path, $rootInfo = null) {
                // return storage info without adding mount points
-               $includeExtStorage = \OC_Config::getValue('quota_include_external_storage', false);
+               $includeExtStorage = \OC::$config->getValue('quota_include_external_storage', false);
 
                if (!$rootInfo) {
                        $rootInfo = \OC\Files\Filesystem::getFileInfo($path, false);
diff --git a/lib/private/legacy/config.php b/lib/private/legacy/config.php
deleted file mode 100644 (file)
index 1835d4a..0000000
+++ /dev/null
@@ -1,94 +0,0 @@
-<?php
-/**
- * @author Bart Visscher <bartv@thisnet.nl>
- * @author Joas Schilling <nickvergessen@owncloud.com>
- * @author Jörn Friedrich Dreyer <jfd@butonic.de>
- * @author Lukas Reschke <lukas@owncloud.com>
- * @author Michael Gapczynski <GapczynskiM@gmail.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin McCorkell <rmccorkell@karoshi.org.uk>
- *
- * @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 is responsible for reading and writing config.php, the very basic
- * configuration file of ownCloud.
- *
- * @deprecated use \OC::$server->getConfig() to get an \OCP\Config instance
- */
-class OC_Config {
-
-       /** @var \OC\Config */
-       public static $object;
-
-       /**
-        * Lists all available config keys
-        * @return array an array of key names
-        *
-        * This function returns all keys saved in config.php. Please note that it
-        * does not return the values.
-        */
-       public static function getKeys() {
-               return self::$object->getKeys();
-       }
-
-       /**
-        * Gets a value from config.php
-        * @param string $key key
-        * @param mixed $default = null default value
-        * @return mixed the value or $default
-        *
-        * This function gets the value from config.php. If it does not exist,
-        * $default will be returned.
-        */
-       public static function getValue($key, $default = null) {
-               return self::$object->getValue($key, $default);
-       }
-
-       /**
-        * Sets a value
-        * @param string $key key
-        * @param mixed $value value
-        *
-        * This function sets the value and writes the config.php.
-        *
-        */
-       public static function setValue($key, $value) {
-               self::$object->setValue($key, $value);
-       }
-
-       /**
-        * Sets and deletes values and writes the config.php
-        *
-        * @param array $configs Associative array with `key => value` pairs
-        *                       If value is null, the config key will be deleted
-        */
-       public static function setValues(array $configs) {
-               self::$object->setValues($configs);
-       }
-
-       /**
-        * Removes a key from the config
-        * @param string $key key
-        *
-        * This function removes a key from the config.php.
-        */
-       public static function deleteKey($key) {
-               self::$object->deleteKey($key);
-       }
-}
index 94b815aebd7901216b90a909fbe3282e03429d1e..d2ceeb8272d996fb9375a31a814c145ae453719c 100644 (file)
@@ -49,7 +49,7 @@ class SystemConfig {
         * @return array an array of key names
         */
        public function getKeys() {
-               return \OC_Config::getKeys();
+               return \OC::$config->getKeys();
        }
 
        /**
@@ -59,7 +59,7 @@ class SystemConfig {
         * @param mixed $value the value that should be stored
         */
        public function setValue($key, $value) {
-               \OC_Config::setValue($key, $value);
+               \OC::$config->setValue($key, $value);
        }
 
        /**
@@ -69,7 +69,7 @@ class SystemConfig {
         *                       If value is null, the config key will be deleted
         */
        public function setValues(array $configs) {
-               \OC_Config::setValues($configs);
+               \OC::$config->setValues($configs);
        }
 
        /**
@@ -80,7 +80,7 @@ class SystemConfig {
         * @return mixed the value or $default
         */
        public function getValue($key, $default = '') {
-               return \OC_Config::getValue($key, $default);
+               return \OC::$config->getValue($key, $default);
        }
 
        /**
@@ -106,7 +106,7 @@ class SystemConfig {
         * @param string $key the key of the value, under which it was saved
         */
        public function deleteValue($key) {
-               \OC_Config::deleteKey($key);
+               \OC::$config->deleteKey($key);
        }
 
        /**
index f806aa07251fdd78ef6e0cac89a6a7df7e81bd6d..4e395a3f7a36d2f880d55542a1ba59ea39ba9b5b 100644 (file)
@@ -130,7 +130,7 @@ class OC_User {
         */
        public static function setupBackends() {
                OC_App::loadApps(array('prelogin'));
-               $backends = OC_Config::getValue('user_backends', array());
+               $backends = \OC::$config->getValue('user_backends', array());
                foreach ($backends as $i => $config) {
                        $class = $config['class'];
                        $arguments = $config['arguments'];
@@ -498,7 +498,7 @@ class OC_User {
                if ($user) {
                        return $user->getHome();
                } else {
-                       return OC_Config::getValue('datadirectory', OC::$SERVERROOT . '/data') . '/' . $uid;
+                       return \OC::$config->getValue('datadirectory', OC::$SERVERROOT . '/data') . '/' . $uid;
                }
        }
 
index c63befb3f32d090a7b0a5bf83c44c2e31df9ab77..193a446d60a4abce210f9e9c41940d841d1d4547 100644 (file)
@@ -72,7 +72,7 @@ class OC_Util {
 
        private static function initLocalStorageRootFS() {
                // mount local file backend as root
-               $configDataDirectory = OC_Config::getValue("datadirectory", OC::$SERVERROOT . "/data");
+               $configDataDirectory = \OC::$config->getValue("datadirectory", OC::$SERVERROOT . "/data");
                //first set up the local "root" storage
                \OC\Files\Filesystem::initMountManager();
                if (!self::$rootMounted) {
@@ -184,7 +184,7 @@ class OC_Util {
                OC_Hook::emit('OC_Filesystem', 'preSetup', array('user' => $user));
 
                //check if we are using an object storage
-               $objectStore = OC_Config::getValue('objectstore');
+               $objectStore = \OC::$config->getValue('objectstore');
                if (isset($objectStore)) {
                        self::initObjectStoreRootFS($objectStore);
                } else {
@@ -848,7 +848,7 @@ class OC_Util {
        public static function checkDatabaseVersion() {
                $l = \OC::$server->getL10N('lib');
                $errors = array();
-               $dbType = \OC_Config::getValue('dbtype', 'sqlite');
+               $dbType = \OC::$config->getValue('dbtype', 'sqlite');
                if ($dbType === 'pgsql') {
                        // check PostgreSQL version
                        try {
@@ -1108,11 +1108,11 @@ class OC_Util {
         * @return string
         */
        public static function getInstanceId() {
-               $id = OC_Config::getValue('instanceid', null);
+               $id = \OC::$config->getValue('instanceid', null);
                if (is_null($id)) {
                        // We need to guarantee at least one letter in instanceid so it can be used as the session_name
                        $id = 'oc' . \OC::$server->getSecureRandom()->getLowStrengthGenerator()->generate(10, \OCP\Security\ISecureRandom::CHAR_LOWER.\OCP\Security\ISecureRandom::CHAR_DIGITS);
-                       OC_Config::$object->setValue('instanceid', $id);
+                       \OC::$config->setValue('instanceid', $id);
                }
                return $id;
        }
@@ -1364,7 +1364,7 @@ class OC_Util {
         * @return string the theme
         */
        public static function getTheme() {
-               $theme = OC_Config::getValue("theme", '');
+               $theme = \OC::$config->getValue("theme", '');
 
                if ($theme === '') {
                        if (is_dir(OC::$SERVERROOT . '/themes/default')) {