From 583dd107f00a494432f404da8f9874ed496fa35a Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Mon, 29 Jul 2024 16:35:55 +0200 Subject: [PATCH] Bug 37512: Add a function to reset login attempts When using system preference 'FailedLoginAttempts', a patron's account is blocked after X many failed login attempts on the OPAC. This patch adds, like for "Patron's card has expired" message : * a link to reset login attempts to 0 Link is only displayed if libarian has permission to edit patrons. Reset login attempts to 0 feature uses members/setstatus.pl with resetloginattempts=y like reregistration=y for an expired patron To test: 1. Apply BZ25947 2. Change system preference 'FailedLoginAttempts' to a small number, like 2 3. Go to a patron's account and copy their username (while you're there, change the password and add some fines, too) 4. In the OPAC, try to log in with the username and a wrong password 3 times 5. Go back to the patron's account in the staff interface 6. Note that there is a message : "Patron's account has been locked (due to 3 failed login attempts)" Signed-off-by: Roman Dolny --- .../prog/en/includes/patron_messages.inc | 225 ++++++++++-------- members/setstatus.pl | 12 +- 2 files changed, 130 insertions(+), 107 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/patron_messages.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/patron_messages.inc index 39a9c0ec..d02c2072 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/patron_messages.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/patron_messages.inc @@ -5,7 +5,7 @@ [% SET return_claims = patron.return_claims %] [% SET logged_in_branchcode = Branches.GetLoggedInBranchcode() %] -[% IF ( has_modifications || warndeparture || returnbeforeexpiry || expired || patron.gonenoaddress || patron.lost || userdebarred || odues || ( return_claims.count > ClaimReturnedWarningThreshold ) || age_limitations || limited_category || charges || charges_guarantors_guarantees || charges_guarantees || credits ) %] +[% IF ( has_modifications || warndeparture || returnbeforeexpiry || expired || patron.gonenoaddress || patron.lost || userdebarred || odues || ( return_claims.count > ClaimReturnedWarningThreshold ) || age_limitations || limited_category || charges || charges_guarantors_guarantees || charges_guarantees || credits || patron.account_locked ) %]

Attention

