18be7926e6ff2a45d509b27ebaeb2d1df7fa87d9
[koha.git] / 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 qw( GetOptions );
20 use Pod::Usage qw( pod2usage );
21 use Encode qw( encode_utf8 );
22
23 use Koha::Script;
24 use Koha::Caches;
25 use Koha::Config::SysPrefs;
26 use C4::Context;
27
28 =head1 NAME
29
30 check_syspref_cache.pl
31
32 =head1 SYNOPSIS
33
34     perl check_syspref_cache.pl
35
36 =head1 DESCRIPTION
37
38 Catch data inconsistencies in cached sysprefs vs those in the database
39
40 =cut
41
42 my ( $help, $man );
43 GetOptions(
44     'help|?' => \$help,
45     'man'    => \$man,
46 );
47
48 pod2usage(1) if $help;
49 pod2usage( -verbose => 2 ) if $man;
50
51 my $syspref_cache = Koha::Caches->get_instance('syspref');
52 my $prefs = Koha::Config::SysPrefs->search();
53
54 while  (my $pref = $prefs->next) {
55     my $var = lc $pref->variable;
56     my $cached_var = $syspref_cache->get_from_cache("syspref_$var");
57     next unless defined $cached_var; #If not defined in cache we will fetch from DB so this case is OK
58     say encode_utf8( sprintf( "%s: value in cache is '%s' and value in db is '%s'", $var, $cached_var, $pref->value ) )
59       unless $cached_var eq $pref->value;
60 }