From ccf1ddcef9d9376e09b842bae7b88653bd9268de Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Tue, 21 Nov 2023 06:54:36 -0500 Subject: [PATCH] Bug 35369: SIP default 'Greetings from Koha.' message for patrons should be optional and configurable It would be nice to have a syspref / sip configuration option to remove or customize this message without having to use regex on the AF field Test Plan: 1) Apply this patch 2) Restart all the things! 3) Make a SIP2 patron info request 4) Note the standard AF field response 5) Set the new syspref SIP2ScreenMessageGreeting to something else 6) Restart all the things again! 7) Make another SIP2 patron info request 8) Note your new AF field greeting message! Signed-off-by: David Nind Bug 35369: (follow-up) Fix display of new system preference The new system preference was not findable in the system preferences as the wrong system preference name was used. Signed-off-by: David Nind --- C4/SIP/ILS/Patron.pm | 2 +- .../data/mysql/atomicupdate/bug_35369.pl | 19 ++++++++++++++++++ installer/data/mysql/mandatory/sysprefs.sql | 1 + .../admin/preferences/circulation.pref | 3 +++ t/db_dependent/SIP/Patron.t | 20 ++++++++++++++++++- 5 files changed, 43 insertions(+), 2 deletions(-) create mode 100755 installer/data/mysql/atomicupdate/bug_35369.pl diff --git a/C4/SIP/ILS/Patron.pm b/C4/SIP/ILS/Patron.pm index f3dfea74bdc..8e18e3102c9 100644 --- a/C4/SIP/ILS/Patron.pm +++ b/C4/SIP/ILS/Patron.pm @@ -149,7 +149,7 @@ sub new { fees => 0, # currently not distinct from fines recall_overdue => 0, items_billed => 0, - screen_msg => 'Greetings from Koha. ' . $kp->{opacnote} . $fines_msg, + screen_msg => process_tt( C4::Context->preference('SIP2ScreenMessageGreeting'), { borrower => $patron, sip_borrower => $kp } ) . $kp->{opacnote} . $fines_msg, print_line => '', items => [], hold_items => $flags->{WAITING}->{itemlist}, diff --git a/installer/data/mysql/atomicupdate/bug_35369.pl b/installer/data/mysql/atomicupdate/bug_35369.pl new file mode 100755 index 00000000000..ecb866f9a12 --- /dev/null +++ b/installer/data/mysql/atomicupdate/bug_35369.pl @@ -0,0 +1,19 @@ +use Modern::Perl; + +return { + bug_number => "BUG_NUMBER", + description => "A single line description", + up => sub { + my ($args) = @_; + my ( $dbh, $out ) = @$args{qw(dbh out)}; + + $dbh->do( + q{ + INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES + ('SIP2ScreenMessageGreeting','Greetings from Koha. ','','SIP greetings message that will being each SIP AF field','Free') + } + ); + + say $out "Added new system preference 'SIP2ScreenMessageGreeting'"; + }, +}; diff --git a/installer/data/mysql/mandatory/sysprefs.sql b/installer/data/mysql/mandatory/sysprefs.sql index 8c19ccd1272..ca0152d20ca 100644 --- a/installer/data/mysql/mandatory/sysprefs.sql +++ b/installer/data/mysql/mandatory/sysprefs.sql @@ -711,6 +711,7 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, ` ('ShowReviewer','full','none|full|first|surname|firstandinitial|username','Choose how a commenter\'s identity is presented alongside comments in the OPAC','Choice'), ('ShowReviewerPhoto','1','','If ON, photo of reviewer will be shown beside comments in OPAC','YesNo'), ('SIP2AddOpacMessagesToScreenMessage','1','','If enabled, patron OPAC messages will be included in the SIP2 screen message','YesNo'), +('SIP2ScreenMessageGreeting','Greetings from Koha. ','','SIP greetings message that will being each SIP AF field','Free'), ('SIP2SortBinMapping','',NULL,'Use the following mappings to determine the sort_bin of a returned item. The mapping should be on the form \"branchcode:item field:item field value:sort bin number\", with one mapping per line.','free'), ('SkipHoldTrapOnNotForLoanValue','',NULL,'If set, Koha will never trap items for hold with this notforloan value','Integer'), ('SlipCSS','',NULL,'Slips CSS url.','free'), diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref index 61c300be8a8..7f64481facb 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/circulation.pref @@ -1416,6 +1416,9 @@ Circulation: 1: Send 0: Don't send - OPAC patron messages in the SIP2 screen message field. + - + - Begin each SIP screen message with the phrase + - pref: SIP2ScreenMessageGreeting Curbside pickup module: - diff --git a/t/db_dependent/SIP/Patron.t b/t/db_dependent/SIP/Patron.t index 67e81124bf0..5c3819e8310 100755 --- a/t/db_dependent/SIP/Patron.t +++ b/t/db_dependent/SIP/Patron.t @@ -4,7 +4,7 @@ # This needs to be extended! Your help is appreciated.. use Modern::Perl; -use Test::More tests => 11; +use Test::More tests => 12; use t::lib::Mocks; use t::lib::TestBuilder; @@ -31,6 +31,7 @@ is( defined $sip_patron, 1, "Patron is valid" ); $schema->resultset('Borrower')->search({ cardnumber => $card })->delete; my $sip_patron2 = C4::SIP::ILS::Patron->new( $card ); is( $sip_patron2, undef, "Patron is not valid (anymore)" ); +t::lib::Mocks::mock_preference( 'SIP2ScreenMessageGreeting', "Greetings from Koha. " ); subtest "new tests" => sub { @@ -477,3 +478,20 @@ subtest "Patron messages tests" => sub { $schema->storage->txn_rollback; }; + +subtest "Test SIP2ScreenMessageGreeting" => sub { + plan tests => 2; + $schema->storage->txn_begin; + my $today = output_pref( { dt => dt_from_string(), dateonly => 1 } ); + my $patron = $builder->build_object( { class => 'Koha::Patrons', value => { opacnote => q{} } } ); + my $library = $builder->build_object( { class => 'Koha::Libraries' } ); + + my $sip_patron = C4::SIP::ILS::Patron->new( $patron->cardnumber ); + is( $sip_patron->screen_msg, 'Greetings from Koha. ' ); + + t::lib::Mocks::mock_preference( 'SIP2ScreenMessageGreeting', "Welcome to your local library! " ); + $sip_patron = C4::SIP::ILS::Patron->new( $patron->cardnumber ); + is( $sip_patron->screen_msg, 'Welcome to your local library! ' ); + + $schema->storage->txn_rollback; +}; -- 2.39.2