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
Created attachment 159154 [details] [review] 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!
Created attachment 160385 [details] [review] 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 <david@davidnind.com>
Created attachment 160386 [details] [review] 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 <david@davidnind.com>
Testing notes (using KTD): 1. To view the current message: 1.1 Install telnet: sudo apt-get install telnet 1.2 telnet 127.0.0.1 6001 1.3 Enter the command: 9300CNkoha|COkoha|CPCPL| 1.4 Enter the command: 63 telnet 127.0.0.1 6001 Trying 127.0.0.1... Connected to 127.0.0.1. Escape character is '^]'. 9300CNkoha|COkoha|CPCPL| 941 63 64 00020231231 214552000000000000000000000000AOkohalibrary|AA1|AEKoha Admin|BLY|BV0|CC5|PCS|PIY|AFGreetings from Koha. | 2. After applying the patches, run a database update: databaseupdate 3. After you change the new system preference (SIP2ScreenMessageGreeting), repeat step 1 - the message received back should show your updated greeting.
Created attachment 165132 [details] [review] 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 <david@davidnind.com> 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 <david@davidnind.com>
Comment on attachment 165132 [details] [review] Bug 35369: SIP default 'Greetings from Koha.' message for patrons should be optional and configurable Review of attachment 165132 [details] [review]: ----------------------------------------------------------------- ::: C4/SIP/ILS/Patron.pm @@ +149,4 @@ > fees => 0, # currently not distinct from fines > recall_overdue => 0, > items_billed => 0, > + screen_msg => process_tt( C4::Context->preference('SIP2ScreenMessageGreeting'), { borrower => $patron, sip_borrower => $kp } ) . $kp->{opacnote} . $fines_msg, How are `borrower => $patron, sip_borrower => $kp` used by process_tt() ? It's not like SIP2ScreenMessageGreeting is supposed to contain TT syntax and might need to use patron info. (I tried to put [% 'test' %] to double check and it doesn't work)
Comment on attachment 165132 [details] [review] Bug 35369: SIP default 'Greetings from Koha.' message for patrons should be optional and configurable Review of attachment 165132 [details] [review]: ----------------------------------------------------------------- ::: t/db_dependent/SIP/Patron.t @@ +481,5 @@ > + > +subtest "Test SIP2ScreenMessageGreeting" => sub { > + plan tests => 2; > + $schema->storage->txn_begin; > + my $today = output_pref( { dt => dt_from_string(), dateonly => 1 } ); unused variable? @@ +483,5 @@ > + 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' } ); same?
It seems the default value has a space at the end for formatting reasons when there are multiple messages. Which becomes unreliable now that the message is configurable. So without a space in the syspref and with an account expired I get: «Greetings from Koha.Your account has expired» But with a negative account balance it's «Greetings from Koha. -- Patron blocked by fines -- Patron owes 199.00» And with a message for OPAC, its become: «Greetings from Koha. Messages for you: 09/25/2024: Stop putting the books in the wrong shelves!» Without the patch there were two spaces. So it's a mess >_< To avoid just swapping a formatting issue with another and move to a more consistent behavior, should we add " -- " to these lines?: $kp->{opacnote} .= "Your account has expired as of $dateexpiry"; [...] $kp->{opacnote} .= "Your card will expire on $dateexpiry"; https://git.koha-community.org/Koha-community/Koha/src/branch/main/C4/SIP/ILS/Patron.pm#L83 I can do a follow-up. I just need a 2nd look at the idea.
Created attachment 180031 [details] [review] 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! 9) Set SIP2ScreenMessageGreeting to: [% "test" %] -- [% borrower.surname %] 10) Confirm the TT is interpreted to a message like: AFtest surname
(In reply to Victor Grousset/tuxayo from comment #8) > It seems the default value has a space at the end for formatting reasons > when there are multiple messages. Which becomes unreliable now that the > message is configurable. > > So without a space in the syspref and with an account expired I get: > «Greetings from Koha.Your account has expired» > > But with a negative account balance it's > «Greetings from Koha. -- Patron blocked by fines -- Patron owes 199.00» > > And with a message for OPAC, its become: > «Greetings from Koha. Messages for you: 09/25/2024: Stop putting the books > in the wrong shelves!» > > Without the patch there were two spaces. So it's a mess >_< I now added a space if the greeting is defined > > To avoid just swapping a formatting issue with another and move to a more > consistent behavior, should we add " -- " to these lines?: > > $kp->{opacnote} .= "Your account has expired as of $dateexpiry"; > [...] > $kp->{opacnote} .= "Your card will expire on $dateexpiry"; > https://git.koha-community.org/Koha-community/Koha/src/branch/main/C4/SIP/ > ILS/Patron.pm#L83 > > I can do a follow-up. I just need a 2nd look at the idea. I think this is another bug :-) (In reply to Victor Grousset/tuxayo from comment #6) > It's not like SIP2ScreenMessageGreeting is supposed to contain TT syntax and > might need to use patron info. (I tried to put [% 'test' %] to double check > and it doesn't work) It should, it worked for me, added to test plan (In reply to Victor Grousset/tuxayo from comment #7) > unused variable? Removed one, the other is used from what I see
Created attachment 180128 [details] [review] 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! 9) Set SIP2ScreenMessageGreeting to: [% "test" %] -- [% borrower.surname %] 10) Confirm the TT is interpreted to a message like: AFtest surname Signed-off-by: David Nind <david@davidnind.com>