SetConfig.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Joas Schilling <coding@schilljs.com>
  6. *
  7. * @license AGPL-3.0
  8. *
  9. * This code is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License, version 3,
  11. * as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU Affero General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public License, version 3,
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>
  20. *
  21. */
  22. namespace OC\Core\Command\Config\App;
  23. use OCP\IConfig;
  24. use Symfony\Component\Console\Input\InputArgument;
  25. use Symfony\Component\Console\Input\InputInterface;
  26. use Symfony\Component\Console\Input\InputOption;
  27. use Symfony\Component\Console\Output\OutputInterface;
  28. class SetConfig extends Base {
  29. /** * @var IConfig */
  30. protected $config;
  31. /**
  32. * @param IConfig $config
  33. */
  34. public function __construct(IConfig $config) {
  35. parent::__construct();
  36. $this->config = $config;
  37. }
  38. protected function configure() {
  39. parent::configure();
  40. $this
  41. ->setName('config:app:set')
  42. ->setDescription('Set an app config value')
  43. ->addArgument(
  44. 'app',
  45. InputArgument::REQUIRED,
  46. 'Name of the app'
  47. )
  48. ->addArgument(
  49. 'name',
  50. InputArgument::REQUIRED,
  51. 'Name of the config to set'
  52. )
  53. ->addOption(
  54. 'value',
  55. null,
  56. InputOption::VALUE_REQUIRED,
  57. 'The new value of the config'
  58. )
  59. ->addOption(
  60. 'update-only',
  61. null,
  62. InputOption::VALUE_NONE,
  63. 'Only updates the value, if it is not set before, it is not being added'
  64. )
  65. ;
  66. }
  67. protected function execute(InputInterface $input, OutputInterface $output) {
  68. $appName = $input->getArgument('app');
  69. $configName = $input->getArgument('name');
  70. if (!in_array($configName, $this->config->getAppKeys($appName)) && $input->hasParameterOption('--update-only')) {
  71. $output->writeln('<comment>Config value ' . $configName . ' for app ' . $appName . ' not updated, as it has not been set before.</comment>');
  72. return 1;
  73. }
  74. $configValue = $input->getOption('value');
  75. $this->config->setAppValue($appName, $configName, $configValue);
  76. $output->writeln('<info>Config value ' . $configName . ' for app ' . $appName . ' set to ' . $configValue . '</info>');
  77. return 0;
  78. }
  79. }