fix some anomolies in config functions

This commit is contained in:
friendica 2013-06-21 21:36:48 -07:00
parent b0fdfd0ca3
commit f835737cb7
3 changed files with 73 additions and 52 deletions

View File

@ -21,7 +21,6 @@ function cli_startup() {
require_once('include/session.php'); require_once('include/session.php');
load_config('config');
load_config('system'); load_config('system');
$a->set_baseurl(get_config('system','baseurl')); $a->set_baseurl(get_config('system','baseurl'));

View File

@ -22,6 +22,7 @@ function load_config($family) {
$a->config[$family] = array(); $a->config[$family] = array();
if(! array_key_exists('config_loaded',$a->config[$family])) { if(! array_key_exists('config_loaded',$a->config[$family])) {
$r = q("SELECT * FROM config WHERE cat = '%s'", dbesc($family)); $r = q("SELECT * FROM config WHERE cat = '%s'", dbesc($family));
if($r !== false) { if($r !== false) {
if($r) { if($r) {
@ -48,7 +49,7 @@ function get_config($family, $key) {
global $a; global $a;
if(! array_key_exists($family,$a->config)) if((! array_key_exists($family,$a->config)) || (! array_key_exists('config_loaded',$a->config[$family])))
load_config($family); load_config($family);
if(array_key_exists('config_loaded',$a->config[$family])) { if(array_key_exists('config_loaded',$a->config[$family])) {
@ -63,19 +64,29 @@ function get_config($family, $key) {
return false; return false;
} }
function get_config_from_storage($family,$key) {
$ret = q("select * from config where cat = '%s' and k = '%s' limit 1",
dbesc($family),
dbesc($key)
);
return $ret;
}
// Store a config value ($value) in the category ($family) // Store a config value ($value) in the category ($family)
// under the key ($key) // under the key ($key)
// Return the value, or false if the database update failed // Return the value, or false if the database update failed
function set_config($family,$key,$value) { function set_config($family,$key,$value) {
global $a; global $a;
// manage array value // manage array value
$dbvalue = ((is_array($value)) ? serialize($value) : $value); $dbvalue = ((is_array($value)) ? serialize($value) : $value);
$dbvalue = ((is_bool($dbvalue)) ? intval($dbvalue) : $dbvalue); $dbvalue = ((is_bool($dbvalue)) ? intval($dbvalue) : $dbvalue);
if(get_config($family,$key) === false) { if(get_config($family,$key) === false || (! get_config_from_storage($family,$key))) {
$a->config[$family][$key] = $value; $a->config[$family][$key] = $value;
$ret = q("INSERT INTO config ( cat, k, v ) VALUES ( '%s', '%s', '%s' ) ", $ret = q("INSERT INTO config ( cat, k, v ) VALUES ( '%s', '%s', '%s' ) ",
dbesc($family), dbesc($family),
dbesc($key), dbesc($key),
@ -226,61 +237,64 @@ function del_pconfig($uid,$family,$key) {
function load_xconfig($xchan,$family) { function load_xconfig($xchan,$family = '') {
global $a; global $a;
if(! $xchan)
return false;
if(! array_key_exists($xchan,$a->config))
$a->config[$xchan] = array();
if(($family) && (! array_key_exists($family,$a->config[$xchan])))
$a->config[$xchan][$family] = array();
if($family) {
$r = q("SELECT * FROM `xconfig` WHERE `cat` = '%s' AND `xchan` = '%s'", $r = q("SELECT * FROM `xconfig` WHERE `cat` = '%s' AND `xchan` = '%s'",
dbesc($family), dbesc($family),
dbesc($xchan) dbesc($xchan)
); );
if(count($r)) { }
else {
$r = q("SELECT * FROM `xconfig` WHERE `xchan` = '%s'",
dbesc($xchan)
);
}
if($r) {
foreach($r as $rr) { foreach($r as $rr) {
$k = $rr['k']; $k = $rr['k'];
$a->config[$xchan][$family][$k] = $rr['v']; $c = $rr['cat'];
if(! array_key_exists($c,$a->config[$xchan])) {
$a->config[$xchan][$c] = array();
$a->config[$xchan][$c]['config_loaded'] = true;
} }
} else if ($family != 'config') { $a->config[$xchan][$c][$k] = $rr['v'];
// Negative caching
$a->config[$xchan][$family] = "!<unset>!";
} }
}
} }
function get_xconfig($xchan,$family, $key, $instore = false) { function get_xconfig($xchan,$family, $key) {
global $a; global $a;
if(! $instore) { if(! $xchan)
// Looking if the whole family isn't set
if(isset($a->config[$xchan][$family])) {
if($a->config[$xchan][$family] === '!<unset>!') {
return false; return false;
}
}
if(isset($a->config[$xchan][$family][$key])) { if(! array_key_exists($xchan,$a->config))
if($a->config[$xchan][$family][$key] === '!<unset>!') { load_xconfig($xchan);
if((! array_key_exists($family,$a->config[$xchan])) || (! array_key_exists($key,$a->config[$xchan][$family])))
return false; return false;
}
return $a->config[$xchan][$family][$key];
}
}
$ret = q("SELECT `v` FROM `xconfig` WHERE `xchan` = '%s' AND `cat` = '%s' AND `k` = '%s' LIMIT 1", return ((preg_match('|^a:[0-9]+:{.*}$|s', $a->config[$xchan][$family][$key]))
dbesc($xchan), ? unserialize($a->config[$xchan][$family][$key])
dbesc($family), : $a->config[$xchan][$family][$key]
dbesc($key)
); );
if(count($ret)) {
$val = (preg_match("|^a:[0-9]+:{.*}$|s", $ret[0]['v'])?unserialize( $ret[0]['v']):$ret[0]['v']);
$a->config[$xchan][$family][$key] = $val;
return $val;
}
else {
$a->config[$xchan][$family][$key] = '!<unset>!';
}
return false;
} }
@ -289,11 +303,17 @@ function set_xconfig($xchan,$family,$key,$value) {
global $a; global $a;
// manage array value // manage array value
$dbvalue = (is_array($value)?serialize($value):$value); $dbvalue = ((is_array($value)) ? serialize($value) : $value);
$dbvalue = ((is_bool($dbvalue)) ? intval($dbvalue) : $dbvalue);
if(get_xconfig($xchan,$family,$key) === false) {
if(! array_key_exists($xchan,$a->config))
$a->config[$xchan] = array();
if(! array_key_exists($family,$a->config[$xchan]))
$a->config[$xchan][$family] = array();
if(get_xconfig($xchan,$family,$key,true) === false) {
$a->config[$xchan][$family][$key] = $value; $a->config[$xchan][$family][$key] = $value;
$ret = q("INSERT INTO `xconfig` ( `xchan`, `cat`, `k`, `v` ) VALUES ( '%s', '%s', '%s', '%s' ) ", $ret = q("INSERT INTO xconfig ( xchan, cat, k, v ) VALUES ( '%s', '%s', '%s', '%s' ) ",
dbesc($xchan), dbesc($xchan),
dbesc($family), dbesc($family),
dbesc($key), dbesc($key),
@ -303,7 +323,8 @@ function set_xconfig($xchan,$family,$key,$value) {
return $value; return $value;
return $ret; return $ret;
} }
$ret = q("UPDATE `xconfig` SET `v` = '%s' WHERE `xchan` = '%s' AND `cat` = '%s' AND `k` = '%s' LIMIT 1",
$ret = q("UPDATE xconfig SET v = '%s' WHERE xchan = '%s' and cat = '%s' AND k = '%s' LIMIT 1",
dbesc($dbvalue), dbesc($dbvalue),
dbesc($xchan), dbesc($xchan),
dbesc($family), dbesc($family),
@ -315,6 +336,7 @@ function set_xconfig($xchan,$family,$key,$value) {
if($ret) if($ret)
return $value; return $value;
return $ret; return $ret;
} }

View File

@ -280,7 +280,7 @@ function admin_page_site_post(&$a){
set_config('system','delivery_interval',$delivery_interval); set_config('system','delivery_interval',$delivery_interval);
set_config('system','poll_interval',$poll_interval); set_config('system','poll_interval',$poll_interval);
set_config('system','maxloadavg',$maxloadavg); set_config('system','maxloadavg',$maxloadavg);
set_config('config','sitename',$sitename); set_config('system','sitename',$sitename);
if ($banner=="") { if ($banner=="") {
del_config('system','banner'); del_config('system','banner');
@ -402,7 +402,7 @@ function admin_page_site(&$a) {
'$baseurl' => $a->get_baseurl(true), '$baseurl' => $a->get_baseurl(true),
// name, label, value, help string, extra data... // name, label, value, help string, extra data...
'$sitename' => array('sitename', t("Site name"), htmlentities($a->config['sitename'], ENT_QUOTES), ""), '$sitename' => array('sitename', t("Site name"), htmlentities(get_config('system','sitename'), ENT_QUOTES), ""),
'$banner' => array('banner', t("Banner/Logo"), $banner, ""), '$banner' => array('banner', t("Banner/Logo"), $banner, ""),
'$language' => array('language', t("System language"), get_config('system','language'), "", $lang_choices), '$language' => array('language', t("System language"), get_config('system','language'), "", $lang_choices),
'$theme' => array('theme', t("System theme"), get_config('system','theme'), t("Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"), $theme_choices), '$theme' => array('theme', t("System theme"), get_config('system','theme'), t("Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"), $theme_choices),
@ -410,8 +410,8 @@ function admin_page_site(&$a) {
'$theme_accessibility' => array('theme-accessibility', t("Accessibility system theme"), get_config('system','accessibility-theme'), t("Accessibility theme"), $theme_choices_accessibility), '$theme_accessibility' => array('theme-accessibility', t("Accessibility system theme"), get_config('system','accessibility-theme'), t("Accessibility theme"), $theme_choices_accessibility),
'$ssl_policy' => array('ssl_policy', t("SSL link policy"), (string) intval(get_config('system','ssl_policy')), t("Determines whether generated links should be forced to use SSL"), $ssl_choices), '$ssl_policy' => array('ssl_policy', t("SSL link policy"), (string) intval(get_config('system','ssl_policy')), t("Determines whether generated links should be forced to use SSL"), $ssl_choices),
'$maximagesize' => array('maximagesize', t("Maximum image size"), get_config('system','maximagesize'), t("Maximum size in bytes of uploaded images. Default is 0, which means no limits.")), '$maximagesize' => array('maximagesize', t("Maximum image size"), get_config('system','maximagesize'), t("Maximum size in bytes of uploaded images. Default is 0, which means no limits.")),
'$register_policy' => array('register_policy', t("Register policy"), $a->config['system']['register_policy'], "", $register_choices), '$register_policy' => array('register_policy', t("Register policy"), get_config('system','register_policy'), "", $register_choices),
'$register_text' => array('register_text', t("Register text"), htmlentities($a->config['register_text'], ENT_QUOTES, 'UTF-8'), t("Will be displayed prominently on the registration page.")), '$register_text' => array('register_text', t("Register text"), htmlentities(get_config('system','register_text'), ENT_QUOTES, 'UTF-8'), t("Will be displayed prominently on the registration page.")),
'$abandon_days' => array('abandon_days', t('Accounts abandoned after x days'), get_config('system','account_abandon_days'), t('Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.')), '$abandon_days' => array('abandon_days', t('Accounts abandoned after x days'), get_config('system','account_abandon_days'), t('Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.')),
'$allowed_sites' => array('allowed_sites', t("Allowed friend domains"), get_config('system','allowed_sites'), t("Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains")), '$allowed_sites' => array('allowed_sites', t("Allowed friend domains"), get_config('system','allowed_sites'), t("Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains")),
'$allowed_email' => array('allowed_email', t("Allowed email domains"), get_config('system','allowed_email'), t("Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains")), '$allowed_email' => array('allowed_email', t("Allowed email domains"), get_config('system','allowed_email'), t("Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains")),