Bug 22008: DBRev 18.12.00.031
[koha.git] / misc / maintenance / fix_tags_weight.pl
1 #!/usr/bin/perl
2
3 # Copyright 2018 Theke Solutions
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21
22 use C4::Context;
23 use C4::Tags;
24
25 use Koha::Database;
26 use Koha::Tags;
27 use Koha::Tags::Approvals;
28 use Koha::Tags::Indexes;
29
30 use Getopt::Long;
31 use Pod::Usage;
32
33 =head1 NAME
34
35 fix_tags_weight.pl - Fix weight for tags
36
37 =head1 SYNOPSIS
38
39 fix_tags_weight.pl [ --verbose or -v ] [ --help or -h ]
40
41  Options:
42    --help or -h         Brief usage message
43    --verbose or -v      Be verbose
44
45 =head1 DESCRIPTION
46
47 This script fixes the calculated weights for the tags introduced by patrons.
48
49 =over 8
50
51 =item B<--help>
52
53 Prints a brief usage message and exits.
54
55 =item B<--verbose>
56
57 Prints information about the current weight, and the new one for each term/biblionumber.
58
59 =back
60
61 =cut
62
63 binmode( STDOUT, ":encoding(UTF-8)" );
64
65 my $help;
66 my $verbose;
67
68 GetOptions(
69     'help|h'    => \$help,
70     'verbose|v' => \$verbose
71 ) or pod2usage(2);
72
73 pod2usage(1) if $help;
74
75 fix_tags_approval($verbose);
76 fix_tags_index( $verbose );
77
78 sub fix_tags_approval {
79
80     my ($verbose) = @_;
81
82     print "Fix tags_approval\n=================\n" if $verbose;
83
84     my $dbh = C4::Context->dbh;
85     # Search the terms in tags_all that don't exist in tags_approval
86     my $sth = $dbh->prepare(
87         q{
88         SELECT term
89         FROM (
90             SELECT DISTINCT(tags_all.term) AS term, tags_approval.term AS approval FROM tags_all
91             LEFT JOIN tags_approval
92             ON (tags_all.term=tags_approval.term)) a
93         WHERE approval IS NULL;
94     }
95     );
96     $sth->execute();
97     my $approved = C4::Context->preference('TagsModeration') ? 0 : 1;
98
99     # Add missing terms to tags_approval
100     while ( my $row = $sth->fetchrow_hashref ) {
101         my $term = $row->{term};
102         C4::Tags::add_tag_approval( $term, 0, $approved );
103         print "Added => $term\n";
104     }
105
106     my $approvals = Koha::Tags::Approvals->search;
107     # Recalculate weight_total for all tags_approval rows
108     while ( my $approval = $approvals->next ) {
109         my $count = Koha::Tags->search( { term => $approval->term } )->count;
110         print $approval->term . "\t|\t" . $approval->weight_total . "\t=>\t" . $count . "\n"
111             if $verbose;
112         $approval->weight_total($count)->store;
113     }
114 }
115
116 sub fix_tags_index {
117
118     my ($verbose) = @_;
119     my $indexes = Koha::Tags::Indexes->search;
120
121     print "Fix tags_index\n==============\n" if $verbose;
122
123     while ( my $index = $indexes->next ) {
124         my $count
125             = Koha::Tags->search( { term => $index->term, biblionumber => $index->biblionumber } )
126             ->count;
127         print $index->term . "/"
128             . $index->biblionumber . "\t|\t"
129             . $index->weight
130             . "\t=>\t"
131             . $count . "\n"
132             if $verbose;
133         $index->weight($count)->store;
134     }
135 }
136
137 1;