Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

Enable.php 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  6. * @author Joas Schilling <coding@schilljs.com>
  7. *
  8. * @license AGPL-3.0
  9. *
  10. * This code is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License, version 3,
  12. * as published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License, version 3,
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>
  21. *
  22. */
  23. namespace OC\Core\Command\TwoFactorAuth;
  24. use OC\Authentication\TwoFactorAuth\ProviderManager;
  25. use OCP\IUserManager;
  26. use Symfony\Component\Console\Input\InputArgument;
  27. use Symfony\Component\Console\Input\InputInterface;
  28. use Symfony\Component\Console\Output\OutputInterface;
  29. class Enable extends Base {
  30. public function __construct(
  31. private ProviderManager $manager,
  32. protected IUserManager $userManager,
  33. ) {
  34. parent::__construct('twofactorauth:enable');
  35. }
  36. protected function configure() {
  37. parent::configure();
  38. $this->setName('twofactorauth:enable');
  39. $this->setDescription('Enable two-factor authentication for a user');
  40. $this->addArgument('uid', InputArgument::REQUIRED);
  41. $this->addArgument('provider_id', InputArgument::REQUIRED);
  42. }
  43. protected function execute(InputInterface $input, OutputInterface $output): int {
  44. $uid = $input->getArgument('uid');
  45. $providerId = $input->getArgument('provider_id');
  46. $user = $this->userManager->get($uid);
  47. if (is_null($user)) {
  48. $output->writeln("<error>Invalid UID</error>");
  49. return 1;
  50. }
  51. if ($this->manager->tryEnableProviderFor($providerId, $user)) {
  52. $output->writeln("Two-factor provider <options=bold>$providerId</> enabled for user <options=bold>$uid</>.");
  53. return 0;
  54. } else {
  55. $output->writeln("<error>The provider does not support this operation.</error>");
  56. return 2;
  57. }
  58. }
  59. }