Bug 14298: DBRev 3.21.00.027
authorTomas Cohen Arazi <tomascohen@theke.io>
Fri, 25 Sep 2015 14:20:13 +0000 (11:20 -0300)
committerTomas Cohen Arazi <tomascohen@theke.io>
Fri, 25 Sep 2015 14:20:13 +0000 (11:20 -0300)
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Koha.pm
installer/data/mysql/atomicupdate/bug_14298_add_permissions_circulate_self_checkout.perl [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 75b17ce..92197e4 100644 (file)
--- a/Koha.pm
+++ b/Koha.pm
@@ -29,7 +29,7 @@ use vars qw{ $VERSION };
 # - #4 : the developer version. The 4th number is the database subversion.
 #        used by developers when the database changes. updatedatabase take care of the changes itself
 #        and is automatically called by Auth.pm when needed.
-$VERSION = "3.21.00.026";
+$VERSION = "3.21.00.027";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_14298_add_permissions_circulate_self_checkout.perl b/installer/data/mysql/atomicupdate/bug_14298_add_permissions_circulate_self_checkout.perl
deleted file mode 100644 (file)
index 9ec23a0..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-use Modern::Perl;
-
-use C4::Context;
-my $dbh = C4::Context->dbh;
-
-$dbh->do(q|
-    INSERT INTO permissions (module_bit, code, description)
-    VALUES (1, 'self_checkout', 'Perform self checkout at the OPAC. It should be used for the patron matching the AutoSelfCheckID')
-|);
-
-my $AutoSelfCheckID = C4::Context->preference('AutoSelfCheckID');
-
-$dbh->do(q|
-    UPDATE borrowers
-    SET flags=0
-    WHERE userid=?
-|, undef, $AutoSelfCheckID);
-
-$dbh->do(q|
-    DELETE FROM user_permissions
-    WHERE borrowernumber=(SELECT borrowernumber FROM borrowers WHERE userid=?)
-|, undef, $AutoSelfCheckID);
-
-$dbh->do(q|
-    INSERT INTO user_permissions(borrowernumber, module_bit, code)
-    SELECT borrowernumber, 1, 'self_checkout' FROM borrowers WHERE userid=?
-|, undef, $AutoSelfCheckID);
index 6d02ff1..090fe94 100755 (executable)
@@ -10868,6 +10868,34 @@ if ( CheckVersion($DBversion) ) {
     SetVersion($DBversion);
 }
 
+$DBversion = "3.21.00.027";
+if ( CheckVersion($DBversion) ) {
+    $dbh->do(q|
+        INSERT INTO permissions (module_bit, code, description)
+        VALUES (1, 'self_checkout', 'Perform self checkout at the OPAC. It should be used for the patron matching the AutoSelfCheckID')
+    |);
+
+    my $AutoSelfCheckID = C4::Context->preference('AutoSelfCheckID');
+
+    $dbh->do(q|
+        UPDATE borrowers
+        SET flags=0
+        WHERE userid=?
+    |, undef, $AutoSelfCheckID);
+
+    $dbh->do(q|
+        DELETE FROM user_permissions
+        WHERE borrowernumber=(SELECT borrowernumber FROM borrowers WHERE userid=?)
+    |, undef, $AutoSelfCheckID);
+
+    $dbh->do(q|
+        INSERT INTO user_permissions(borrowernumber, module_bit, code)
+        SELECT borrowernumber, 1, 'self_checkout' FROM borrowers WHERE userid=?
+    |, undef, $AutoSelfCheckID);
+    print "Upgrade to $DBversion done (Bug 14298: AutoSelfCheckID user should only be able to access SCO)\n";
+    SetVersion($DBversion);
+}
+
 # DEVELOPER PROCESS, search for anything to execute in the db_update directory
 # SEE bug 13068
 # if there is anything in the atomicupdate, read and execute it.