diff options
author | Mario <mario@mariovavti.com> | 2023-12-17 11:16:58 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-12-17 11:16:58 +0000 |
commit | d372daff6029fe2453bc28330139eb873827b5ef (patch) | |
tree | 85be95b7e3faa9fce06ed9e91364f30eb7c804e5 | |
parent | f742e6e3943f350c5a9ed8aad2e468e846971224 (diff) | |
download | volse-hubzilla-d372daff6029fe2453bc28330139eb873827b5ef.tar.gz volse-hubzilla-d372daff6029fe2453bc28330139eb873827b5ef.tar.bz2 volse-hubzilla-d372daff6029fe2453bc28330139eb873827b5ef.zip |
Revert "check return from Config::Load() and retry on failure plus cleanup"
This reverts commit 69266cd6c65d228320dede32a343a9d3f3ea63df
-rw-r--r-- | Zotlabs/Lib/Config.php | 87 |
1 files changed, 30 insertions, 57 deletions
diff --git a/Zotlabs/Lib/Config.php b/Zotlabs/Lib/Config.php index 40d5cc246..c00b8efb6 100644 --- a/Zotlabs/Lib/Config.php +++ b/Zotlabs/Lib/Config.php @@ -2,7 +2,6 @@ namespace Zotlabs\Lib; -use App; class Config { @@ -15,44 +14,21 @@ class Config { * @param string $family * The category of the configuration value */ - public static function Load($family, $recursionCounter = 0) { - if (! array_key_exists($family, App::$config)) { - App::$config[$family] = []; - } - - // We typically continue when presented with minor DB issues, - // but loading the site configuration is more important. - - // Check for query returning false and give it approx 30 seconds - // to recover if there's a problem. This is intended to fix a - // rare issue on Galera where temporary sync issues were causing - // the site encryption keys to be regenerated, which was causing - // communication issues for members. - - // This code probably belongs at the database layer, but we don't - // necessarily want to shut the site down for problematic queries - // caused by bad data. That could be used in a denial of service - // attack. Those do need to be (and they are) logged. + static public function Load($family) { + if(! array_key_exists($family, \App::$config)) + \App::$config[$family] = array(); - if (! array_key_exists('config_loaded', App::$config[$family])) { + if(! array_key_exists('config_loaded', \App::$config[$family])) { $r = q("SELECT * FROM config WHERE cat = '%s'", dbesc($family)); - if ($r === false) { - sleep(3); - $recursionCounter ++; - if ($recursionCounter > 10) { - system_unavailable(); + if($r !== false) { + if($r) { + foreach($r as $rr) { + $k = $rr['k']; + \App::$config[$family][$k] = $rr['v']; + } } - self::Load($family, $recursionCounter); + \App::$config[$family]['config_loaded'] = true; } - else { - foreach ($r as $rr) { - $k = $rr['k']; - App::$config[$family][$k] = $rr['v']; - } - App::$config[$family]['config_loaded'] = true; - } - - } } @@ -70,19 +46,19 @@ class Config { * @return mixed * Return the set value, or false if the database update failed */ - public static function Set($family, $key, $value) { + static public function Set($family, $key, $value) { // manage array value - $dbvalue = ((is_array($value)) ? serialise($value) : $value); + $dbvalue = ((is_array($value)) ? serialize($value) : $value); $dbvalue = ((is_bool($dbvalue)) ? intval($dbvalue) : $dbvalue); - if (self::Get($family, $key) === false || (! self::get_from_storage($family, $key))) { + if(self::Get($family, $key) === false || (! self::get_from_storage($family, $key))) { $ret = q("INSERT INTO config ( cat, k, v ) VALUES ( '%s', '%s', '%s' ) ", dbesc($family), dbesc($key), dbesc($dbvalue) ); - if ($ret) { - App::$config[$family][$key] = $value; + if($ret) { + \App::$config[$family][$key] = $value; $ret = $value; } return $ret; @@ -94,8 +70,8 @@ class Config { dbesc($key) ); - if ($ret) { - App::$config[$family][$key] = $value; + if($ret) { + \App::$config[$family][$key] = $value; $ret = $value; } @@ -120,21 +96,18 @@ class Config { * @param string $default (optional) default false * @return mixed Return value or false on error or if not set */ - public static function Get($family, $key, $default = false) { - if ((! array_key_exists($family, App::$config)) || (! array_key_exists('config_loaded', App::$config[$family]))) { + static public function Get($family, $key, $default = false) { + if((! array_key_exists($family, \App::$config)) || (! array_key_exists('config_loaded', \App::$config[$family]))) self::Load($family); - } - if (array_key_exists('config_loaded', App::$config[$family])) { - if (! array_key_exists($key, App::$config[$family])) { + if(array_key_exists('config_loaded', \App::$config[$family])) { + if(! array_key_exists($key, \App::$config[$family])) { return $default; } - - return ((! is_array(App::$config[$family][$key])) && (preg_match('|^a:[0-9]+:{.*}$|s', App::$config[$family][$key])) - ? unserialize(App::$config[$family][$key]) - : App::$config[$family][$key] + return ((! is_array(\App::$config[$family][$key])) && (preg_match('|^a:[0-9]+:{.*}$|s', \App::$config[$family][$key])) + ? unserialize(\App::$config[$family][$key]) + : \App::$config[$family][$key] ); - } return $default; @@ -152,13 +125,12 @@ class Config { * The configuration key to delete * @return mixed */ - public static function Delete($family, $key) { + static public function Delete($family, $key) { $ret = false; - if (array_key_exists($family, App::$config) && array_key_exists($key, App::$config[$family])) { - unset(App::$config[$family][$key]); - } + if(array_key_exists($family, \App::$config) && array_key_exists($key, \App::$config[$family])) + unset(\App::$config[$family][$key]); $ret = q("DELETE FROM config WHERE cat = '%s' AND k = '%s'", dbesc($family), @@ -181,7 +153,7 @@ class Config { * The configuration key to query * @return mixed */ - private static function get_from_storage($family, $key) { + static private function get_from_storage($family,$key) { $ret = q("SELECT * FROM config WHERE cat = '%s' AND k = '%s' LIMIT 1", dbesc($family), dbesc($key) @@ -189,4 +161,5 @@ class Config { return $ret; } + } |