State.php 3.0 KB

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