3de4b27f78a48e851e4d43dd82dfcb2928794401
[srvgit] / misc / maintenance / check_syspref_cache.pl
1 #! /usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19 use Getopt::Long;
20 use Pod::Usage;
21
22 use Koha::Script;
23 use Koha::Caches;
24 use Koha::Config::SysPrefs;
25 use C4::Context;
26
27 =head1 NAME
28
29 check_syspref_cache.pl
30
31 =head1 SYNOPSIS
32
33     perl check_syspref_cache.pl
34
35 =head1 DESCRIPTION
36
37 Catch data inconsistencies in cached sysprefs vs those in the database
38
39 =cut
40
41 my ( $help, $man );
42 GetOptions(
43     'help|?' => \$help,
44     'man'    => \$man,
45 );
46
47 pod2usage(1) if $help;
48 pod2usage( -verbose => 2 ) if $man;
49
50 my $syspref_cache = Koha::Caches->get_instance('syspref');
51 my $prefs = Koha::Config::SysPrefs->search();
52
53 while  (my $pref = $prefs->next) {
54     my $var = lc $pref->variable;
55     my $cached_var = $syspref_cache->get_from_cache("syspref_$var");
56     next unless defined $cached_var; #If not defined in cache we will fetch from DB so this case is OK
57     say sprintf( "%s: value in cache is '%s' and value in db is '%s'", $var, $cached_var, $pref->value )
58       unless $cached_var eq $pref->value;
59 }