Bugzilla – Attachment 83726 Details for
Bug 22084
Plugin upgrade method and database plugin version storage will never be triggered for existing installs
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22084: Plugin upgrade method and database plugin version storage will never be triggered for existing installs
Bug-22084-Plugin-upgrade-method-and-database-plugi.patch (text/plain), 2.98 KB, created by
Kyle M Hall (khall)
on 2019-01-08 18:32:37 UTC
(
hide
)
Description:
Bug 22084: Plugin upgrade method and database plugin version storage will never be triggered for existing installs
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2019-01-08 18:32:37 UTC
Size:
2.98 KB
patch
obsolete
>From 1dfa43516e767a104f4251679fde8aeef7baded4 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Tue, 8 Jan 2019 13:10:53 -0500 >Subject: [PATCH] Bug 22084: Plugin upgrade method and database plugin version > storage will never be triggered for existing installs > >If an existing plugin begins using the upgrade() method, it will never actually get triggered because the installation has already occurred and no database plugin version was stored at the time. Without that database version, the upgrade method will never be triggered. > >In addition, if the plugin has no upgrade method, the installed version is never updated in the database! > >Lastly, when an upgrade succeeds it prints a warning that the upgrade failed. > >Test Plan: >1) Install an older version of the Kitchen sink plugin: > * https://github.com/bywatersolutions/koha-plugin-kitchen-sink/releases/download/v2.1.0/koha-plugin-kitchen-sink-v2.1.0.kpz >2) Delete the "__INSTALLED_VERSION__" key, and the "last_upgraded" key from plugin_data for this plugin, to simulate having installed from an earlier version of Koha >3) Upgrade to the latest version of the Kitchen sink plugin: > * https://github.com/bywatersolutions/koha-plugin-kitchen-sink/releases/download/v2.1.22/koha-plugin-kitchen-sink-v2.1.22.kpz >4) Note "__INSTALLED_VERSION__" still doesn't exist for the plugin, in the plugin_data table >5) Apply this patch >6) Restart all the things >7) Browse to the Kitchen sink configuration page, this should trigger the upgrade method >8) Note the "__INSTALLED_VERSION__" and "last_upgraded" keys exist in plugin_data for the Kitchen Sink plugin >--- > Koha/Plugins/Base.pm | 7 +++++-- > 1 file changed, 5 insertions(+), 2 deletions(-) > >diff --git a/Koha/Plugins/Base.pm b/Koha/Plugins/Base.pm >index ed87253a02..2cebe636d9 100644 >--- a/Koha/Plugins/Base.pm >+++ b/Koha/Plugins/Base.pm >@@ -45,7 +45,7 @@ sub new { > my $self = bless( $args, $class ); > > my $plugin_version = $self->get_metadata->{version}; >- my $database_version = $self->retrieve_data('__INSTALLED_VERSION__'); >+ my $database_version = $self->retrieve_data('__INSTALLED_VERSION__') || 0; > > ## Run the installation method if it exists and hasn't been run before > if ( $self->can('install') && !$self->retrieve_data('__INSTALLED__') ) { >@@ -57,13 +57,16 @@ sub new { > } else { > warn "Plugin $class failed during installation!"; > } >- } elsif ( $self->can('upgrade') && $plugin_version && $database_version ) { >+ } elsif ( $self->can('upgrade') ) { > if ( _version_compare( $plugin_version, $database_version ) == 1 ) { > if ( $self->upgrade() ) { > $self->store_data({ '__INSTALLED_VERSION__' => $plugin_version }); >+ } else { > warn "Plugin $class failed during upgrade!"; > } > } >+ } elsif ( $plugin_version ne $database_version ) { >+ $self->store_data({ '__INSTALLED_VERSION__' => $plugin_version }); > } > > return $self; >-- >2.17.2 (Apple Git-113)
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 22084
:
83726
|
83734
|
83735
|
83740
|
83741
|
85384
|
85385