mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-01 11:12:42 +01:00
0afdabff00
Summary: Ref T12845. These options prompt the user to select from among concrete subclasses of some base class. Test Plan: Set, deleted and mangled these values from the web UI and CLI. Reviewers: chad, amckinley Reviewed By: amckinley Maniphest Tasks: T12845 Differential Revision: https://secure.phabricator.com/D18159
144 lines
4.1 KiB
PHP
144 lines
4.1 KiB
PHP
<?php
|
|
|
|
final class PhabricatorConfigManagementSetWorkflow
|
|
extends PhabricatorConfigManagementWorkflow {
|
|
|
|
protected function didConstruct() {
|
|
$this
|
|
->setName('set')
|
|
->setExamples('**set** __key__ __value__')
|
|
->setSynopsis(pht('Set a local configuration value.'))
|
|
->setArguments(
|
|
array(
|
|
array(
|
|
'name' => 'database',
|
|
'help' => pht(
|
|
'Update configuration in the database instead of '.
|
|
'in local configuration.'),
|
|
),
|
|
array(
|
|
'name' => 'args',
|
|
'wildcard' => true,
|
|
),
|
|
));
|
|
}
|
|
|
|
public function execute(PhutilArgumentParser $args) {
|
|
$console = PhutilConsole::getConsole();
|
|
$argv = $args->getArg('args');
|
|
if (count($argv) == 0) {
|
|
throw new PhutilArgumentUsageException(
|
|
pht('Specify a configuration key and a value to set it to.'));
|
|
}
|
|
|
|
$key = $argv[0];
|
|
|
|
if (count($argv) == 1) {
|
|
throw new PhutilArgumentUsageException(
|
|
pht(
|
|
"Specify a value to set the key '%s' to.",
|
|
$key));
|
|
}
|
|
|
|
$value = $argv[1];
|
|
|
|
if (count($argv) > 2) {
|
|
throw new PhutilArgumentUsageException(
|
|
pht(
|
|
'Too many arguments: expected one key and one value.'));
|
|
}
|
|
|
|
$options = PhabricatorApplicationConfigOptions::loadAllOptions();
|
|
if (empty($options[$key])) {
|
|
throw new PhutilArgumentUsageException(
|
|
pht(
|
|
"No such configuration key '%s'! Use `%s` to list all keys.",
|
|
$key,
|
|
'config list'));
|
|
}
|
|
|
|
$option = $options[$key];
|
|
|
|
$type = $option->newOptionType();
|
|
if ($type) {
|
|
try {
|
|
$value = $type->newValueFromCommandLineValue(
|
|
$option,
|
|
$value);
|
|
$type->validateStoredValue($option, $value);
|
|
} catch (PhabricatorConfigValidationException $ex) {
|
|
throw new PhutilArgumentUsageException($ex->getMessage());
|
|
}
|
|
} else {
|
|
$type = $option->getType();
|
|
switch ($type) {
|
|
default:
|
|
$value = json_decode($value, true);
|
|
if (!is_array($value)) {
|
|
switch ($type) {
|
|
case 'set':
|
|
$command = csprintf(
|
|
'./bin/config set %R %s',
|
|
$key,
|
|
'{"value1": true, "value2": true}');
|
|
|
|
$message = sprintf(
|
|
"%s\n\n %s\n",
|
|
pht(
|
|
'Config key "%s" is of type "%s". Specify it in JSON. '.
|
|
'For example:',
|
|
$key,
|
|
$type),
|
|
$command);
|
|
break;
|
|
default:
|
|
$message = pht(
|
|
'Config key "%s" is of type "%s". Specify it in JSON.',
|
|
$key,
|
|
$type);
|
|
break;
|
|
}
|
|
throw new PhutilArgumentUsageException($message);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
$use_database = $args->getArg('database');
|
|
if ($option->getLocked() && $use_database) {
|
|
throw new PhutilArgumentUsageException(
|
|
pht(
|
|
'Config key "%s" is locked and can only be set in local '.
|
|
'configuration. To learn more, see "%s" in the documentation.',
|
|
$key,
|
|
pht('Configuration Guide: Locked and Hidden Configuration')));
|
|
}
|
|
|
|
try {
|
|
$option->getGroup()->validateOption($option, $value);
|
|
} catch (PhabricatorConfigValidationException $validation) {
|
|
// Convert this into a usage exception so we don't dump a stack trace.
|
|
throw new PhutilArgumentUsageException($validation->getMessage());
|
|
}
|
|
|
|
if ($use_database) {
|
|
$config_type = 'database';
|
|
$config_entry = PhabricatorConfigEntry::loadConfigEntry($key);
|
|
$config_entry->setValue($value);
|
|
|
|
// If the entry has been deleted, resurrect it.
|
|
$config_entry->setIsDeleted(0);
|
|
|
|
$config_entry->save();
|
|
} else {
|
|
$config_type = 'local';
|
|
id(new PhabricatorConfigLocalSource())
|
|
->setKeys(array($key => $value));
|
|
}
|
|
|
|
$console->writeOut(
|
|
"%s\n",
|
|
pht("Set '%s' in %s configuration.", $key, $config_type));
|
|
}
|
|
|
|
}
|