You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GetConfig.php 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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 GetConfig 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:get')
  42. ->setDescription('Get 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 get'
  52. )
  53. ->addOption(
  54. 'default-value',
  55. null,
  56. InputOption::VALUE_OPTIONAL,
  57. 'If no default value is set and the config does not exist, the command will exit with 1'
  58. )
  59. ;
  60. }
  61. /**
  62. * Executes the current command.
  63. *
  64. * @param InputInterface $input An InputInterface instance
  65. * @param OutputInterface $output An OutputInterface instance
  66. * @return int 0 if everything went fine, or an error code
  67. */
  68. protected function execute(InputInterface $input, OutputInterface $output): int {
  69. $appName = $input->getArgument('app');
  70. $configName = $input->getArgument('name');
  71. $defaultValue = $input->getOption('default-value');
  72. if (!in_array($configName, $this->config->getAppKeys($appName)) && !$input->hasParameterOption('--default-value')) {
  73. return 1;
  74. }
  75. if (!in_array($configName, $this->config->getAppKeys($appName))) {
  76. $configValue = $defaultValue;
  77. } else {
  78. $configValue = $this->config->getAppValue($appName, $configName);
  79. }
  80. $this->writeMixedInOutputFormat($input, $output, $configValue);
  81. return 0;
  82. }
  83. }