+ [% END # /F ( has_modifications || warndeparture... %] [% IF waiting_recalls.count %] @@ -186,11 +203,15 @@ [% IF ( w.pickup_library_id == logged_in_branchcode ) %]
  • [% w.biblio.title | html %] - ([% ItemTypes.GetDescription( w.item.effective_itemtype ) | html %]), [% IF ( w.biblio.author ) %]by [% w.biblio.author | html %][% END %] - [% IF ( w.item.itemcallnumber ) %][[% w.item.itemcallnumber | html %]][% END %] + ([% ItemTypes.GetDescription( w.item.effective_itemtype ) | html %]), + [% IF ( w.biblio.author ) %] by [% w.biblio.author | html %] [% END %] + [% IF ( w.item.itemcallnumber ) %] [[% w.item.itemcallnumber | html %]] [% END %] Recall placed on [% w.created_date | $KohaDates %].
    - [% SET expires_on = w.expiration_date %] Waiting here [% IF expires_on %]until [% expires_on | $KohaDates %][% END %] + + [% SET expires_on = w.expiration_date %] + Waiting here [% IF expires_on %] until [% expires_on | $KohaDates %] [% END %] +
  • [% END %] [% END %] @@ -204,11 +225,15 @@ [% IF ( w.pickup_library_id != logged_in_branchcode ) %]
  • [% w.biblio.title | html %] - ([% ItemTypes.GetDescription( w.item.effective_itemtype ) | html %]), [% IF ( w.biblio.author ) %]by [% w.biblio.author | html %][% END %] - [% IF ( w.item.itemcallnumber ) %][[% w.item.itemcallnumber | html %]][% END %] + ([% ItemTypes.GetDescription( w.item.effective_itemtype ) | html %]), + [% IF ( w.biblio.author ) %] by [% w.biblio.author | html %] [% END %] + [% IF ( w.item.itemcallnumber ) %] [[% w.item.itemcallnumber | html %]] [% END %] Recall placed on [% w.created_date | $KohaDates %].
    - [% SET expires_on = w.expiration_date %] Waiting at [% Branches.GetName( w.pickup_library_id ) | html %] [% IF expires_on %]until [% expires_on | $KohaDates %][% END %] + + [% SET expires_on = w.expiration_date %] + Waiting at [% Branches.GetName( w.pickup_library_id ) | html %] [% IF expires_on %] until [% expires_on | $KohaDates %] [% END %] +
  • [% END %] [% END %] @@ -236,12 +261,18 @@ [% IF ( w.branch.branchcode == logged_in_branchcode ) %]
  • [% w.biblio.title | html %] - ([% ItemTypes.GetDescription( w.item.effective_itemtype ) | html %]), [% IF ( w.biblio.author ) %]by [% w.biblio.author | html %][% END %] - [% IF ( w.item.itemcallnumber ) %][[% w.item.itemcallnumber | html %]][% END %] + ([% ItemTypes.GetDescription( w.item.effective_itemtype ) | html %]), + [% IF ( w.biblio.author ) %] by [% w.biblio.author | html %] [% END %] + [% IF ( w.item.itemcallnumber ) %] [[% w.item.itemcallnumber | html %]] [% END %] Hold placed on [% w.reservedate | $KohaDates %].
    - [% SET expires_on = w.expirationdate %] Waiting here [% IF expires_on %]until [% expires_on | $KohaDates %][% END %]. - Waiting here since [% w.waitingdate | $KohaDates %]. + + [% SET expires_on = w.expirationdate %] + Waiting here [% IF expires_on %] until [% expires_on | $KohaDates %][% END %]. + + + Waiting here since [% w.waitingdate | $KohaDates %]. +
  • [% END %] [% END %] @@ -255,11 +286,15 @@ [% IF ( w.branch.branchcode != logged_in_branchcode ) %]
  • [% w.biblio.title | html %] - ([% ItemTypes.GetDescription( w.item.effective_itemtype ) | html %]), [% IF ( w.biblio.author ) %]by [% w.biblio.author | html %][% END %] - [% IF ( w.item.itemcallnumber ) %][[% w.item.itemcallnumber | html %]][% END %] + ([% ItemTypes.GetDescription( w.item.effective_itemtype ) | html %]), + [% IF ( w.biblio.author ) %] by [% w.biblio.author | html %] [% END %] + [% IF ( w.item.itemcallnumber ) %] [[% w.item.itemcallnumber | html %]] [% END %] Hold placed on [% w.reservedate | $KohaDates %].
    - [% SET expires_on = w.expirationdate %] Waiting at [% w.branch.branchname | html %] [% IF expires_on %]until [% expires_on | $KohaDates %][% END %] + + [% SET expires_on = w.expirationdate %] + Waiting at [% w.branch.branchname | html %] [% IF expires_on %] until [% expires_on | $KohaDates %] [% END %] +
  • [% END %] [% END %] @@ -274,23 +309,25 @@

    Curbside pickups scheduled here

      - [% FOR cp IN curbside_pickups %] -
    • On [% cp.scheduled_pickup_datetime | $KohaDates %]: - [% SWITCH cp.status %] - [% CASE 'to-be-staged' %] - To be staged - [% CASE 'staged-and-ready' %] - Staged and ready - [% CASE 'patron-is-outside' %] - Patron is outside! - [% CASE 'delivered' %] - Delivered - [% CASE %] - Unknown status "[% cp.status | html %]" - [% END %] -
    • - [% END %] + [% FOR cp IN curbside_pickups %] +
    • On [% cp.scheduled_pickup_datetime | $KohaDates %]: + [% SWITCH cp.status %] + [% CASE 'to-be-staged' %] + + To be staged + [% CASE 'staged-and-ready' %] + + Staged and ready + [% CASE 'patron-is-outside' %] + + Patron is outside! + [% CASE 'delivered' %] + + Delivered + [% CASE %]Unknown status "[% cp.status | html %]" + [% END %] +
    • + [% END %]
    [% END %] @@ -301,11 +338,12 @@

    Notes

    - - + [% END # /IF patron.borrowernotes %] [% IF ( patron_messages ) %] @@ -322,11 +360,7 @@ [% patron_message.message_date | $KohaDates %] [% Branches.GetName( patron_message.branchcode ) | html %] [% IF patron_message.manager_id %] - ( - [% patron_message.get_column('manager_firstname') | html %] [% patron_message.get_column('manager_surname') | html %] - ) + ( [% patron_message.get_column('manager_firstname') | html %] [% patron_message.get_column('manager_surname') | html %] ) [% END %] "[% patron_message.message | html | html_line_break %]" [% IF patron_message.patron_read_date %] @@ -335,36 +369,22 @@ [% IF patron_message.branchcode == Branches.GetLoggedInBranchcode OR Koha.Preference('AllowAllMessageDeletion') %] [% IF moremember %] - Edit + Edit
    [% INCLUDE 'csrf-token.inc' %] - - - - + + + +
    [% ELSE %] - Edit + Edit
    [% INCLUDE 'csrf-token.inc' %] - - - + + +
    [% END %] @@ -373,8 +393,7 @@ [% END %] Add a new message - - + [% FOREACH pm IN patron_messages %] [% END %] -[% END # /IF patron_messages %] +[% END # /IF patron_messages %] \ No newline at end of file diff --git a/members/setstatus.pl b/members/setstatus.pl index d05498b8..0d7957d9 100755 --- a/members/setstatus.pl +++ b/members/setstatus.pl @@ -35,10 +35,11 @@ my $input = CGI->new; my ($loggedinuserid) = checkauth( $input, 0, { borrowers => 'edit_borrowers' }, 'intranet' ); -my $destination = $input->param("destination") || ''; -my $borrowernumber = $input->param('borrowernumber'); -my $status = $input->param('status'); -my $reregistration = $input->param('reregistration') || ''; +my $destination = $input->param("destination") || ''; +my $borrowernumber = $input->param('borrowernumber'); +my $status = $input->param('status'); +my $reregistration = $input->param('reregistration') || ''; +my $resetloginattempts = $input->param('resetloginattempts') || ''; my $dbh = C4::Context->dbh; my $dateexpiry; @@ -64,6 +65,9 @@ if ( $logged_in_user->can_see_patron_infos($patron) ) { $_->rethrow(); } } + $dateexpiry = $patron->renew_account; + } elsif ( $resetloginattempts eq 'y' ) { + $patron->login_attempts(0)->store; } else { my $sth = $dbh->prepare("UPDATE borrowers SET debarred = ?, debarredcomment = '' WHERE borrowernumber = ?"); $sth->execute( $status, $borrowernumber ); -- 2.30.2