X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FConsole%2FConfig.php;h=b1c3df54e024fc59738c259c9cddf0b54327292b;hb=f786e8984f1bd61a617f00a3e312181846ab40dd;hp=a199fb3afbf8368bc113aac215b7bbacc529ece4;hpb=7acb4b04343df31c2cc78214fae5429c66d95fb2;p=friendica.git diff --git a/src/Core/Console/Config.php b/src/Core/Console/Config.php index a199fb3afb..b1c3df54e0 100644 --- a/src/Core/Console/Config.php +++ b/src/Core/Console/Config.php @@ -1,135 +1,171 @@ - - */ -class Config extends \Asika\SimpleConsole\Console -{ - protected $helpOptions = ['h', 'help', '?']; - - protected function getHelp() - { - $help = << [-h|--help|-?] [-v] - bin/console config [-h|--help|-?] [-v] - bin/console config [-h|--help|-?] [-v] - -Description - bin/console config - Lists all config values - - bin/console config - Lists all config values in the provided category - - bin/console config - Shows the value of the provided key in the category - - bin/console config - Sets the value of the provided key in the category - -Notes: - Setting config entries which are manually set in .htconfig.php may result in - conflict between database settings and the manual startup settings. - -Options - -h|--help|-? Show help information - -v Show more debug information. -HELP; - return $help; - } - - protected function doExecute() - { - if ($this->getOption('v')) { - $this->out('Executable: ' . $this->executable); - $this->out('Class: ' . __CLASS__); - $this->out('Arguments: ' . var_export($this->args, true)); - $this->out('Options: ' . var_export($this->options, true)); - } - - if (count($this->args) > 3) { - throw new CommandArgsException('Too many arguments'); - } - - require_once '.htconfig.php'; - $result = dba::connect($db_host, $db_user, $db_pass, $db_data); - unset($db_host, $db_user, $db_pass, $db_data); - - if (!$result) { - throw new \RuntimeException('Unable to connect to database'); - } - - if (count($this->args) == 3) { - Core\Config::set($this->getArgument(0), $this->getArgument(1), $this->getArgument(2)); - $this->out("config[{$this->getArgument(0)}][{$this->getArgument(1)}] = " . Core\Config::get($this->getArgument(0), - $this->getArgument(1))); - } - - if (count($this->args) == 2) { - $this->out("config[{$this->getArgument(0)}][{$this->getArgument(1)}] = " . Core\Config::get($this->getArgument(0), - $this->getArgument(1))); - } - - if (count($this->args) == 1) { - Core\Config::load($this->getArgument(0)); - - $a = get_app(); - if (!is_null($a->config[$this->getArgument(0)])) { - foreach ($a->config[$this->getArgument(0)] as $k => $x) { - $this->out("config[{$this->getArgument(0)}][{$k}] = " . $x); - } - } else { - $this->out('Config section ' . $this->getArgument(0) . ' returned nothing'); - } - } - - if (count($this->args) == 0) { - $configs = dba::select('config'); - foreach ($configs as $config) { - $this->out("config[{$config['cat']}][{$config['k']}] = " . $config['v']); - } - } - - return 0; - } - -} + + * @author Hypolite Petovan + */ +class Config extends \Asika\SimpleConsole\Console +{ + protected $helpOptions = ['h', 'help', '?']; + + protected function getHelp() + { + $help = << [-h|--help|-?] [-v] + bin/console config [-h|--help|-?] [-v] + bin/console config [-h|--help|-?] [-v] + +Description + bin/console config + Lists all config values + + bin/console config + Lists all config values in the provided category + + bin/console config + Shows the value of the provided key in the category + + bin/console config + Sets the value of the provided key in the category + +Notes: + Setting config entries which are manually set in config/local.config.php may result in + conflict between database settings and the manual startup settings. + +Options + -h|--help|-? Show help information + -v Show more debug information. +HELP; + return $help; + } + + protected function doExecute() + { + $a = \Friendica\BaseObject::getApp(); + + if ($this->getOption('v')) { + $this->out('Executable: ' . $this->executable); + $this->out('Class: ' . __CLASS__); + $this->out('Arguments: ' . var_export($this->args, true)); + $this->out('Options: ' . var_export($this->options, true)); + } + + if (count($this->args) > 3) { + throw new CommandArgsException('Too many arguments'); + } + + if (!$a->getMode()->has(App\Mode::DBCONFIGAVAILABLE)) { + $this->out('Database isn\'t ready or populated yet, showing file config only'); + } + + if (count($this->args) == 3) { + $cat = $this->getArgument(0); + $key = $this->getArgument(1); + $value = $this->getArgument(2); + + if (is_array(Core\Config::get($cat, $key))) { + throw new RuntimeException("$cat.$key is an array and can't be set using this command."); + } + + $result = Core\Config::set($cat, $key, $value); + if ($result) { + $this->out("{$cat}.{$key} <= " . + Core\Config::get($cat, $key)); + } else { + $this->out("Unable to set {$cat}.{$key}"); + } + } + + if (count($this->args) == 2) { + $cat = $this->getArgument(0); + $key = $this->getArgument(1); + $value = Core\Config::get($this->getArgument(0), $this->getArgument(1)); + + if (is_array($value)) { + foreach ($value as $k => $v) { + $this->out("{$cat}.{$key}[{$k}] => " . (is_array($v) ? implode(', ', $v) : $v)); + } + } else { + $this->out("{$cat}.{$key} => " . $value); + } + } + + if (count($this->args) == 1) { + $cat = $this->getArgument(0); + Core\Config::load($cat); + + if ($a->getConfig()->get($cat) !== null) { + $this->out("[{$cat}]"); + $catVal = $a->getConfig()->get($cat); + foreach ($catVal as $key => $value) { + if (is_array($value)) { + foreach ($value as $k => $v) { + $this->out("{$key}[{$k}] => " . (is_array($v) ? implode(', ', $v) : $v)); + } + } else { + $this->out("{$key} => " . $value); + } + } + } else { + $this->out('Config section ' . $this->getArgument(0) . ' returned nothing'); + } + } + + if (count($this->args) == 0) { + Core\Config::load(); + + if (Core\Config::get('system', 'config_adapter') == 'jit' && $a->getMode()->has(App\Mode::DBCONFIGAVAILABLE)) { + $this->out('Warning: The JIT (Just In Time) Config adapter doesn\'t support loading the entire configuration, showing file config only'); + } + + $config = $a->getConfig()->getAll(); + foreach ($config as $cat => $section) { + if (is_array($section)) { + foreach ($section as $key => $value) { + if (is_array($value)) { + foreach ($value as $k => $v) { + $this->out("{$cat}.{$key}[{$k}] => " . (is_array($v) ? implode(', ', $v) : $v)); + } + } else { + $this->out("{$cat}.{$key} => " . $value); + } + } + } else { + $this->out("config.{$cat} => " . $section); + } + } + } + + return 0; + } +}