]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/Config/JITPConfigAdapter.php
Merge pull request #6581 from nupplaphil/config_refact
[friendica.git] / src / Core / Config / JITPConfigAdapter.php
index 223cc542dcdb01e58d80e311d7d033dbef943994..b1a15601cc4cdaa28efbd7687c7c0aeb65e65097 100644 (file)
@@ -18,16 +18,19 @@ class JITPConfigAdapter implements IPConfigAdapter
         * The config cache of this adapter
         * @var IPConfigCache
         */
-       private $config;
+       private $configCache;
 
        /**
-        * @param IPConfigCache $config The config cache of this adapter
+        * @param IPConfigCache $configCache The config cache of this adapter
         */
-       public function __construct($config)
+       public function __construct(IPConfigCache $configCache)
        {
-               $this->config = $config;
+               $this->configCache = $configCache;
        }
 
+       /**
+        * {@inheritdoc}
+        */
        public function load($uid, $cat)
        {
                $pconfigs = DBA::select('pconfig', ['v', 'k'], ['cat' => $cat, 'uid' => $uid]);
@@ -35,32 +38,35 @@ class JITPConfigAdapter implements IPConfigAdapter
                        while ($pconfig = DBA::fetch($pconfigs)) {
                                $k = $pconfig['k'];
 
-                               $this->config->setP($uid, $cat, $k, $pconfig['v']);
+                               $this->configCache->setP($uid, $cat, $k, $pconfig['v']);
 
                                $this->in_db[$uid][$cat][$k] = true;
                        }
                } else if ($cat != 'config') {
                        // Negative caching
-                       $this->config->setP($uid, $cat, null, "!<unset>!");
+                       $this->configCache->setP($uid, $cat, null, "!<unset>!");
                }
                DBA::close($pconfigs);
        }
 
+       /**
+        * {@inheritdoc}
+        */
        public function get($uid, $cat, $k, $default_value = null, $refresh = false)
        {
                if (!$refresh) {
                        // Looking if the whole family isn't set
-                       if ($this->config->getP($uid, $cat) !== null) {
-                               if ($this->config->getP($uid, $cat) === '!<unset>!') {
+                       if ($this->configCache->getP($uid, $cat) !== null) {
+                               if ($this->configCache->getP($uid, $cat) === '!<unset>!') {
                                        return $default_value;
                                }
                        }
 
-                       if ($this->config->getP($uid, $cat, $k) !== null) {
-                               if ($this->config->getP($uid, $cat, $k) === '!<unset>!') {
+                       if ($this->configCache->getP($uid, $cat, $k) !== null) {
+                               if ($this->configCache->getP($uid, $cat, $k) === '!<unset>!') {
                                        return $default_value;
                                }
-                               return $this->config->getP($uid, $cat, $k);
+                               return $this->configCache->getP($uid, $cat, $k);
                        }
                }
 
@@ -68,13 +74,13 @@ class JITPConfigAdapter implements IPConfigAdapter
                if (DBA::isResult($pconfig)) {
                        $val = (preg_match("|^a:[0-9]+:{.*}$|s", $pconfig['v']) ? unserialize($pconfig['v']) : $pconfig['v']);
 
-                       $this->config->setP($uid, $cat, $k, $val);
+                       $this->configCache->setP($uid, $cat, $k, $val);
 
                        $this->in_db[$uid][$cat][$k] = true;
 
                        return $val;
                } else {
-                       $this->config->setP($uid, $cat, $k, '!<unset>!');
+                       $this->configCache->setP($uid, $cat, $k, '!<unset>!');
 
                        $this->in_db[$uid][$cat][$k] = false;
 
@@ -82,6 +88,9 @@ class JITPConfigAdapter implements IPConfigAdapter
                }
        }
 
+       /**
+        * {@inheritdoc}
+        */
        public function set($uid, $cat, $k, $value)
        {
                // We store our setting values in a string variable.
@@ -95,7 +104,7 @@ class JITPConfigAdapter implements IPConfigAdapter
                        return true;
                }
 
-               $this->config->setP($uid, $cat, $k, $value);
+               $this->configCache->setP($uid, $cat, $k, $value);
 
                // manage array value
                $dbvalue = (is_array($value) ? serialize($value) : $dbvalue);
@@ -109,9 +118,12 @@ class JITPConfigAdapter implements IPConfigAdapter
                return $result;
        }
 
+       /**
+        * {@inheritdoc}
+        */
        public function delete($uid, $cat, $k)
        {
-               $this->config->deleteP($uid, $cat, $k);
+               $this->configCache->deleteP($uid, $cat, $k);
 
                if (!empty($this->in_db[$uid][$cat][$k])) {
                        unset($this->in_db[$uid][$cat][$k]);