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.

CreateEmptyConfig.php 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. /** @var \OCA\User_LDAP\Helper */
  34. protected $helper;
  35. /**
  36. * @param Helper $helper
  37. */
  38. public function __construct(Helper $helper) {
  39. $this->helper = $helper;
  40. parent::__construct();
  41. }
  42. protected function configure() {
  43. $this
  44. ->setName('ldap:create-empty-config')
  45. ->setDescription('creates an empty LDAP configuration')
  46. ->addOption(
  47. 'only-print-prefix',
  48. 'p',
  49. InputOption::VALUE_NONE,
  50. 'outputs only the prefix'
  51. )
  52. ;
  53. }
  54. protected function execute(InputInterface $input, OutputInterface $output): int {
  55. $configPrefix = $this->helper->getNextServerConfigurationPrefix();
  56. $configHolder = new Configuration($configPrefix);
  57. $configHolder->ldapConfigurationActive = false;
  58. $configHolder->saveConfiguration();
  59. $prose = '';
  60. if (!$input->getOption('only-print-prefix')) {
  61. $prose = 'Created new configuration with configID ';
  62. }
  63. $output->writeln($prose . "{$configPrefix}");
  64. return 0;
  65. }
  66. }