Bugzilla – Attachment 163735 Details for
Bug 35250
Eliminate circular dependencies caused by C4::Context
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 35250: modify scripts calling C4::Context::set_preference
Bug-35250-modify-scripts-calling-C4Contextsetprefe.patch (text/plain), 10.46 KB, created by
Blou
on 2024-03-22 18:24:05 UTC
(
hide
)
Description:
Bug 35250: modify scripts calling C4::Context::set_preference
Filename:
MIME Type:
Creator:
Blou
Created:
2024-03-22 18:24:05 UTC
Size:
10.46 KB
patch
obsolete
>From f7f64b103bd389e5f57579cac69150e21e84b43b Mon Sep 17 00:00:00 2001 >From: Blou <blou@inlibro.com> >Date: Fri, 27 Oct 2023 17:23:06 -0400 >Subject: [PATCH] Bug 35250: modify scripts calling C4::Context::set_preference > >All the scripts using the call C4::Context->set_preference are edited to >now use Koha::Config::SysPrefs->set_preference instead of C4::Context->set_preference() > >One call to delete_preference moved as well >--- > C4/UsageStats.pm | 4 ++-- > Koha/SearchEngine/Elasticsearch/Indexer.pm | 2 +- > admin/preferences.pl | 2 +- > admin/share_content.pl | 10 +++++----- > admin/systempreferences.pl | 7 ++++--- > admin/usage_statistics.pl | 14 +++++++------- > installer/data/mysql/updatedatabase.pl | 2 +- > misc/admin/koha-preferences | 2 +- > misc/cronjobs/share_usage_with_koha_community.pl | 2 +- > svc/config/systempreferences | 4 ++-- > tools/automatic_item_modification_by_age.pl | 2 +- > 11 files changed, 26 insertions(+), 25 deletions(-) > >diff --git a/C4/UsageStats.pm b/C4/UsageStats.pm >index 56877dd8af..8b10039918 100644 >--- a/C4/UsageStats.pm >+++ b/C4/UsageStats.pm >@@ -115,10 +115,10 @@ sub ReportToCommunity { > ); > my $content = decode_json( $res->decoded_content ); > if ( $content->{koha_id} ) { >- C4::Context->set_preference( 'UsageStatsID', $content->{koha_id} ); >+ Koha::Config::SysPrefs->set_preference( 'UsageStatsID', $content->{koha_id} ); > } > if ( $content->{id} ) { >- C4::Context->set_preference( 'UsageStatsPublicID', $content->{id} ); >+ Koha::Config::SysPrefs->set_preference( 'UsageStatsPublicID', $content->{id} ); > } > } > >diff --git a/Koha/SearchEngine/Elasticsearch/Indexer.pm b/Koha/SearchEngine/Elasticsearch/Indexer.pm >index 1f914b8a65..8dba7c9cdd 100644 >--- a/Koha/SearchEngine/Elasticsearch/Indexer.pm >+++ b/Koha/SearchEngine/Elasticsearch/Indexer.pm >@@ -245,7 +245,7 @@ sub index_status { > ) { > Koha::Exception->throw("Invalid index status: $status"); > } >- C4::Context->set_preference($key, $status); >+ Koha::Config::SysPrefs->set_preference($key, $status); > return $status; > } > else { >diff --git a/admin/preferences.pl b/admin/preferences.pl >index 63f495c771..b966366868 100755 >--- a/admin/preferences.pl >+++ b/admin/preferences.pl >@@ -367,7 +367,7 @@ if ( $op eq 'cud-save' ) { > > my $value = join( ',', $input->param( $param ) ); > >- C4::Context->set_preference( $pref, $value ); >+ Koha::Config::SysPrefs->set_preference( $pref, $value ); > } > > print $input->redirect( '/cgi-bin/koha/admin/preferences.pl?tab=' . $tab ); >diff --git a/admin/share_content.pl b/admin/share_content.pl >index e1f927ae38..fb7e5926cc 100755 >--- a/admin/share_content.pl >+++ b/admin/share_content.pl >@@ -50,17 +50,17 @@ if ( $op eq 'cud-save' ) { > my $auto_share = $query->param('autosharewithmana') || q{}; > my $mana = $query->param('mana'); > >- C4::Context->set_preference('Mana', $mana); >+ Koha::Config::SysPrefs->set_preference('Mana', $mana); > > if ( $auto_share ne '' ) { >- C4::Context->set_preference('AutoShareWithMana', 'subscription'); >+ Koha::Config::SysPrefs->set_preference('AutoShareWithMana', 'subscription'); > } else { >- C4::Context->set_preference('AutoShareWithMana', ''); >+ Koha::Config::SysPrefs->set_preference('AutoShareWithMana', ''); > } > } > > if ( $op eq 'cud-reset' ) { >- C4::Context->set_preference('ManaToken', ''); >+ Koha::Config::SysPrefs->set_preference('ManaToken', ''); > } > > if ( $op eq 'cud-send' && not $bad_url ) { >@@ -78,7 +78,7 @@ if ( $op eq 'cud-send' && not $bad_url ) { > $template->param( result => $result ); > > if ( $result->{code} eq '201' && $result->{token} ) { >- C4::Context->set_preference('ManaToken', $result->{token}); >+ Koha::Config::SysPrefs->set_preference('ManaToken', $result->{token}); > } > } > >diff --git a/admin/systempreferences.pl b/admin/systempreferences.pl >index 609a06eda4..2931aeaf9e 100755 >--- a/admin/systempreferences.pl >+++ b/admin/systempreferences.pl >@@ -51,6 +51,7 @@ use C4::Languages qw( getTranslatedLanguages ); > use C4::ClassSource qw( GetClassSources GetClassSource ); > use C4::Output qw( output_html_with_http_headers output_and_exit_if_error ); > use YAML::XS; >+use Koha::Config::Sysprefs; > > my %tabsysprefs; #we do no longer need to keep track of a tab per pref (yaml) > >@@ -274,7 +275,7 @@ if ( $op eq 'update_and_reedit' ) { > } > } > my $variable = $input->param('variable'); >- C4::Context->set_preference($variable, $value); >+ Koha::Config::SysPrefs->set_preference($variable, $value); > } > > ################## ADD_FORM ################################## >@@ -334,7 +335,7 @@ if ( $op eq 'add_form' ) { > $value = encode_base64($value); > } > >- C4::Context->set_preference( $variable, $value, $expl, $type, $options ); >+ Koha::Config::SysPrefs->set_preference( $variable, $value, $expl, $type, $options ); > print $input->redirect("/cgi-bin/koha/admin/systempreferences.pl?tab="); > exit; > ################## DELETE_CONFIRM ################################## >@@ -351,7 +352,7 @@ if ( $op eq 'add_form' ) { > # called by delete_confirm, used to effectively confirm deletion of data in DB > } elsif ( $op eq 'cud-delete_confirmed' ) { > output_and_exit_if_error($input, $cookie, $template, { check => 'csrf_token' }); >- C4::Context->delete_preference($searchfield); >+ Koha::Config::SysPrefs->delete_preference($searchfield); > # END $OP eq DELETE_CONFIRMED > ################## DEFAULT ################################## > } else { # DEFAULT >diff --git a/admin/usage_statistics.pl b/admin/usage_statistics.pl >index 5288d6327d..7852c01d62 100755 >--- a/admin/usage_statistics.pl >+++ b/admin/usage_statistics.pl >@@ -43,13 +43,13 @@ if ( $op eq 'cud-update' ) { > my $UsageStatsLibraryUrl = $query->param('UsageStatsLibraryUrl'); > my $UsageStatsLibrariesInfo = $query->param('UsageStatsLibrariesInfo'); > my $UsageStatsGeolocation = $query->param('UsageStatsGeolocation'); >- C4::Context->set_preference('UsageStats', $UsageStats); >- C4::Context->set_preference('UsageStatsCountry', $UsageStatsCountry); >- C4::Context->set_preference('UsageStatsLibraryName', $UsageStatsLibraryName); >- C4::Context->set_preference('UsageStatsLibraryType', $UsageStatsLibraryType); >- C4::Context->set_preference('UsageStatsLibraryUrl', $UsageStatsLibraryUrl); >- C4::Context->set_preference('UsageStatsLibrariesInfo', $UsageStatsLibrariesInfo); >- C4::Context->set_preference('UsageStatsGeolocation', $UsageStatsGeolocation); >+ Koha::Config::SysPrefs->set_preference('UsageStats', $UsageStats); >+ Koha::Config::SysPrefs->set_preference('UsageStatsCountry', $UsageStatsCountry); >+ Koha::Config::SysPrefs->set_preference('UsageStatsLibraryName', $UsageStatsLibraryName); >+ Koha::Config::SysPrefs->set_preference('UsageStatsLibraryType', $UsageStatsLibraryType); >+ Koha::Config::SysPrefs->set_preference('UsageStatsLibraryUrl', $UsageStatsLibraryUrl); >+ Koha::Config::SysPrefs->set_preference('UsageStatsLibrariesInfo', $UsageStatsLibrariesInfo); >+ Koha::Config::SysPrefs->set_preference('UsageStatsGeolocation', $UsageStatsGeolocation); > my $libraries = Koha::Libraries->search; > while ( my $library = $libraries->next ) { > if ( my $latlng = $query->param('geolocation_' . $library->branchcode) ) { >diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl >index b8f2babbdd..fabd50619e 100755 >--- a/installer/data/mysql/updatedatabase.pl >+++ b/installer/data/mysql/updatedatabase.pl >@@ -9651,7 +9651,7 @@ if ( CheckVersion($DBversion) ) { > WHERE variable = 'UsageStatsLibraryType' > "); > if ( C4::Context->preference("UsageStatsLibraryType") eq "university" ) { >- C4::Context->set_preference("UsageStatsLibraryType", "academic") >+ Koha::Config::SysPrefs->set_preference("UsageStatsLibraryType", "academic") > } > print "Upgrade to $DBversion done (Bug 13436: Add more options to UsageStatsLibraryType)\n"; > SetVersion ($DBversion); >diff --git a/misc/admin/koha-preferences b/misc/admin/koha-preferences >index 5c07c2b8a7..f9c66a7556 100755 >--- a/misc/admin/koha-preferences >+++ b/misc/admin/koha-preferences >@@ -64,7 +64,7 @@ sub _set_preference { > $value = 0; > } > >- C4::Context->set_preference( $preference->{variable}, $value ); >+ Koha::Config::SysPrefs->set_preference( $preference->{variable}, $value ); > } > > sub GetPreferences { >diff --git a/misc/cronjobs/share_usage_with_koha_community.pl b/misc/cronjobs/share_usage_with_koha_community.pl >index 671bbe1a1a..28879fc772 100755 >--- a/misc/cronjobs/share_usage_with_koha_community.pl >+++ b/misc/cronjobs/share_usage_with_koha_community.pl >@@ -46,7 +46,7 @@ if ($need_update) { > say "Data need to be updated" if $verbose; > my $report = C4::UsageStats::BuildReport(); > C4::UsageStats::ReportToCommunity($report); >- C4::Context->set_preference( 'UsageStatsLastUpdateTime', >+ Koha::Config::SysPrefs->set_preference( 'UsageStatsLastUpdateTime', > strftime( "%s", localtime ) ); > } > elsif ($verbose) { >diff --git a/svc/config/systempreferences b/svc/config/systempreferences >index f3f1494a90..b3db3f94c0 100755 >--- a/svc/config/systempreferences >+++ b/svc/config/systempreferences >@@ -66,7 +66,7 @@ sub set_preference { > my ( $preference ) = @_; > > my $value = join( ',', $query->param( 'value' ) ); >- C4::Context->set_preference( $preference, $value ); >+ Koha::Config::SysPrefs->set_preference( $preference, $value ); > > C4::Service->return_success( $response ); > } >@@ -131,7 +131,7 @@ sub set_preferences { > > my $value = join( ',', $query->multi_param( $param ) ); > >- C4::Context->set_preference( $pref, $value ); >+ Koha::Config::SysPrefs->set_preference( $pref, $value ); > } > > C4::Service->return_success( $response ); >diff --git a/tools/automatic_item_modification_by_age.pl b/tools/automatic_item_modification_by_age.pl >index 59c37712b2..bd69cb7631 100755 >--- a/tools/automatic_item_modification_by_age.pl >+++ b/tools/automatic_item_modification_by_age.pl >@@ -94,7 +94,7 @@ if ( $op eq 'cud-update' ) { > push @rules, $rule; > } > my $syspref_content = to_json( \@rules ); >- C4::Context->set_preference($syspref_name, $syspref_content); >+ Koha::Config::SysPrefs->set_preference($syspref_name, $syspref_content); > > $op = 'cud-show'; > } >-- >2.34.1
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 35250
:
158361
|
158362
|
158363
|
158364
|
159735
|
159736
|
159737
|
159738
|
163733
|
163734
| 163735 |
163736