10 use Koha
::Patron
::Password
::Recovery
11 qw(SendPasswordRecoveryEmail ValidateBorrowernumber GetValidLinkInfo CompletePasswordRecovery DeleteExpiredPasswordRecovery);
13 use Koha
::AuthUtils
qw(hash_password);
18 my ( $template, $dummy, $cookie ) = get_template_and_user
(
20 template_name
=> "opac-password-recovery.tt",
28 my $email = $query->param('email') // q{};
29 my $password = $query->param('password');
30 my $repeatPassword = $query->param('repeatPassword');
31 my $id = $query->param('id');
32 my $uniqueKey = $query->param('uniqueKey');
33 my $username = $query->param('username') // q{};
40 my $errNoBorrowerFound;
41 my $errNoBorrowerEmail;
42 my $errMultipleAccountsForEmail;
43 my $errAlreadyStartRecovery;
44 my $errTooManyEmailFound;
47 #new password form error
50 if ( $query->param('sendEmail') || $query->param('resendEmail') ) {
52 #try with the main email
56 # Find the borrower by userid, card number, or email
58 $search_results = Koha
::Patrons
->search( { -or => { userid
=> $username, cardnumber
=> $username } } );
61 $search_results = Koha
::Patrons
->search( { -or => { email
=> $email, emailpro
=> $email, B_email
=> $email } } );
64 if ( !defined $search_results || $search_results->count < 1) {
66 $errNoBorrowerFound = 1;
68 elsif ( $username && $search_results->count > 1) { # Multiple accounts for username
70 $errNoBorrowerFound = 1;
72 elsif ( $email && $search_results->count > 1) { # Muliple accounts for E-Mail
74 $errMultipleAccountsForEmail = 1;
76 elsif ( $borrower = $search_results->next() ) { # One matching borrower
77 my @emails = ( $borrower->email, $borrower->emailpro, $borrower->B_email );
79 my $firstNonEmptyEmail = '';
80 foreach my $address ( @emails ) {
81 $firstNonEmptyEmail = $address if length $address;
82 last if $firstNonEmptyEmail;
85 # Is the given email one of the borrower's ?
86 if ( $email && !( grep { $_ eq $email } @emails ) ) {
88 $errNoBorrowerFound = 1;
91 # If there is no given email, and there is no email on record
92 elsif ( !$email && !$firstNonEmptyEmail ) {
94 $errNoBorrowerEmail = 1;
97 # Check if a password reset already issued for this borrower AND we are not asking for a new email
98 elsif ( not $query->param('resendEmail') ) {
99 if ( ValidateBorrowernumber
( $borrower->borrowernumber ) ) {
101 $errAlreadyStartRecovery = 1;
104 DeleteExpiredPasswordRecovery
( $borrower->borrowernumber );
107 # Set the $email, if we don't have one.
108 if ( !$hasError && !$email ) {
109 $email = $firstNonEmptyEmail;
112 else { # 0 matching borrower
114 $errNoBorrowerFound = 1;
119 errNoBorrowerFound
=> $errNoBorrowerFound,
120 errTooManyEmailFound
=> $errTooManyEmailFound,
121 errAlreadyStartRecovery
=> $errAlreadyStartRecovery,
122 errBadEmail
=> $errBadEmail,
123 errNoBorrowerEmail
=> $errNoBorrowerEmail,
124 errMultipleAccountsForEmail
=> $errMultipleAccountsForEmail,
125 password_recovery
=> 1,
126 email
=> HTML
::Entities
::encode
($email),
127 username
=> $username
130 elsif ( SendPasswordRecoveryEmail
( $borrower, $email, scalar $query->param('resendEmail') ) ) { # generate uuid and send recovery email
136 else { # if it doesn't work....
139 password_recovery
=> 1,
144 elsif ( $query->param('passwordReset') ) {
145 ( $borrower_number, $username ) = GetValidLinkInfo
($uniqueKey);
148 if ( not $borrower_number ) {
149 $error = 'errLinkNotValid';
150 } elsif ( $password ne $repeatPassword ) {
151 $error = 'errPassNotMatch';
153 my ( $is_valid, $err) = Koha
::AuthUtils
::is_password_valid
( $password );
154 unless ( $is_valid ) {
155 $error = 'password_too_short' if $err eq 'too_short';
156 $error = 'password_too_weak' if $err eq 'too_weak';
157 $error = 'password_has_whitespaces' if $err eq 'has_whitespaces';
159 Koha
::Patrons
->find($borrower_number)->update_password( $username, hash_password
($password) );
160 CompletePasswordRecovery
($uniqueKey);
162 password_reset_done
=> 1,
163 username
=> $username
171 uniqueKey
=> $uniqueKey,
177 elsif ($uniqueKey) { #reset password form
178 #check if the link is valid
179 ( $borrower_number, $username ) = GetValidLinkInfo
($uniqueKey);
181 if ( !$borrower_number ) {
182 $errLinkNotValid = 1;
188 uniqueKey
=> $uniqueKey,
189 username
=> $username,
190 errLinkNotValid
=> $errLinkNotValid,
191 hasError
=> ( $errLinkNotValid ?
1 : 0 ),
194 else { #password recovery form (to send email)
195 $template->param( password_recovery
=> 1 );
198 output_html_with_http_headers
$query, $cookie, $template->output;