8 use C4
::Members
qw(changepassword);
11 use Koha
::Patron
::Password
::Recovery
12 qw(SendPasswordRecoveryEmail ValidateBorrowernumber GetValidLinkInfo CompletePasswordRecovery);
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 $minPassLength = C4
::Context
->preference('minPasswordLength');
32 my $id = $query->param('id');
33 my $uniqueKey = $query->param('uniqueKey');
34 my $username = $query->param('username');
41 my $errNoBorrowerFound;
42 my $errNoBorrowerEmail;
43 my $errAlreadyStartRecovery;
44 my $errTooManyEmailFound;
47 #new password form error
52 if ( $query->param('sendEmail') || $query->param('resendEmail') ) {
54 #try with the main email
55 $email ||= ''; # avoid undef
57 my $search_results = [];
59 # Find the borrower by his userid or email
61 $search_results = [ Koha
::Patrons
->search( { userid
=> $username } ) ];
64 $search_results = [ Koha
::Patrons
->search( { -or => { email
=> $email, emailpro
=> $email, B_email
=> $email } } ) ];
66 if ( not $search_results || scalar @
$search_results > 1 ) {
68 $errNoBorrowerFound = 1;
70 elsif ( $borrower = shift @
$search_results ) { # One matching borrower
71 $username ||= $borrower->userid;
72 my @emails = ( $borrower->email, $borrower->emailpro, $borrower->B_email );
74 my $firstNonEmptyEmail = '';
75 foreach my $address ( @emails ) {
76 $firstNonEmptyEmail = $address if length $address;
77 last if $firstNonEmptyEmail;
80 # Is the given email one of the borrower's ?
81 if ( $email && !( grep { $_ eq $email } @emails ) ) {
83 $errNoBorrowerFound = 1;
86 # If we dont have an email yet. Get one of the borrower's email or raise an error.
87 elsif ( !$email && !( $email = $firstNonEmptyEmail ) ) {
89 $errNoBorrowerEmail = 1;
92 # Check if a password reset already issued for this borrower AND we are not asking for a new email
93 elsif ( ValidateBorrowernumber
( $borrower->borrowernumber )
94 && !$query->param('resendEmail') )
97 $errAlreadyStartRecovery = 1;
100 else { # 0 matching borrower
102 $errNoBorrowerFound = 1;
107 errNoBorrowerFound
=> $errNoBorrowerFound,
108 errTooManyEmailFound
=> $errTooManyEmailFound,
109 errAlreadyStartRecovery
=> $errAlreadyStartRecovery,
110 errBadEmail
=> $errBadEmail,
111 errNoBorrowerEmail
=> $errNoBorrowerEmail,
112 password_recovery
=> 1,
113 email
=> HTML
::Entities
::encode
($email),
114 username
=> $username
117 elsif ( SendPasswordRecoveryEmail
( $borrower, $email, $query->param('resendEmail') ) ) { # generate uuid and send recovery email
123 else { # if it doesn't work....
125 password_recovery
=> 1,
130 elsif ( $query->param('passwordReset') ) {
131 ( $borrower_number, $username ) = GetValidLinkInfo
($uniqueKey);
133 #validate password length & match
134 if ( ($borrower_number)
135 && ( $password eq $repeatPassword )
136 && ( length($password) >= $minPassLength ) )
138 changepassword
( $username, $borrower_number, hash_password
($password) );
139 CompletePasswordRecovery
($uniqueKey);
141 password_reset_done
=> 1,
142 username
=> $username
146 if ( !$borrower_number ) { #parameters not valid
147 $errLinkNotValid = 1;
149 elsif ( $password ne $repeatPassword ) { #passwords does not match
150 $errPassNotMatch = 1;
152 elsif ( length($password) < $minPassLength ) { #password too short
153 $errPassTooShort = 1;
157 minPassLength
=> $minPassLength,
159 uniqueKey
=> $uniqueKey,
160 errLinkNotValid
=> $errLinkNotValid,
161 errPassNotMatch
=> $errPassNotMatch,
162 errPassTooShort
=> $errPassTooShort,
167 elsif ($uniqueKey) { #reset password form
168 #check if the link is valid
169 ( $borrower_number, $username ) = GetValidLinkInfo
($uniqueKey);
171 if ( !$borrower_number ) {
172 $errLinkNotValid = 1;
177 minPassLength
=> $minPassLength,
179 uniqueKey
=> $uniqueKey,
180 username
=> $username,
181 errLinkNotValid
=> $errLinkNotValid,
182 hasError
=> ( $errLinkNotValid ?
1 : 0 ),
185 else { #password recovery form (to send email)
186 $template->param( password_recovery
=> 1 );
189 output_html_with_http_headers
$query, $cookie, $template->output;