diff --git a/core/command/user/resetpassword.php b/core/command/user/resetpassword.php new file mode 100644 index 0000000000..d7893c291e --- /dev/null +++ b/core/command/user/resetpassword.php @@ -0,0 +1,79 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Core\Command\User; + +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Input\InputArgument; +use Symfony\Component\Console\Output\OutputInterface; + +class ResetPassword extends Command { + + /** @var \OC\User\Manager */ + protected $userManager; + + public function __construct(\OC\User\Manager $userManager) { + $this->userManager = $userManager; + parent::__construct(); + } + + protected function configure() { + $this + ->setName('user:resetpassword') + ->setDescription('Resets the password of the named user') + ->addArgument( + 'user', + InputArgument::REQUIRED, + 'Username to reset password' + ) + ; + } + + protected function execute(InputInterface $input, OutputInterface $output) { + $username = $input->getArgument('user'); + + /** @var $user \OC\User\User */ + $user = $this->userManager->get($username); + if (is_null($user)) { + $output->writeln("There is no user called " . $username . ""); + return 1; + } + + if ($input->isInteractive()) { + /** @var $dialog \Symfony\Component\Console\Helper\DialogHelper */ + $dialog = $this->getHelperSet()->get('dialog'); + $password = $dialog->askHiddenResponse( + $output, + 'Enter a new password: ', + false + ); + $confirm = $dialog->askHiddenResponse( + $output, + 'Confirm the new password: ', + false + ); + + if ($password === $confirm) { + $success = $user->setPassword($password); + if ($success) { + $output->writeln("Successfully reset password for " . $username . ""); + } else { + $output->writeln("Error while resetting password!"); + return 1; + } + } else { + $output->writeln("Passwords did not match!"); + return 1; + } + } else { + $output->writeln("Interactive input is needed for entering a new password!"); + return 1; + } + } +} diff --git a/core/register_command.php b/core/register_command.php index e9de76c144..9ced377bee 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -18,4 +18,5 @@ $application->add(new OC\Core\Command\App\Enable()); $application->add(new OC\Core\Command\App\ListApps()); $application->add(new OC\Core\Command\Maintenance\Repair(new \OC\Repair())); $application->add(new OC\Core\Command\User\Report()); +$application->add(new OC\Core\Command\User\ResetPassword(\OC::$server->getUserManager())); $application->add(new OC\Core\Command\User\LastSeen());