From d14c37c07cfd1cdd1050d2b4afb934891dcc118b Mon Sep 17 00:00:00 2001
From: Aleisha Amohia <aleishaamohia@hotmail.com>
Date: Mon, 6 May 2024 03:00:20 +0000
Subject: [PATCH] Bug 33260: Use search_limited to protect message privacy, and
 unit test

This patch adds a Koha::Notice::Messages->search_limited sub to allow better control over which patron's notices the user can see.

Test added to t/db_dependent/Koha/Notice/Message.t

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
---
 Koha/Notice/Messages.pm              | 25 ++++++++++++++++++-
 t/db_dependent/Koha/Notice/Message.t | 36 +++++++++++++++++++++++++++-
 tools/notices.pl                     |  4 ++--
 3 files changed, 61 insertions(+), 4 deletions(-)

diff --git a/Koha/Notice/Messages.pm b/Koha/Notice/Messages.pm
index 3fedd5d1424..07d612f4e10 100644
--- a/Koha/Notice/Messages.pm
+++ b/Koha/Notice/Messages.pm
@@ -17,7 +17,6 @@ package Koha::Notice::Messages;
 
 use Modern::Perl;
 
-
 use Koha::Database;
 
 use Koha::Notice::Message;
@@ -34,6 +33,30 @@ Koha::Notice::Message - Koha notice message Object class, related to the message
 
 =cut
 
+=head3 search_limited
+
+    my $messages = Koha::Notice::Messages->search_limited( $params, $attributes );
+
+Search for generated and queued notices according to logged in patron restrictions
+
+=cut
+
+sub search_limited {
+    my ( $self, $params, $attributes ) = @_;
+
+    my $userenv = C4::Context->userenv;
+    my @restricted_branchcodes;
+    if ( $userenv and $userenv->{number} ) {
+        my $logged_in_user = Koha::Patrons->find( $userenv->{number} );
+        @restricted_branchcodes = $logged_in_user->libraries_where_can_see_patrons;
+    }
+
+    # TODO This 'borrowernumber' relation name is confusing and needs to be renamed
+    $params->{'borrowernumber.branchcode'} = { -in => \@restricted_branchcodes } if @restricted_branchcodes;
+    $attributes->{join}                    = 'borrowernumber';
+    return $self->search( $params, $attributes );
+}
+
 =head3 type
 
 =cut
diff --git a/t/db_dependent/Koha/Notice/Message.t b/t/db_dependent/Koha/Notice/Message.t
index 88c5278bcb9..a32d94e0a34 100755
--- a/t/db_dependent/Koha/Notice/Message.t
+++ b/t/db_dependent/Koha/Notice/Message.t
@@ -19,7 +19,7 @@
 
 use Modern::Perl;
 
-use Test::More tests => 2;
+use Test::More tests => 3;
 
 use C4::Letters qw( GetPreparedLetter EnqueueLetter );
 
@@ -242,4 +242,38 @@ subtest 'patron() tests' => sub {
     $schema->storage->txn_rollback;
 };
 
+subtest 'search_limited' => sub {
+    plan tests => 2;
+
+    $schema->storage->txn_begin;
+
+    my $patron   = $builder->build_object( { class => 'Koha::Patrons', value => { flags => 1 } } );
+    my $patron_2 = $builder->build_object( { class => 'Koha::Patrons', value => { flags => 0 } } );
+
+    my $message = $builder->build_object(
+        {
+            class => 'Koha::Notice::Messages',
+            value => { borrowernumber => $patron->borrowernumber }
+        }
+    );
+
+    my $message_2 = $builder->build_object(
+        {
+            class => 'Koha::Notice::Messages',
+            value => { borrowernumber => $patron_2->borrowernumber }
+        }
+    );
+
+    my $nb_messages = Koha::Notice::Messages->count;
+
+    my $group_1 = Koha::Library::Group->new( { title => 'TEST Group 1' } )->store;
+    my $group_2 = Koha::Library::Group->new( { title => 'TEST Group 2' } )->store;
+    Koha::Library::Group->new({ parent_id => $group_1->id,  branchcode => $patron->branchcode })->store();
+    Koha::Library::Group->new({ parent_id => $group_2->id,  branchcode => $patron_2->branchcode })->store();
+    t::lib::Mocks::mock_userenv( { patron => $patron } ); # Is superlibrarian
+    is( Koha::Notice::Messages->search_limited->count, $nb_messages, 'Koha::Notice::Messages->search_limited should return all generated notices for superlibrarian' );
+    t::lib::Mocks::mock_userenv( { patron => $patron_2 } ); # Is restricted
+    is( Koha::Notice::Messages->search_limited->count, 1, 'Koha:Notice::Messages->search_limited should not return all generated notices for restricted patron' );
+};
+
 1;
diff --git a/tools/notices.pl b/tools/notices.pl
index 5ac78e81892..a241593636b 100755
--- a/tools/notices.pl
+++ b/tools/notices.pl
@@ -65,9 +65,9 @@ if ( $op and $op eq 'cud-search' ) {
     }
     $where{'me.status'} = $status if ($status);
 
-    my $notices = Koha::Notice::Messages->search(
+    my $notices = Koha::Notice::Messages->search_limited(
         {%where},
-        { join => 'borrowernumber', order_by => { -desc => 'time_queued' } }
+        { order_by => { -desc => 'time_queued' } }
     );
 
     $template->param(
-- 
2.45.0