10 use Koha
::Patron
::Password
::Recovery
11 qw(SendPasswordRecoveryEmail ValidateBorrowernumber GetValidLinkInfo CompletePasswordRecovery DeleteExpiredPasswordRecovery);
17 use List
::Util qw
/any/;
19 my ( $template, $dummy, $cookie ) = get_template_and_user
(
21 template_name
=> "opac-password-recovery.tt",
29 my $email = $query->param('email') // q{};
30 my $password = $query->param('password');
31 my $repeatPassword = $query->param('repeatPassword');
32 my $id = $query->param('id');
33 my $uniqueKey = $query->param('uniqueKey');
34 my $username = $query->param('username') // q{};
41 my $errNoBorrowerFound;
42 my $errNoBorrowerEmail;
43 my $errMultipleAccountsForEmail;
44 my $errAlreadyStartRecovery;
45 my $errTooManyEmailFound;
47 my $errResetForbidden;
49 #new password form error
52 if ( $query->param('sendEmail') || $query->param('resendEmail') ) {
54 #try with the main email
58 # Find the borrower by userid, card number, or email
60 $search_results = Koha
::Patrons
->search( { -or => { userid
=> $username, cardnumber
=> $username }, login_attempts
=> { '!=', Koha
::Patron
::ADMINISTRATIVE_LOCKOUT
} } );
63 $search_results = Koha
::Patrons
->search( { -or => { email
=> $email, emailpro
=> $email, B_email
=> $email }, login_attempts
=> { '!=', Koha
::Patron
::ADMINISTRATIVE_LOCKOUT
} } );
66 if ( !defined $search_results || $search_results->count < 1) {
68 $errNoBorrowerFound = 1;
70 elsif ( $username && $search_results->count > 1) { # Multiple accounts for username
72 $errNoBorrowerFound = 1;
74 elsif ( $email && $search_results->count > 1) { # Muliple accounts for E-Mail
76 $errMultipleAccountsForEmail = 1;
78 elsif ( $borrower = $search_results->next() ) { # One matching borrower
80 if ( $borrower->category->effective_reset_password ) {
82 my @emails = grep { $_ } ( $borrower->email, $borrower->emailpro, $borrower->B_email );
84 my $firstNonEmptyEmail;
85 $firstNonEmptyEmail = $emails[0] if @emails;
87 # Is the given email one of the borrower's ?
88 if ( $email && !( any
{ /^$email$/i } @emails ) ) {
90 $errNoBorrowerFound = 1;
93 # If there is no given email, and there is no email on record
94 elsif ( !$email && !$firstNonEmptyEmail ) {
96 $errNoBorrowerEmail = 1;
99 # Check if a password reset already issued for this
100 # borrower AND we are not asking for a new email
101 elsif ( not $query->param('resendEmail') ) {
102 if ( ValidateBorrowernumber
( $borrower->borrowernumber ) ) {
104 $errAlreadyStartRecovery = 1;
107 DeleteExpiredPasswordRecovery
( $borrower->borrowernumber );
110 # Set the $email, if we don't have one.
111 if ( !$hasError && !$email ) {
112 $email = $firstNonEmptyEmail;
117 $errResetForbidden = 1;
120 else { # 0 matching borrower
122 $errNoBorrowerFound = 1;
127 errNoBorrowerFound
=> $errNoBorrowerFound,
128 errTooManyEmailFound
=> $errTooManyEmailFound,
129 errAlreadyStartRecovery
=> $errAlreadyStartRecovery,
130 errBadEmail
=> $errBadEmail,
131 errNoBorrowerEmail
=> $errNoBorrowerEmail,
132 errMultipleAccountsForEmail
=> $errMultipleAccountsForEmail,
133 errResetForbidden
=> $errResetForbidden,
134 password_recovery
=> 1,
135 email
=> HTML
::Entities
::encode
($email),
136 username
=> $username
139 elsif ( SendPasswordRecoveryEmail
( $borrower, $email, scalar $query->param('resendEmail') ) ) { # generate uuid and send recovery email
145 else { # if it doesn't work....
148 password_recovery
=> 1,
153 elsif ( $query->param('passwordReset') ) {
154 ( $borrower_number, $username ) = GetValidLinkInfo
($uniqueKey);
157 if ( not $borrower_number ) {
158 $error = 'errLinkNotValid';
159 } elsif ( $password ne $repeatPassword ) {
160 $error = 'errPassNotMatch';
163 Koha
::Patrons
->find($borrower_number)->set_password({ password
=> $password });
165 CompletePasswordRecovery
($uniqueKey);
167 password_reset_done
=> 1,
168 username
=> $username
172 if ( $_->isa('Koha::Exceptions::Password::TooShort') ) {
173 $error = 'password_too_short';
175 elsif ( $_->isa('Koha::Exceptions::Password::WhitespaceCharacters') ) {
176 $error = 'password_has_whitespaces';
178 elsif ( $_->isa('Koha::Exceptions::Password::TooWeak') ) {
179 $error = 'password_too_weak';
187 uniqueKey
=> $uniqueKey,
193 elsif ($uniqueKey) { #reset password form
194 #check if the link is valid
195 ( $borrower_number, $username ) = GetValidLinkInfo
($uniqueKey);
197 if ( !$borrower_number ) {
198 $errLinkNotValid = 1;
204 uniqueKey
=> $uniqueKey,
205 username
=> $username,
206 errLinkNotValid
=> $errLinkNotValid,
207 hasError
=> ( $errLinkNotValid ?
1 : 0 ),
210 else { #password recovery form (to send email)
211 $template->param( password_recovery
=> 1 );
214 output_html_with_http_headers
$query, $cookie, $template->output;