Bugzilla – Attachment 166050 Details for
Bug 36503
Add a plugin hook to modify patrons after authentication
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 36503: (follow-up) Use the call method of Koha::Plugins
Bug-36503-follow-up-Use-the-call-method-of-KohaPlu.patch (text/plain), 2.29 KB, created by
Raphael Straub
on 2024-05-02 10:12:08 UTC
(
hide
)
Description:
Bug 36503: (follow-up) Use the call method of Koha::Plugins
Filename:
MIME Type:
Creator:
Raphael Straub
Created:
2024-05-02 10:12:08 UTC
Size:
2.29 KB
patch
obsolete
>From ef7bde008f7127d6be06398ad26d98c631df8ac9 Mon Sep 17 00:00:00 2001 >From: Raphael Straub <raphael.straub@kit.edu> >Date: Thu, 2 May 2024 09:19:32 +0000 >Subject: [PATCH] Bug 36503: (follow-up) Use the call method of Koha::Plugins > >This removes the option to call multiple plugins in a prioritized order, >but this is not needed if there is only one plugin that uses this hook. > >Sponsored-by: Karlsruhe Institute of Technology (KIT) >--- > Koha/Auth/Client.pm | 37 +++++++++++++------------------------ > 1 file changed, 13 insertions(+), 24 deletions(-) > >diff --git a/Koha/Auth/Client.pm b/Koha/Auth/Client.pm >index d51f400bba..cf6d436b0e 100644 >--- a/Koha/Auth/Client.pm >+++ b/Koha/Auth/Client.pm >@@ -68,30 +68,19 @@ sub get_user { > > my $domain = $self->has_valid_domain_config({ provider => $provider, email => $mapped_data->{email}, interface => $interface}); > >- # Call the plugin hook "auth_client_get_user" of all plugins in >- # ascending priority. >- if ( C4::Context->config('enable_plugins') ) { >- my @plugins = Koha::Plugins->new()->GetPlugins( >- { >- method => 'auth_client_get_user', >- } >- ); >- @plugins = sort { $a->retrieve_data('priority') <=> $b->retrieve_data('priority') } @plugins; >- my $args = { >- provider => $provider, >- data => $data, >- config => $config, >- mapped_data => $mapped_data, >- patron => $patron, >- domain => $domain, >- }; >- foreach my $plugin (@plugins) { >- $plugin->auth_client_get_user($args); >- } >- $mapped_data = $args->{'mapped_data'}; >- $patron = $args->{'patron'}; >- $domain = $args->{'domain'}; >- } >+ # Call the plugin hook "auth_client_get_user" of all plugins. >+ my $args = { >+ provider => $provider, >+ data => $data, >+ config => $config, >+ mapped_data => $mapped_data, >+ patron => $patron, >+ domain => $domain, >+ }; >+ Koha::Plugins->call('auth_client_get_user', $args); >+ $mapped_data = $args->{'mapped_data'}; >+ $patron = $args->{'patron'}; >+ $domain = $args->{'domain'}; > > $patron->set($mapped_data)->store if $patron && $domain->update_on_auth; > >-- >2.39.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 36503
:
164379
|
164628
|
164893
|
164894
|
165466
|
166050
|
166111
|
166112
|
166113
|
166114
|
166115
|
166116
|
166458
|
166459
|
166460
|
166461
|
166462
|
166531
|
166532