mirror of
https://github.com/friendica/friendica
synced 2025-04-26 16:30:12 +00:00
Updating type-hints and some naming conventions
This commit is contained in:
parent
1c51d7d22f
commit
d78ac57514
9 changed files with 74 additions and 74 deletions
|
@ -22,7 +22,7 @@ class ConfigCache implements IConfigCache, IPConfigCache
|
|||
/**
|
||||
* @param array $config A initial config array
|
||||
*/
|
||||
public function __construct($config = [])
|
||||
public function __construct(array $config = [])
|
||||
{
|
||||
$this->config = [];
|
||||
|
||||
|
@ -43,9 +43,9 @@ class ConfigCache implements IConfigCache, IPConfigCache
|
|||
foreach ($config as $category => $values) {
|
||||
foreach ($values as $key => $value) {
|
||||
if ($overwrite) {
|
||||
self::set($category, $key, $value);
|
||||
$this->set($category, $key, $value);
|
||||
} else {
|
||||
self::setDefault($category, $key, $value);
|
||||
$this->setDefault($category, $key, $value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -83,7 +83,7 @@ class ConfigCache implements IConfigCache, IPConfigCache
|
|||
private function setDefault($cat, $k, $v)
|
||||
{
|
||||
if (!isset($this->config[$cat][$k])) {
|
||||
self::set($cat, $k, $v);
|
||||
$this->set($cat, $k, $v);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ class ConfigCacheLoader
|
|||
* The addon sub-directory
|
||||
* @var string
|
||||
*/
|
||||
const ADDONSDIRECTORY = '/addons/';
|
||||
const ADDONDIRECTORY = '/addon/';
|
||||
|
||||
private $baseDir;
|
||||
private $configDir;
|
||||
|
@ -141,7 +141,7 @@ class ConfigCacheLoader
|
|||
public function loadConfigFile($filename, $addon = false)
|
||||
{
|
||||
if ($addon) {
|
||||
$filepath = $this->baseDir . self::ADDONSDIRECTORY . $filename . self::SUBDIRECTORY . $filename . ".config.php";
|
||||
$filepath = $this->baseDir . self::ADDONDIRECTORY . $filename . self::SUBDIRECTORY . $filename . ".config.php";
|
||||
} else {
|
||||
$filepath = $this->configDir . $filename . ".config.php";
|
||||
}
|
||||
|
|
|
@ -18,14 +18,14 @@ class JITConfigAdapter implements IConfigAdapter
|
|||
/**
|
||||
* @var IConfigCache The config cache of this driver
|
||||
*/
|
||||
private $config;
|
||||
private $configCache;
|
||||
|
||||
/**
|
||||
* @param IConfigCache $config The config cache of this driver
|
||||
* @param IConfigCache $configCache The config cache of this driver
|
||||
*/
|
||||
public function __construct($config)
|
||||
public function __construct(IConfigCache $configCache)
|
||||
{
|
||||
$this->config = $config;
|
||||
$this->configCache = $configCache;
|
||||
}
|
||||
|
||||
public function load($cat = "config")
|
||||
|
@ -40,7 +40,7 @@ class JITConfigAdapter implements IConfigAdapter
|
|||
while ($config = DBA::fetch($configs)) {
|
||||
$k = $config['k'];
|
||||
|
||||
$this->config->set($cat, $k, $config['v']);
|
||||
$this->configCache->set($cat, $k, $config['v']);
|
||||
|
||||
if ($cat !== 'config') {
|
||||
$this->cache[$cat][$k] = $config['v'];
|
||||
|
@ -72,18 +72,18 @@ class JITConfigAdapter implements IConfigAdapter
|
|||
$this->cache[$cat][$k] = $value;
|
||||
$this->in_db[$cat][$k] = true;
|
||||
return $value;
|
||||
} elseif ($this->config->get($cat, $k) !== null) {
|
||||
} elseif ($this->configCache->get($cat, $k) !== null) {
|
||||
// Assign the value (mostly) from config/local.config.php file to the cache
|
||||
$this->cache[$cat][$k] = $this->config->get($cat, $k);
|
||||
$this->cache[$cat][$k] = $this->configCache->get($cat, $k);
|
||||
$this->in_db[$cat][$k] = false;
|
||||
|
||||
return $this->config->get($cat, $k);
|
||||
} elseif ($this->config->get('config', $k) !== null) {
|
||||
return $this->configCache->get($cat, $k);
|
||||
} elseif ($this->configCache->get('config', $k) !== null) {
|
||||
// Assign the value (mostly) from config/local.config.php file to the cache
|
||||
$this->cache[$k] = $this->config->get('config', $k);
|
||||
$this->cache[$k] = $this->configCache->get('config', $k);
|
||||
$this->in_db[$k] = false;
|
||||
|
||||
return $this->config->get('config', $k);
|
||||
return $this->configCache->get('config', $k);
|
||||
}
|
||||
|
||||
$this->cache[$cat][$k] = '!<unset>!';
|
||||
|
@ -112,7 +112,7 @@ class JITConfigAdapter implements IConfigAdapter
|
|||
return true;
|
||||
}
|
||||
|
||||
$this->config->set($cat, $k, $value);
|
||||
$this->configCache->set($cat, $k, $value);
|
||||
|
||||
// Assign the just added value to the cache
|
||||
$this->cache[$cat][$k] = $dbvalue;
|
||||
|
|
|
@ -18,14 +18,14 @@ 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;
|
||||
}
|
||||
|
||||
public function load($uid, $cat)
|
||||
|
@ -35,13 +35,13 @@ 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);
|
||||
}
|
||||
|
@ -50,17 +50,17 @@ class JITPConfigAdapter implements IPConfigAdapter
|
|||
{
|
||||
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 +68,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;
|
||||
|
||||
|
@ -95,7 +95,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);
|
||||
|
@ -111,7 +111,7 @@ class JITPConfigAdapter implements IPConfigAdapter
|
|||
|
||||
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]);
|
||||
|
|
|
@ -19,14 +19,14 @@ class PreloadConfigAdapter implements IConfigAdapter
|
|||
/**
|
||||
* @var IConfigCache The config cache of this driver
|
||||
*/
|
||||
private $config;
|
||||
private $configCache;
|
||||
|
||||
/**
|
||||
* @param IConfigCache $config The config cache of this driver
|
||||
* @param IConfigCache $configCache The config cache of this driver
|
||||
*/
|
||||
public function __construct($config)
|
||||
public function __construct(IConfigCache $configCache)
|
||||
{
|
||||
$this->config = $config;
|
||||
$this->configCache = $configCache;
|
||||
$this->load();
|
||||
}
|
||||
|
||||
|
@ -38,7 +38,7 @@ class PreloadConfigAdapter implements IConfigAdapter
|
|||
|
||||
$configs = DBA::select('config', ['cat', 'v', 'k']);
|
||||
while ($config = DBA::fetch($configs)) {
|
||||
$this->config->set($config['cat'], $config['k'], $config['v']);
|
||||
$this->configCache->set($config['cat'], $config['k'], $config['v']);
|
||||
}
|
||||
DBA::close($configs);
|
||||
|
||||
|
@ -50,11 +50,11 @@ class PreloadConfigAdapter implements IConfigAdapter
|
|||
if ($refresh) {
|
||||
$config = DBA::selectFirst('config', ['v'], ['cat' => $cat, 'k' => $k]);
|
||||
if (DBA::isResult($config)) {
|
||||
$this->config->set($cat, $k, $config['v']);
|
||||
$this->configCache->set($cat, $k, $config['v']);
|
||||
}
|
||||
}
|
||||
|
||||
$return = $this->config->get($cat, $k, $default_value);
|
||||
$return = $this->configCache->get($cat, $k, $default_value);
|
||||
|
||||
return $return;
|
||||
}
|
||||
|
@ -66,11 +66,11 @@ class PreloadConfigAdapter implements IConfigAdapter
|
|||
// The exception are array values.
|
||||
$compare_value = !is_array($value) ? (string)$value : $value;
|
||||
|
||||
if ($this->config->get($cat, $k) === $compare_value) {
|
||||
if ($this->configCache->get($cat, $k) === $compare_value) {
|
||||
return true;
|
||||
}
|
||||
|
||||
$this->config->set($cat, $k, $value);
|
||||
$this->configCache->set($cat, $k, $value);
|
||||
|
||||
// manage array value
|
||||
$dbvalue = is_array($value) ? serialize($value) : $value;
|
||||
|
@ -85,7 +85,7 @@ class PreloadConfigAdapter implements IConfigAdapter
|
|||
|
||||
public function delete($cat, $k)
|
||||
{
|
||||
$this->config->delete($cat, $k);
|
||||
$this->configCache->delete($cat, $k);
|
||||
|
||||
$result = DBA::delete('config', ['cat' => $cat, 'k' => $k]);
|
||||
|
||||
|
|
|
@ -20,15 +20,15 @@ class PreloadPConfigAdapter 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
|
||||
* @param int $uid The UID of the current user
|
||||
*/
|
||||
public function __construct($config, $uid = null)
|
||||
public function __construct(IPConfigCache $configCache, $uid = null)
|
||||
{
|
||||
$this->config = $config;
|
||||
$this->configCache = $configCache;
|
||||
if (isset($uid)) {
|
||||
$this->load($uid, 'config');
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ class PreloadPConfigAdapter implements IPConfigAdapter
|
|||
|
||||
$pconfigs = DBA::select('pconfig', ['cat', 'v', 'k'], ['uid' => $uid]);
|
||||
while ($pconfig = DBA::fetch($pconfigs)) {
|
||||
$this->config->setP($uid, $pconfig['cat'], $pconfig['k'], $pconfig['v']);
|
||||
$this->configCache->setP($uid, $pconfig['cat'], $pconfig['k'], $pconfig['v']);
|
||||
}
|
||||
DBA::close($pconfigs);
|
||||
|
||||
|
@ -62,13 +62,13 @@ class PreloadPConfigAdapter implements IPConfigAdapter
|
|||
if ($refresh) {
|
||||
$config = DBA::selectFirst('pconfig', ['v'], ['uid' => $uid, 'cat' => $cat, 'k' => $k]);
|
||||
if (DBA::isResult($config)) {
|
||||
$this->config->setP($uid, $cat, $k, $config['v']);
|
||||
$this->configCache->setP($uid, $cat, $k, $config['v']);
|
||||
} else {
|
||||
$this->config->deleteP($uid, $cat, $k);
|
||||
$this->configCache->deleteP($uid, $cat, $k);
|
||||
}
|
||||
}
|
||||
|
||||
return $this->config->getP($uid, $cat, $k, $default_value);;
|
||||
return $this->configCache->getP($uid, $cat, $k, $default_value);;
|
||||
}
|
||||
|
||||
public function set($uid, $cat, $k, $value)
|
||||
|
@ -81,11 +81,11 @@ class PreloadPConfigAdapter implements IPConfigAdapter
|
|||
// The exception are array values.
|
||||
$compare_value = !is_array($value) ? (string)$value : $value;
|
||||
|
||||
if ($this->config->getP($uid, $cat, $k) === $compare_value) {
|
||||
if ($this->configCache->getP($uid, $cat, $k) === $compare_value) {
|
||||
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) : $value;
|
||||
|
@ -104,7 +104,7 @@ class PreloadPConfigAdapter implements IPConfigAdapter
|
|||
$this->load($uid, $cat);
|
||||
}
|
||||
|
||||
$this->config->deleteP($uid, $cat, $k);
|
||||
$this->configCache->deleteP($uid, $cat, $k);
|
||||
|
||||
$result = DBA::delete('pconfig', ['uid' => $uid, 'cat' => $cat, 'k' => $k]);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue