]> source.dussan.org Git - nextcloud-server.git/commitdiff
Replace static usage of OC_Config and OC_Preferences with the injected \OC\ConfigAll
authorRobin Appelman <icewind@owncloud.com>
Mon, 16 Dec 2013 15:02:03 +0000 (16:02 +0100)
committerRobin Appelman <icewind@owncloud.com>
Wed, 18 Dec 2013 12:03:19 +0000 (13:03 +0100)
lib/private/user/user.php

index b0b4657413c34f98fa54c6f800ecc2eea903a679..ef5364cbf7b50d3c0fdbd8332194a134ae5d8e21 100644 (file)
@@ -62,9 +62,13 @@ class User {
                }
                $this->backend = $backend;
                $this->emitter = $emitter;
-               $enabled = \OC_Preferences::getValue($uid, 'core', 'enabled', 'true'); //TODO: DI for OC_Preferences
-               $this->enabled = ($enabled === 'true');
                $this->config = $config;
+               if ($this->config) {
+                       $enabled = $this->config->getUserValue($uid, 'core', 'enabled', 'true');
+                       $this->enabled = ($enabled === 'true');
+               } else {
+                       $this->enabled = true;
+               }
        }
 
        /**
@@ -148,8 +152,10 @@ class User {
                if (!$this->home) {
                        if ($this->backend->implementsActions(\OC_USER_BACKEND_GET_HOME) and $home = $this->backend->getHome($this->uid)) {
                                $this->home = $home;
+                       } elseif ($this->config) {
+                               $this->home = $this->config->getSystemValue('datadirectory') . '/' . $this->uid;
                        } else {
-                               $this->home = \OC_Config::getValue("datadirectory", \OC::$SERVERROOT . "/data") . '/' . $this->uid; //TODO switch to Config object once implemented
+                               $this->home = \OC::$SERVERROOT . '/data/' . $this->uid;
                        }
                }
                return $this->home;
@@ -205,7 +211,9 @@ class User {
         */
        public function setEnabled($enabled) {
                $this->enabled = $enabled;
-               $enabled = ($enabled) ? 'true' : 'false';
-               \OC_Preferences::setValue($this->uid, 'core', 'enabled', $enabled);
+               if ($this->config) {
+                       $enabled = ($enabled) ? 'true' : 'false';
+                       $this->config->setUserValue($this->uid, 'core', 'enabled', $enabled);
+               }
        }
 }