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.

State.php 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?php
  2. declare(strict_types = 1);
  3. /**
  4. * @copyright 2018 Christoph Wurst <christoph@winzerhof-wurst.at>
  5. *
  6. * @author 2018 Christoph Wurst <christoph@winzerhof-wurst.at>
  7. *
  8. * @license GNU AGPL version 3 or any later version
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License as
  12. * published by the Free Software Foundation, either version 3 of the
  13. * License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. *
  23. */
  24. namespace OC\Core\Command\TwoFactorAuth;
  25. use OCP\Authentication\TwoFactorAuth\IRegistry;
  26. use OCP\IUserManager;
  27. use Symfony\Component\Console\Input\InputArgument;
  28. use Symfony\Component\Console\Input\InputInterface;
  29. use Symfony\Component\Console\Output\OutputInterface;
  30. class State extends Base {
  31. /** @var IRegistry */
  32. private $registry;
  33. public function __construct(IRegistry $registry, IUserManager $userManager) {
  34. parent::__construct('twofactorauth:state');
  35. $this->registry = $registry;
  36. $this->userManager = $userManager;
  37. }
  38. protected function configure() {
  39. parent::configure();
  40. $this->setName('twofactorauth:state');
  41. $this->setDescription('Get the two-factor authentication (2FA) state of a user');
  42. $this->addArgument('uid', InputArgument::REQUIRED);
  43. }
  44. protected function execute(InputInterface $input, OutputInterface $output) {
  45. $uid = $input->getArgument('uid');
  46. $user = $this->userManager->get($uid);
  47. if (is_null($user)) {
  48. $output->writeln("<error>Invalid UID</error>");
  49. return;
  50. }
  51. $providerStates = $this->registry->getProviderStates($user);
  52. $filtered = $this->filterEnabledDisabledUnknownProviders($providerStates);
  53. list ($enabled, $disabled) = $filtered;
  54. if (!empty($enabled)) {
  55. $output->writeln("Two-factor authentication is enabled for user $uid");
  56. } else {
  57. $output->writeln("Two-factor authentication is not enabled for user $uid");
  58. }
  59. $output->writeln("");
  60. $this->printProviders("Enabled providers", $enabled, $output);
  61. $this->printProviders("Disabled providers", $disabled, $output);
  62. }
  63. private function filterEnabledDisabledUnknownProviders(array $providerStates): array {
  64. $enabled = [];
  65. $disabled = [];
  66. foreach ($providerStates as $providerId => $isEnabled) {
  67. if ($isEnabled) {
  68. $enabled[] = $providerId;
  69. } else {
  70. $disabled[] = $providerId;
  71. }
  72. }
  73. return [$enabled, $disabled];
  74. }
  75. private function printProviders(string $title, array $providers,
  76. OutputInterface $output) {
  77. if (empty($providers)) {
  78. // Ignore and don't print anything
  79. return;
  80. }
  81. $output->writeln($title . ":");
  82. foreach ($providers as $provider) {
  83. $output->writeln("- " . $provider);
  84. }
  85. }
  86. }