]> git.mxchange.org Git - friendica.git/blob - src/Core/Config.php
Class file relocations
[friendica.git] / src / Core / Config.php
1 <?php
2 namespace Friendica\Core;
3
4 use Friendica\Database\DBM;
5 use dba;
6
7 /**
8  * @file include/Core/Config.php
9  *
10  *  @brief Contains the class with methods for system configuration
11  */
12
13
14 /**
15  * @brief Arbitrary sytem configuration storage
16  * Note:
17  * Please do not store booleans - convert to 0/1 integer values
18  * The Config::get() functions return boolean false for keys that are unset,
19  * and this could lead to subtle bugs.
20  *
21  * There are a few places in the code (such as the admin panel) where boolean
22  * configurations need to be fixed as of 10/08/2011.
23  */
24 class Config {
25
26         private static $cache;
27         private static $in_db;
28
29         /**
30          * @brief Loads all configuration values of family into a cached storage.
31          *
32          * All configuration values of the system are stored in global cache
33          * which is available under the global variable $a->config
34          *
35          * @param string $family
36          *  The category of the configuration value
37          * @return void
38          */
39         public static function load($family = "config") {
40
41                 // We don't preload "system" anymore.
42                 // This reduces the number of database reads a lot.
43                 if ($family === 'system') {
44                         return;
45                 }
46
47                 $a = get_app();
48
49                 $r = dba::select('config', array('v', 'k'), array('cat' => $family));
50                 while ($rr = dba::fetch($r)) {
51                         $k = $rr['k'];
52                         if ($family === 'config') {
53                                 $a->config[$k] = $rr['v'];
54                         } else {
55                                 $a->config[$family][$k] = $rr['v'];
56                                 self::$cache[$family][$k] = $rr['v'];
57                                 self::$in_db[$family][$k] = true;
58                         }
59                 }
60                 dba::close($r);
61         }
62
63         /**
64          * @brief Get a particular user's config variable given the category name
65          * ($family) and a key.
66          *
67          * Get a particular config value from the given category ($family)
68          * and the $key from a cached storage in $a->config[$uid].
69          * $instore is only used by the set_config function
70          * to determine if the key already exists in the DB
71          * If a key is found in the DB but doesn't exist in
72          * local config cache, pull it into the cache so we don't have
73          * to hit the DB again for this item.
74          *
75          * @param string $family
76          *  The category of the configuration value
77          * @param string $key
78          *  The configuration key to query
79          * @param mixed $default_value optional
80          *  The value to return if key is not set (default: null)
81          * @param boolean $refresh optional
82          *  If true the config is loaded from the db and not from the cache (default: false)
83          * @return mixed Stored value or null if it does not exist
84          */
85         public static function get($family, $key, $default_value = null, $refresh = false) {
86
87                 $a = get_app();
88
89                 if (!$refresh) {
90
91                         // Do we have the cached value? Then return it
92                         if (isset(self::$cache[$family][$key])) {
93                                 if (self::$cache[$family][$key] === '!<unset>!') {
94                                         return $default_value;
95                                 } else {
96                                         return self::$cache[$family][$key];
97                                 }
98                         }
99                 }
100
101                 $ret = dba::select('config', array('v'), array('cat' => $family, 'k' => $key), array('limit' => 1));
102                 if (DBM::is_result($ret)) {
103                         // manage array value
104                         $val = (preg_match("|^a:[0-9]+:{.*}$|s", $ret['v']) ? unserialize($ret['v']) : $ret['v']);
105
106                         // Assign the value from the database to the cache
107                         self::$cache[$family][$key] = $val;
108                         self::$in_db[$family][$key] = true;
109                         return $val;
110                 } elseif (isset($a->config[$family][$key])) {
111
112                         // Assign the value (mostly) from the .htconfig.php to the cache
113                         self::$cache[$family][$key] = $a->config[$family][$key];
114                         self::$in_db[$family][$key] = false;
115
116                         return $a->config[$family][$key];
117                 }
118
119                 self::$cache[$family][$key] = '!<unset>!';
120                 self::$in_db[$family][$key] = false;
121
122                 return $default_value;
123         }
124
125         /**
126          * @brief Sets a configuration value for system config
127          *
128          * Stores a config value ($value) in the category ($family) under the key ($key)
129          * for the user_id $uid.
130          *
131          * Note: Please do not store booleans - convert to 0/1 integer values!
132          *
133          * @param string $family
134          *  The category of the configuration value
135          * @param string $key
136          *  The configuration key to set
137          * @param string $value
138          *  The value to store
139          * @return mixed Stored $value or false if the database update failed
140          */
141         public static function set($family, $key, $value) {
142                 $a = get_app();
143
144                 // We store our setting values in a string variable.
145                 // So we have to do the conversion here so that the compare below works.
146                 // The exception are array values.
147                 $dbvalue = (!is_array($value) ? (string)$value : $value);
148
149                 $stored = self::get($family, $key, null, true);
150
151                 if (($stored === $dbvalue) && self::$in_db[$family][$key]) {
152                         return true;
153                 }
154
155                 if ($family === 'config') {
156                         $a->config[$key] = $dbvalue;
157                 } elseif ($family != 'system') {
158                         $a->config[$family][$key] = $dbvalue;
159                 }
160
161                 // Assign the just added value to the cache
162                 self::$cache[$family][$key] = $dbvalue;
163
164                 // manage array value
165                 $dbvalue = (is_array($value) ? serialize($value) : $dbvalue);
166
167                 dba::update('config', array('v' => $dbvalue), array('cat' => $family, 'k' => $key), true);
168
169                 if ($ret) {
170                         self::$in_db[$family][$key] = true;
171                         return $value;
172                 }
173                 return $ret;
174         }
175
176         /**
177          * @brief Deletes the given key from the system configuration.
178          *
179          * Removes the configured value from the stored cache in $a->config
180          * and removes it from the database.
181          *
182          * @param string $family
183          *  The category of the configuration value
184          * @param string $key
185          *  The configuration key to delete
186          * @return mixed
187          */
188         public static function delete($family, $key) {
189
190                 if (isset(self::$cache[$family][$key])) {
191                         unset(self::$cache[$family][$key]);
192                         unset(self::$in_db[$family][$key]);
193                 }
194
195                 $ret = dba::delete('config', array('cat' => $family, 'k' => $key));
196
197                 return $ret;
198         }
199 }