Skip to content
Snippets Groups Projects
Commit e18fecae authored by Roeland Jago Douma's avatar Roeland Jago Douma Committed by GitHub
Browse files

Merge pull request #1297 from nextcloud/catch-exceptions-with-invalid-passwords

Catch the exception of the password policy app
parents d8c4f18c 83c46f05
No related branches found
No related tags found
No related merge requests found
......@@ -115,10 +115,16 @@ class Add extends Command {
return 1;
}
$user = $this->userManager->createUser(
$input->getArgument('uid'),
$password
);
try {
$user = $this->userManager->createUser(
$input->getArgument('uid'),
$password
);
} catch (\Exception $e) {
$output->writeln('<error>' . $e->getMessage() . '</error>');
return 1;
}
if ($user instanceof IUser) {
$output->writeln('<info>The user "' . $user->getUID() . '" was created successfully</info>');
......
......@@ -100,7 +100,7 @@ class ResetPassword extends Command {
$question->setHidden(true);
$password = $helper->ask($input, $output, $question);
$question = new Question('Conform the new password: ');
$question = new Question('Confirm the new password: ');
$question->setHidden(true);
$confirm = $helper->ask($input, $output, $question);
......@@ -113,7 +113,14 @@ class ResetPassword extends Command {
return 1;
}
$success = $user->setPassword($password);
try {
$success = $user->setPassword($password);
} catch (\Exception $e) {
$output->writeln('<error>' . $e->getMessage() . '</error>');
return 1;
}
if ($success) {
$output->writeln("<info>Successfully reset password for " . $username . "</info>");
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment