diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-09-25 16:06:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-25 16:06:30 +0200 |
commit | 548f4e9a27b578db66b6df15e2d8a28bbf66a822 (patch) | |
tree | e2fa3b3a577aa52643af4b690b45c66adb7bd68b /core/Command/TwoFactorAuth/Enable.php | |
parent | 34c17ba142fc0eca5e3a40654e9794ff4a851ece (diff) | |
parent | 7586b19e524761c1e8aab5170375a0d6c9e8f7a2 (diff) | |
download | nextcloud-server-548f4e9a27b578db66b6df15e2d8a28bbf66a822.tar.gz nextcloud-server-548f4e9a27b578db66b6df15e2d8a28bbf66a822.zip |
Merge pull request #11143 from nextcloud/feature/2fa-occ-revamp
[Mandatory 2FA] occ commands revamp
Diffstat (limited to 'core/Command/TwoFactorAuth/Enable.php')
-rw-r--r-- | core/Command/TwoFactorAuth/Enable.php | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/core/Command/TwoFactorAuth/Enable.php b/core/Command/TwoFactorAuth/Enable.php index 98e8b178cdb..4a9c12e686d 100644 --- a/core/Command/TwoFactorAuth/Enable.php +++ b/core/Command/TwoFactorAuth/Enable.php @@ -23,7 +23,7 @@ namespace OC\Core\Command\TwoFactorAuth; -use OC\Authentication\TwoFactorAuth\Manager; +use OC\Authentication\TwoFactorAuth\ProviderManager; use OCP\IUserManager; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; @@ -31,13 +31,13 @@ use Symfony\Component\Console\Output\OutputInterface; class Enable extends Base { - /** @var Manager */ + /** @var ProviderManager */ private $manager; /** @var IUserManager */ protected $userManager; - public function __construct(Manager $manager, IUserManager $userManager) { + public function __construct(ProviderManager $manager, IUserManager $userManager) { parent::__construct('twofactorauth:enable'); $this->manager = $manager; $this->userManager = $userManager; @@ -49,17 +49,24 @@ class Enable extends Base { $this->setName('twofactorauth:enable'); $this->setDescription('Enable two-factor authentication for a user'); $this->addArgument('uid', InputArgument::REQUIRED); + $this->addArgument('provider_id', InputArgument::REQUIRED); } protected function execute(InputInterface $input, OutputInterface $output) { $uid = $input->getArgument('uid'); + $providerId = $input->getArgument('provider_id'); $user = $this->userManager->get($uid); if (is_null($user)) { $output->writeln("<error>Invalid UID</error>"); - return; + return 1; + } + if ($this->manager->tryEnableProviderFor($providerId, $user)) { + $output->writeln("Two-factor provider <options=bold>$providerId</> enabled for user <options=bold>$uid</>."); + return 0; + } else { + $output->writeln("<error>The provider does not support this operation.</error>"); + return 2; } - $this->manager->enableTwoFactorAuthentication($user); - $output->writeln("Two-factor authentication enabled for user $uid"); } } |