2011-08-02 01:51:01 +02:00
|
|
|
<?php
|
|
|
|
|
2011-08-10 10:19:27 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* Arbitrary configuration storage
|
|
|
|
* Note:
|
|
|
|
* Please do not store booleans - convert to 0/1 integer values
|
|
|
|
* The get_?config() functions return boolean false for keys that are unset,
|
2012-05-20 00:11:32 +02:00
|
|
|
* and this could lead to subtle bugs.
|
2011-08-10 10:19:27 +02:00
|
|
|
*
|
|
|
|
* There are a few places in the code (such as the admin panel) where boolean
|
|
|
|
* configurations need to be fixed as of 10/08/2011.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2011-08-02 01:51:01 +02:00
|
|
|
// retrieve a "family" of config variables from database to cached storage
|
|
|
|
|
|
|
|
if(! function_exists('load_config')) {
|
|
|
|
function load_config($family) {
|
|
|
|
global $a;
|
2013-08-09 18:28:50 +02:00
|
|
|
|
|
|
|
// To-Do: How to integrate APC here?
|
|
|
|
|
2012-06-16 15:07:23 +02:00
|
|
|
$r = q("SELECT * FROM `config` WHERE `cat` = '%s'", dbesc($family));
|
2011-08-02 01:51:01 +02:00
|
|
|
if(count($r)) {
|
|
|
|
foreach($r as $rr) {
|
|
|
|
$k = $rr['k'];
|
2012-06-17 02:29:42 +02:00
|
|
|
if ($family === 'config') {
|
2011-08-02 01:51:01 +02:00
|
|
|
$a->config[$k] = $rr['v'];
|
|
|
|
} else {
|
|
|
|
$a->config[$family][$k] = $rr['v'];
|
|
|
|
}
|
|
|
|
}
|
2012-06-17 02:29:42 +02:00
|
|
|
} else if ($family != 'config') {
|
2012-05-26 15:41:23 +02:00
|
|
|
// Negative caching
|
|
|
|
$a->config[$family] = "!<unset>!";
|
2011-08-02 01:51:01 +02:00
|
|
|
}
|
|
|
|
}}
|
|
|
|
|
|
|
|
// get a particular config variable given the family name
|
|
|
|
// and key. Returns false if not set.
|
|
|
|
// $instore is only used by the set_config function
|
|
|
|
// to determine if the key already exists in the DB
|
|
|
|
// If a key is found in the DB but doesn't exist in
|
|
|
|
// local config cache, pull it into the cache so we don't have
|
|
|
|
// to hit the DB again for this item.
|
|
|
|
|
|
|
|
if(! function_exists('get_config')) {
|
|
|
|
function get_config($family, $key, $instore = false) {
|
|
|
|
|
|
|
|
global $a;
|
|
|
|
|
|
|
|
if(! $instore) {
|
2012-05-26 15:41:23 +02:00
|
|
|
// Looking if the whole family isn't set
|
|
|
|
if(isset($a->config[$family])) {
|
|
|
|
if($a->config[$family] === '!<unset>!') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-02 01:51:01 +02:00
|
|
|
if(isset($a->config[$family][$key])) {
|
|
|
|
if($a->config[$family][$key] === '!<unset>!') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return $a->config[$family][$key];
|
|
|
|
}
|
|
|
|
}
|
2013-08-06 00:20:16 +02:00
|
|
|
|
2014-03-09 09:24:41 +01:00
|
|
|
// If APC is enabled then fetch the data from there, else try XCache
|
2013-08-06 00:20:16 +02:00
|
|
|
if (function_exists("apc_fetch") AND function_exists("apc_exists"))
|
|
|
|
if (apc_exists($family."|".$key)) {
|
|
|
|
$val = apc_fetch($family."|".$key);
|
|
|
|
$a->config[$family][$key] = $val;
|
2013-08-09 18:28:50 +02:00
|
|
|
|
2014-03-09 09:24:41 +01:00
|
|
|
if ($val === '!<unset>!')
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
return $val;
|
|
|
|
}
|
|
|
|
elseif (function_exists("xcache_fetch") AND function_exists("xcache_isset"))
|
|
|
|
if (xcache_isset($family."|".$key)) {
|
|
|
|
$val = xcache_fetch($family."|".$key);
|
|
|
|
$a->config[$family][$key] = $val;
|
|
|
|
|
2013-08-09 18:28:50 +02:00
|
|
|
if ($val === '!<unset>!')
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
return $val;
|
2013-08-11 21:19:26 +02:00
|
|
|
}
|
2013-08-06 00:20:16 +02:00
|
|
|
|
2011-08-02 01:51:01 +02:00
|
|
|
$ret = q("SELECT `v` FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
|
|
|
|
dbesc($family),
|
|
|
|
dbesc($key)
|
|
|
|
);
|
|
|
|
if(count($ret)) {
|
|
|
|
// manage array value
|
2012-08-29 10:19:15 +02:00
|
|
|
$val = (preg_match("|^a:[0-9]+:{.*}$|s", $ret[0]['v'])?unserialize( $ret[0]['v']):$ret[0]['v']);
|
2011-08-02 01:51:01 +02:00
|
|
|
$a->config[$family][$key] = $val;
|
2013-08-09 18:28:50 +02:00
|
|
|
|
2014-03-09 09:24:41 +01:00
|
|
|
// If APC is enabled then store the data there, else try XCache
|
2013-08-09 18:28:50 +02:00
|
|
|
if (function_exists("apc_store"))
|
|
|
|
apc_store($family."|".$key, $val, 600);
|
2014-03-09 09:24:41 +01:00
|
|
|
elseif (function_exists("xcache_set"))
|
|
|
|
xcache_set($family."|".$key, $val, 600);
|
2013-08-09 18:28:50 +02:00
|
|
|
|
2011-08-02 01:51:01 +02:00
|
|
|
return $val;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$a->config[$family][$key] = '!<unset>!';
|
2013-08-09 18:28:50 +02:00
|
|
|
|
2014-03-09 09:24:41 +01:00
|
|
|
// If APC is enabled then store the data there, else try XCache
|
2013-08-09 18:28:50 +02:00
|
|
|
if (function_exists("apc_store"))
|
|
|
|
apc_store($family."|".$key, '!<unset>!', 600);
|
2014-03-09 09:24:41 +01:00
|
|
|
elseif (function_exists("xcache_set"))
|
|
|
|
xcache_set($family."|".$key, '!<unset>!', 600);
|
2011-08-02 01:51:01 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}}
|
|
|
|
|
|
|
|
// Store a config value ($value) in the category ($family)
|
|
|
|
// under the key ($key)
|
|
|
|
// Return the value, or false if the database update failed
|
|
|
|
|
|
|
|
if(! function_exists('set_config')) {
|
|
|
|
function set_config($family,$key,$value) {
|
|
|
|
global $a;
|
2013-01-19 07:38:49 +01:00
|
|
|
|
|
|
|
// If $a->config[$family] has been previously set to '!<unset>!', then
|
|
|
|
// $a->config[$family][$key] will evaluate to $a->config[$family][0], and
|
|
|
|
// $a->config[$family][$key] = $value will be equivalent to
|
|
|
|
// $a->config[$family][0] = $value[0] (this causes infuriating bugs),
|
|
|
|
// so unset the family before assigning a value to a family's key
|
|
|
|
if($a->config[$family] === '!<unset>!')
|
|
|
|
unset($a->config[$family]);
|
|
|
|
|
2011-08-02 01:51:01 +02:00
|
|
|
// manage array value
|
|
|
|
$dbvalue = (is_array($value)?serialize($value):$value);
|
2012-05-22 11:56:49 +02:00
|
|
|
$dbvalue = (is_bool($dbvalue) ? intval($dbvalue) : $dbvalue);
|
2011-08-02 01:51:01 +02:00
|
|
|
if(get_config($family,$key,true) === false) {
|
|
|
|
$a->config[$family][$key] = $value;
|
|
|
|
$ret = q("INSERT INTO `config` ( `cat`, `k`, `v` ) VALUES ( '%s', '%s', '%s' ) ",
|
|
|
|
dbesc($family),
|
|
|
|
dbesc($key),
|
|
|
|
dbesc($dbvalue)
|
|
|
|
);
|
2012-05-26 15:41:23 +02:00
|
|
|
if($ret)
|
2011-08-02 01:51:01 +02:00
|
|
|
return $value;
|
|
|
|
return $ret;
|
|
|
|
}
|
2012-05-26 15:41:23 +02:00
|
|
|
|
2014-03-09 09:24:41 +01:00
|
|
|
$ret = q("UPDATE `config` SET `v` = '%s' WHERE `cat` = '%s' AND `k` = '%s'",
|
2011-08-02 01:51:01 +02:00
|
|
|
dbesc($dbvalue),
|
|
|
|
dbesc($family),
|
|
|
|
dbesc($key)
|
|
|
|
);
|
|
|
|
|
|
|
|
$a->config[$family][$key] = $value;
|
|
|
|
|
2014-03-09 09:24:41 +01:00
|
|
|
// If APC is enabled then store the data there, else try XCache
|
2013-08-06 00:20:16 +02:00
|
|
|
if (function_exists("apc_store"))
|
|
|
|
apc_store($family."|".$key, $value, 600);
|
2014-03-09 09:24:41 +01:00
|
|
|
elseif (function_exists("xcache_set"))
|
|
|
|
xcache_set($family."|".$key, $value, 600);
|
2013-08-06 00:20:16 +02:00
|
|
|
|
2011-08-02 01:51:01 +02:00
|
|
|
if($ret)
|
|
|
|
return $value;
|
|
|
|
return $ret;
|
|
|
|
}}
|
|
|
|
|
|
|
|
|
|
|
|
if(! function_exists('load_pconfig')) {
|
|
|
|
function load_pconfig($uid,$family) {
|
|
|
|
global $a;
|
|
|
|
$r = q("SELECT * FROM `pconfig` WHERE `cat` = '%s' AND `uid` = %d",
|
|
|
|
dbesc($family),
|
|
|
|
intval($uid)
|
|
|
|
);
|
|
|
|
if(count($r)) {
|
|
|
|
foreach($r as $rr) {
|
|
|
|
$k = $rr['k'];
|
|
|
|
$a->config[$uid][$family][$k] = $rr['v'];
|
|
|
|
}
|
2012-06-17 02:29:42 +02:00
|
|
|
} else if ($family != 'config') {
|
2012-05-26 15:41:23 +02:00
|
|
|
// Negative caching
|
|
|
|
$a->config[$uid][$family] = "!<unset>!";
|
2011-08-02 01:51:01 +02:00
|
|
|
}
|
|
|
|
}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(! function_exists('get_pconfig')) {
|
|
|
|
function get_pconfig($uid,$family, $key, $instore = false) {
|
|
|
|
|
|
|
|
global $a;
|
|
|
|
|
|
|
|
if(! $instore) {
|
2012-05-26 15:41:23 +02:00
|
|
|
// Looking if the whole family isn't set
|
|
|
|
if(isset($a->config[$uid][$family])) {
|
|
|
|
if($a->config[$uid][$family] === '!<unset>!') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-02 01:51:01 +02:00
|
|
|
if(isset($a->config[$uid][$family][$key])) {
|
|
|
|
if($a->config[$uid][$family][$key] === '!<unset>!') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return $a->config[$uid][$family][$key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-09 09:24:41 +01:00
|
|
|
// If APC is enabled then fetch the data from there, else try XCache
|
2013-08-06 00:20:16 +02:00
|
|
|
if (function_exists("apc_fetch") AND function_exists("apc_exists"))
|
|
|
|
if (apc_exists($uid."|".$family."|".$key)) {
|
|
|
|
$val = apc_fetch($uid."|".$family."|".$key);
|
|
|
|
$a->config[$uid][$family][$key] = $val;
|
2013-08-09 18:28:50 +02:00
|
|
|
|
|
|
|
if ($val === '!<unset>!')
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
return $val;
|
2013-08-12 11:14:02 +02:00
|
|
|
}
|
2014-03-09 09:24:41 +01:00
|
|
|
elseif (function_exists("xcache_get") AND function_exists("xcache_isset"))
|
|
|
|
if (xcache_isset($uid."|".$family."|".$key)) {
|
|
|
|
$val = xcache_get($uid."|".$family."|".$key);
|
|
|
|
$a->config[$uid][$family][$key] = $val;
|
|
|
|
|
|
|
|
if ($val === '!<unset>!')
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
return $val;
|
|
|
|
}
|
2013-08-09 18:28:50 +02:00
|
|
|
|
2013-08-06 00:20:16 +02:00
|
|
|
|
2011-08-02 01:51:01 +02:00
|
|
|
$ret = q("SELECT `v` FROM `pconfig` WHERE `uid` = %d AND `cat` = '%s' AND `k` = '%s' LIMIT 1",
|
|
|
|
intval($uid),
|
|
|
|
dbesc($family),
|
|
|
|
dbesc($key)
|
|
|
|
);
|
|
|
|
|
|
|
|
if(count($ret)) {
|
2012-08-29 10:19:15 +02:00
|
|
|
$val = (preg_match("|^a:[0-9]+:{.*}$|s", $ret[0]['v'])?unserialize( $ret[0]['v']):$ret[0]['v']);
|
2011-12-19 18:01:38 +01:00
|
|
|
$a->config[$uid][$family][$key] = $val;
|
2013-08-09 18:28:50 +02:00
|
|
|
|
2014-03-09 09:24:41 +01:00
|
|
|
// If APC is enabled then store the data there, else try XCache
|
2013-08-09 18:28:50 +02:00
|
|
|
if (function_exists("apc_store"))
|
|
|
|
apc_store($uid."|".$family."|".$key, $val, 600);
|
2014-03-09 09:24:41 +01:00
|
|
|
elseif (function_exists("xcache_set"))
|
|
|
|
xcache_set($uid."|".$family."|".$key, $val, 600);
|
2013-08-09 18:28:50 +02:00
|
|
|
|
2011-12-19 18:01:38 +01:00
|
|
|
return $val;
|
2011-08-02 01:51:01 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
$a->config[$uid][$family][$key] = '!<unset>!';
|
2013-08-09 18:28:50 +02:00
|
|
|
|
2014-03-09 09:24:41 +01:00
|
|
|
// If APC is enabled then store the data there, else try XCache
|
2013-08-09 18:28:50 +02:00
|
|
|
if (function_exists("apc_store"))
|
|
|
|
apc_store($uid."|".$family."|".$key, '!<unset>!', 600);
|
2014-03-09 09:24:41 +01:00
|
|
|
elseif (function_exists("xcache_set"))
|
|
|
|
xcache_set($uid."|".$family."|".$key, '!<unset>!', 600);
|
2011-08-02 01:51:01 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}}
|
|
|
|
|
|
|
|
if(! function_exists('del_config')) {
|
|
|
|
function del_config($family,$key) {
|
|
|
|
|
|
|
|
global $a;
|
|
|
|
if(x($a->config[$family],$key))
|
|
|
|
unset($a->config[$family][$key]);
|
2014-03-09 09:24:41 +01:00
|
|
|
$ret = q("DELETE FROM `config` WHERE `cat` = '%s' AND `k` = '%s'",
|
2012-02-26 15:29:17 +01:00
|
|
|
dbesc($family),
|
2011-08-02 01:51:01 +02:00
|
|
|
dbesc($key)
|
|
|
|
);
|
2014-03-09 09:24:41 +01:00
|
|
|
// If APC is enabled then delete the data from there, else try XCache
|
2013-08-06 00:20:16 +02:00
|
|
|
if (function_exists("apc_delete"))
|
|
|
|
apc_delete($family."|".$key);
|
2014-03-09 09:24:41 +01:00
|
|
|
elseif (function_exists("xcache_unset"))
|
|
|
|
xcache_unset($family."|".$key);
|
2013-08-06 00:20:16 +02:00
|
|
|
|
2011-08-02 01:51:01 +02:00
|
|
|
return $ret;
|
|
|
|
}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Same as above functions except these are for personal config storage and take an
|
|
|
|
// additional $uid argument.
|
|
|
|
|
|
|
|
if(! function_exists('set_pconfig')) {
|
|
|
|
function set_pconfig($uid,$family,$key,$value) {
|
|
|
|
|
|
|
|
global $a;
|
|
|
|
|
2011-12-19 18:01:38 +01:00
|
|
|
// manage array value
|
|
|
|
$dbvalue = (is_array($value)?serialize($value):$value);
|
|
|
|
|
2011-08-02 01:51:01 +02:00
|
|
|
if(get_pconfig($uid,$family,$key,true) === false) {
|
|
|
|
$a->config[$uid][$family][$key] = $value;
|
|
|
|
$ret = q("INSERT INTO `pconfig` ( `uid`, `cat`, `k`, `v` ) VALUES ( %d, '%s', '%s', '%s' ) ",
|
|
|
|
intval($uid),
|
|
|
|
dbesc($family),
|
|
|
|
dbesc($key),
|
2011-12-19 18:01:38 +01:00
|
|
|
dbesc($dbvalue)
|
2011-08-02 01:51:01 +02:00
|
|
|
);
|
|
|
|
if($ret)
|
|
|
|
return $value;
|
|
|
|
return $ret;
|
|
|
|
}
|
2014-03-09 09:24:41 +01:00
|
|
|
$ret = q("UPDATE `pconfig` SET `v` = '%s' WHERE `uid` = %d AND `cat` = '%s' AND `k` = '%s'",
|
2011-12-19 18:01:38 +01:00
|
|
|
dbesc($dbvalue),
|
2011-08-02 01:51:01 +02:00
|
|
|
intval($uid),
|
|
|
|
dbesc($family),
|
|
|
|
dbesc($key)
|
|
|
|
);
|
|
|
|
|
|
|
|
$a->config[$uid][$family][$key] = $value;
|
|
|
|
|
2014-03-09 09:24:41 +01:00
|
|
|
// If APC is enabled then store the data there, else try XCache
|
2013-08-06 00:20:16 +02:00
|
|
|
if (function_exists("apc_store"))
|
|
|
|
apc_store($uid."|".$family."|".$key, $value, 600);
|
2014-03-09 09:24:41 +01:00
|
|
|
elseif (function_exists("xcache_set"))
|
|
|
|
xcache_set($uid."|".$family."|".$key, $value, 600);
|
2013-08-06 00:20:16 +02:00
|
|
|
|
|
|
|
|
2011-08-02 01:51:01 +02:00
|
|
|
if($ret)
|
|
|
|
return $value;
|
|
|
|
return $ret;
|
|
|
|
}}
|
|
|
|
|
|
|
|
if(! function_exists('del_pconfig')) {
|
|
|
|
function del_pconfig($uid,$family,$key) {
|
|
|
|
|
|
|
|
global $a;
|
|
|
|
if(x($a->config[$uid][$family],$key))
|
|
|
|
unset($a->config[$uid][$family][$key]);
|
2014-03-09 09:24:41 +01:00
|
|
|
$ret = q("DELETE FROM `pconfig` WHERE `uid` = %d AND `cat` = '%s' AND `k` = '%s'",
|
2011-08-02 01:51:01 +02:00
|
|
|
intval($uid),
|
|
|
|
dbesc($family),
|
|
|
|
dbesc($key)
|
|
|
|
);
|
|
|
|
return $ret;
|
|
|
|
}}
|