ResetPassword.php 4.1 KB

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