CreateEmptyConfig.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Joas Schilling <coding@schilljs.com>
  8. * @author Martin Konrad <konrad@frib.msu.edu>
  9. *
  10. * @license AGPL-3.0
  11. *
  12. * This code is free software: you can redistribute it and/or modify
  13. * it under the terms of the GNU Affero General Public License, version 3,
  14. * as published by the Free Software Foundation.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU Affero General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Affero General Public License, version 3,
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>
  23. *
  24. */
  25. namespace OCA\User_LDAP\Command;
  26. use OCA\User_LDAP\Configuration;
  27. use OCA\User_LDAP\Helper;
  28. use Symfony\Component\Console\Command\Command;
  29. use Symfony\Component\Console\Input\InputInterface;
  30. use Symfony\Component\Console\Input\InputOption;
  31. use Symfony\Component\Console\Output\OutputInterface;
  32. class CreateEmptyConfig extends Command {
  33. public function __construct(
  34. protected Helper $helper,
  35. ) {
  36. parent::__construct();
  37. }
  38. protected function configure(): void {
  39. $this
  40. ->setName('ldap:create-empty-config')
  41. ->setDescription('creates an empty LDAP configuration')
  42. ->addOption(
  43. 'only-print-prefix',
  44. 'p',
  45. InputOption::VALUE_NONE,
  46. 'outputs only the prefix'
  47. )
  48. ;
  49. }
  50. protected function execute(InputInterface $input, OutputInterface $output): int {
  51. $configPrefix = $this->helper->getNextServerConfigurationPrefix();
  52. $configHolder = new Configuration($configPrefix);
  53. $configHolder->ldapConfigurationActive = false;
  54. $configHolder->saveConfiguration();
  55. $prose = '';
  56. if (!$input->getOption('only-print-prefix')) {
  57. $prose = 'Created new configuration with configID ';
  58. }
  59. $output->writeln($prose . "{$configPrefix}");
  60. return self::SUCCESS;
  61. }
  62. }