2018-03-24 14:39:13 -04:00
|
|
|
<?php
|
|
|
|
|
2019-05-02 17:17:35 -04:00
|
|
|
namespace Friendica\Console;
|
2018-03-24 14:39:13 -04:00
|
|
|
|
|
|
|
use Asika\SimpleConsole\CommandArgsException;
|
2018-07-19 22:15:21 -04:00
|
|
|
use Friendica\App;
|
2019-12-19 14:11:07 -05:00
|
|
|
use Friendica\Core\Config\IConfiguration;
|
2018-07-19 22:15:21 -04:00
|
|
|
use RuntimeException;
|
2018-03-24 14:39:13 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief tool to access the system config from the CLI
|
|
|
|
*
|
|
|
|
* With this script you can access the system configuration of your node from
|
|
|
|
* the CLI. You can do both, reading current values stored in the database and
|
|
|
|
* set new values to config variables.
|
|
|
|
*
|
|
|
|
* Usage:
|
|
|
|
* If you specify no parameters at the CLI, the script will list all config
|
|
|
|
* variables defined.
|
|
|
|
*
|
|
|
|
* If you specify one parameter, the script will list all config variables
|
|
|
|
* defined in this section of the configuration (e.g. "system").
|
|
|
|
*
|
|
|
|
* If you specify two parameters, the script will show you the current value
|
|
|
|
* of the named configuration setting. (e.g. "system loglevel")
|
|
|
|
*
|
|
|
|
* If you specify three parameters, the named configuration setting will be
|
|
|
|
* set to the value of the last parameter. (e.g. "system loglevel 0" will
|
|
|
|
* disable logging)
|
|
|
|
*
|
2018-09-15 19:28:38 -04:00
|
|
|
* @author Tobias Diekershoff <tobias.diekershoff@gmx.net>
|
|
|
|
* @author Hypolite Petovan <hypolite@mrpetovan.com>
|
2018-03-24 14:39:13 -04:00
|
|
|
*/
|
|
|
|
class Config extends \Asika\SimpleConsole\Console
|
|
|
|
{
|
|
|
|
protected $helpOptions = ['h', 'help', '?'];
|
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
/**
|
|
|
|
* @var App\Mode
|
|
|
|
*/
|
|
|
|
private $appMode;
|
|
|
|
/**
|
2019-12-19 14:11:07 -05:00
|
|
|
* @var IConfiguration
|
2019-07-28 16:06:33 -04:00
|
|
|
*/
|
|
|
|
private $config;
|
|
|
|
|
2018-03-24 14:39:13 -04:00
|
|
|
protected function getHelp()
|
|
|
|
{
|
|
|
|
$help = <<<HELP
|
|
|
|
console config - Manage site configuration
|
|
|
|
Synopsis
|
|
|
|
bin/console config [-h|--help|-?] [-v]
|
|
|
|
bin/console config <category> [-h|--help|-?] [-v]
|
|
|
|
bin/console config <category> <key> [-h|--help|-?] [-v]
|
|
|
|
bin/console config <category> <key> <value> [-h|--help|-?] [-v]
|
|
|
|
|
|
|
|
Description
|
|
|
|
bin/console config
|
|
|
|
Lists all config values
|
|
|
|
|
|
|
|
bin/console config <category>
|
|
|
|
Lists all config values in the provided category
|
|
|
|
|
|
|
|
bin/console config <category> <key>
|
|
|
|
Shows the value of the provided key in the category
|
|
|
|
|
|
|
|
bin/console config <category> <key> <value>
|
|
|
|
Sets the value of the provided key in the category
|
|
|
|
|
|
|
|
Notes:
|
2018-11-25 01:44:51 -05:00
|
|
|
Setting config entries which are manually set in config/local.config.php may result in
|
2018-03-24 14:39:13 -04:00
|
|
|
conflict between database settings and the manual startup settings.
|
|
|
|
|
|
|
|
Options
|
|
|
|
-h|--help|-? Show help information
|
|
|
|
-v Show more debug information.
|
|
|
|
HELP;
|
|
|
|
return $help;
|
|
|
|
}
|
|
|
|
|
2019-12-19 14:11:07 -05:00
|
|
|
public function __construct(App\Mode $appMode, IConfiguration $config, array $argv = null)
|
2018-03-24 14:39:13 -04:00
|
|
|
{
|
2019-07-28 16:06:33 -04:00
|
|
|
parent::__construct($argv);
|
|
|
|
|
|
|
|
$this->appMode = $appMode;
|
|
|
|
$this->config = $config;
|
|
|
|
}
|
2018-03-26 16:58:34 -04:00
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
protected function doExecute()
|
|
|
|
{
|
2018-03-24 14:39:13 -04:00
|
|
|
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');
|
|
|
|
}
|
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
if (!$this->appMode->has(App\Mode::DBCONFIGAVAILABLE)) {
|
2018-06-25 20:56:07 -04:00
|
|
|
$this->out('Database isn\'t ready or populated yet, showing file config only');
|
2018-03-24 14:39:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (count($this->args) == 3) {
|
2018-07-17 02:15:05 -04:00
|
|
|
$cat = $this->getArgument(0);
|
|
|
|
$key = $this->getArgument(1);
|
|
|
|
$value = $this->getArgument(2);
|
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
if (is_array($this->config->get($cat, $key))) {
|
2018-07-19 22:15:21 -04:00
|
|
|
throw new RuntimeException("$cat.$key is an array and can't be set using this command.");
|
2018-07-17 02:15:05 -04:00
|
|
|
}
|
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
$result = $this->config->set($cat, $key, $value);
|
2018-06-25 20:59:02 -04:00
|
|
|
if ($result) {
|
2018-07-17 02:15:05 -04:00
|
|
|
$this->out("{$cat}.{$key} <= " .
|
2019-07-28 16:06:33 -04:00
|
|
|
$this->config->get($cat, $key));
|
2018-06-25 20:59:02 -04:00
|
|
|
} else {
|
2018-07-17 02:15:05 -04:00
|
|
|
$this->out("Unable to set {$cat}.{$key}");
|
2018-06-25 20:59:02 -04:00
|
|
|
}
|
2018-03-24 14:39:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (count($this->args) == 2) {
|
2018-07-17 02:15:05 -04:00
|
|
|
$cat = $this->getArgument(0);
|
|
|
|
$key = $this->getArgument(1);
|
2019-07-28 16:06:33 -04:00
|
|
|
$value = $this->config->get($this->getArgument(0), $this->getArgument(1));
|
2018-07-17 02:15:05 -04:00
|
|
|
|
|
|
|
if (is_array($value)) {
|
|
|
|
foreach ($value as $k => $v) {
|
2019-02-03 19:19:01 -05:00
|
|
|
$this->out("{$cat}.{$key}[{$k}] => " . (is_array($v) ? implode(', ', $v) : $v));
|
2018-07-17 02:15:05 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$this->out("{$cat}.{$key} => " . $value);
|
|
|
|
}
|
2018-03-24 14:39:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (count($this->args) == 1) {
|
2018-07-17 02:15:05 -04:00
|
|
|
$cat = $this->getArgument(0);
|
2019-07-28 16:06:33 -04:00
|
|
|
$this->config->load($cat);
|
|
|
|
$configCache = $this->config->getCache();
|
2018-07-17 02:15:05 -04:00
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
if ($configCache->get($cat) !== null) {
|
2018-07-17 02:15:05 -04:00
|
|
|
$this->out("[{$cat}]");
|
2019-07-28 16:06:33 -04:00
|
|
|
$catVal = $configCache->get($cat);
|
2019-02-03 12:54:25 -05:00
|
|
|
foreach ($catVal as $key => $value) {
|
2018-07-17 02:15:05 -04:00
|
|
|
if (is_array($value)) {
|
|
|
|
foreach ($value as $k => $v) {
|
2019-02-03 19:19:01 -05:00
|
|
|
$this->out("{$key}[{$k}] => " . (is_array($v) ? implode(', ', $v) : $v));
|
2018-07-17 02:15:05 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$this->out("{$key} => " . $value);
|
|
|
|
}
|
2018-03-24 14:39:13 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$this->out('Config section ' . $this->getArgument(0) . ' returned nothing');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($this->args) == 0) {
|
2019-07-28 16:06:33 -04:00
|
|
|
$this->config->load();
|
2018-06-25 20:59:02 -04:00
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
if ($this->config->get('system', 'config_adapter') == 'jit' && $this->appMode->has(App\Mode::DBCONFIGAVAILABLE)) {
|
2018-06-25 20:59:02 -04:00
|
|
|
$this->out('Warning: The JIT (Just In Time) Config adapter doesn\'t support loading the entire configuration, showing file config only');
|
|
|
|
}
|
|
|
|
|
2019-07-28 16:06:33 -04:00
|
|
|
$config = $this->config->getCache()->getAll();
|
2019-02-03 12:54:25 -05:00
|
|
|
foreach ($config as $cat => $section) {
|
2018-06-25 20:59:02 -04:00
|
|
|
if (is_array($section)) {
|
|
|
|
foreach ($section as $key => $value) {
|
|
|
|
if (is_array($value)) {
|
|
|
|
foreach ($value as $k => $v) {
|
2019-02-03 19:19:01 -05:00
|
|
|
$this->out("{$cat}.{$key}[{$k}] => " . (is_array($v) ? implode(', ', $v) : $v));
|
2018-06-25 20:59:02 -04:00
|
|
|
}
|
|
|
|
} else {
|
2018-07-11 23:00:44 -04:00
|
|
|
$this->out("{$cat}.{$key} => " . $value);
|
2018-06-25 20:59:02 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2018-07-11 23:00:44 -04:00
|
|
|
$this->out("config.{$cat} => " . $section);
|
2018-06-25 20:59:02 -04:00
|
|
|
}
|
2018-03-24 14:39:13 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|