summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install.pm
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2007-11-28 23:35:52 +0100
committermkanat%bugzilla.org <>2007-11-28 23:35:52 +0100
commit2e37faa78bb9963f38caefa6d59336e1bd4447ef (patch)
tree0034f5ee195d88f910d15b8f80f57ac2fb5be79f /Bugzilla/Install.pm
parentc031e0bf0b505e711e48dbe71dd248326e9e77f3 (diff)
downloadbugzilla-2e37faa78bb9963f38caefa6d59336e1bd4447ef.tar.gz
bugzilla-2e37faa78bb9963f38caefa6d59336e1bd4447ef.tar.xz
Bug 353995: Make checksetup able to reset a user's password
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=mkanat
Diffstat (limited to 'Bugzilla/Install.pm')
-rw-r--r--Bugzilla/Install.pm67
1 files changed, 44 insertions, 23 deletions
diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm
index f251e4d1c..c70f8a8bc 100644
--- a/Bugzilla/Install.pm
+++ b/Bugzilla/Install.pm
@@ -307,27 +307,9 @@ sub create_admin {
chomp($full_name);
}
- while (!$password) {
- # trap a few interrupts so we can fix the echo if we get aborted.
- local $SIG{HUP} = \&_create_admin_exit;
- local $SIG{INT} = \&_create_admin_exit;
- local $SIG{QUIT} = \&_create_admin_exit;
- local $SIG{TERM} = \&_create_admin_exit;
-
- system("stty","-echo") unless ON_WINDOWS; # disable input echoing
-
- print get_text('install_admin_get_password') . ' ';
- $password = <STDIN>;
- chomp $password;
- print "\n", get_text('install_admin_get_password2') . ' ';
- my $pass2 = <STDIN>;
- chomp $pass2;
- eval { validate_password($password, $pass2); };
- if ($@) {
- print "\n$@\n";
- undef $password;
- }
- system("stty","echo") unless ON_WINDOWS;
+ if (!$password) {
+ $password = _prompt_for_password(
+ get_text('install_admin_get_password'));
}
my $admin = Bugzilla::User->create({ login_name => $login,
@@ -370,13 +352,52 @@ sub make_admin {
print "\n", get_text('install_admin_created', { user => $user }), "\n";
}
-# This is just in case we get interrupted while getting the admin's password.
-sub _create_admin_exit {
+sub _prompt_for_password {
+ my $prompt = shift;
+
+ my $password;
+ while (!$password) {
+ # trap a few interrupts so we can fix the echo if we get aborted.
+ local $SIG{HUP} = \&_password_prompt_exit;
+ local $SIG{INT} = \&_password_prompt_exit;
+ local $SIG{QUIT} = \&_password_prompt_exit;
+ local $SIG{TERM} = \&_password_prompt_exit;
+
+ system("stty","-echo") unless ON_WINDOWS; # disable input echoing
+
+ print $prompt, ' ';
+ $password = <STDIN>;
+ chomp $password;
+ print "\n", get_text('install_confirm_password'), ' ';
+ my $pass2 = <STDIN>;
+ chomp $pass2;
+ eval { validate_password($password, $pass2); };
+ if ($@) {
+ print "\n$@\n";
+ undef $password;
+ }
+ system("stty","echo") unless ON_WINDOWS;
+ }
+ return $password;
+}
+
+# This is just in case we get interrupted while getting a password.
+sub _password_prompt_exit {
# re-enable input echoing
system("stty","echo") unless ON_WINDOWS;
exit 1;
}
+sub reset_password {
+ my $login = shift;
+ my $user = Bugzilla::User->check($login);
+ my $prompt = "\n" . get_text('install_reset_password', { user => $user });
+ my $password = _prompt_for_password($prompt);
+ $user->set_password($password);
+ $user->update();
+ print "\n", get_text('install_reset_password_done'), "\n";
+}
+
1;
__END__