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.

ResetPassword.php 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2016, ownCloud, Inc.
  4. *
  5. * @author Andreas Fischer <bantu@owncloud.com>
  6. * @author Christopher Schäpers <kondou@ts.unde.re>
  7. * @author Clark Tomlinson <fallen013@gmail.com>
  8. * @author Joas Schilling <coding@schilljs.com>
  9. * @author Laurens Post <lkpost@scept.re>
  10. * @author Morris Jobke <hey@morrisjobke.de>
  11. *
  12. * @license AGPL-3.0
  13. *
  14. * This code is free software: you can redistribute it and/or modify
  15. * it under the terms of the GNU Affero General Public License, version 3,
  16. * as published by the Free Software Foundation.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU Affero General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU Affero General Public License, version 3,
  24. * along with this program. If not, see <http://www.gnu.org/licenses/>
  25. *
  26. */
  27. namespace OC\Core\Command\User;
  28. use OCP\IUserManager;
  29. use Symfony\Component\Console\Command\Command;
  30. use Symfony\Component\Console\Helper\QuestionHelper;
  31. use Symfony\Component\Console\Input\InputInterface;
  32. use Symfony\Component\Console\Input\InputArgument;
  33. use Symfony\Component\Console\Input\InputOption;
  34. use Symfony\Component\Console\Output\OutputInterface;
  35. use Symfony\Component\Console\Question\ConfirmationQuestion;
  36. use Symfony\Component\Console\Question\Question;
  37. class ResetPassword extends Command {
  38. /** @var IUserManager */
  39. protected $userManager;
  40. public function __construct(IUserManager $userManager) {
  41. $this->userManager = $userManager;
  42. parent::__construct();
  43. }
  44. protected function configure() {
  45. $this
  46. ->setName('user:resetpassword')
  47. ->setDescription('Resets the password of the named user')
  48. ->addArgument(
  49. 'user',
  50. InputArgument::REQUIRED,
  51. 'Username to reset password'
  52. )
  53. ->addOption(
  54. 'password-from-env',
  55. null,
  56. InputOption::VALUE_NONE,
  57. 'read password from environment variable OC_PASS'
  58. )
  59. ;
  60. }
  61. protected function execute(InputInterface $input, OutputInterface $output) {
  62. $username = $input->getArgument('user');
  63. /** @var $user \OCP\IUser */
  64. $user = $this->userManager->get($username);
  65. if (is_null($user)) {
  66. $output->writeln('<error>User does not exist</error>');
  67. return 1;
  68. }
  69. if ($input->getOption('password-from-env')) {
  70. $password = getenv('OC_PASS');
  71. if (!$password) {
  72. $output->writeln('<error>--password-from-env given, but OC_PASS is empty!</error>');
  73. return 1;
  74. }
  75. } elseif ($input->isInteractive()) {
  76. /** @var QuestionHelper $helper */
  77. $helper = $this->getHelper('question');
  78. if (\OCP\App::isEnabled('encryption')) {
  79. $output->writeln(
  80. '<error>Warning: Resetting the password when using encryption will result in data loss!</error>'
  81. );
  82. $question = new ConfirmationQuestion('Do you want to continue?');
  83. if (!$helper->ask($input, $output, $question)) {
  84. return 1;
  85. }
  86. }
  87. $question = new Question('Enter a new password: ');
  88. $question->setHidden(true);
  89. $password = $helper->ask($input, $output, $question);
  90. $question = new Question('Confirm the new password: ');
  91. $question->setHidden(true);
  92. $confirm = $helper->ask($input, $output, $question);
  93. if ($password !== $confirm) {
  94. $output->writeln("<error>Passwords did not match!</error>");
  95. return 1;
  96. }
  97. } else {
  98. $output->writeln("<error>Interactive input or --password-from-env is needed for entering a new password!</error>");
  99. return 1;
  100. }
  101. try {
  102. $success = $user->setPassword($password);
  103. } catch (\Exception $e) {
  104. $output->writeln('<error>' . $e->getMessage() . '</error>');
  105. return 1;
  106. }
  107. if ($success) {
  108. $output->writeln("<info>Successfully reset password for " . $username . "</info>");
  109. } else {
  110. $output->writeln("<error>Error while resetting password!</error>");
  111. return 1;
  112. }
  113. }
  114. }