Bug 8014 - On the patron entry form hide "restricted until" field if "Restricted...
[koha.git] / misc / link_bibs_to_authorities.pl
blobb35a00e837466a5133b6bfca6d66e5c8c65d8cdc
1 #!/usr/bin/perl
3 use strict;
4 use warnings;
6 BEGIN {
8 # find Koha's Perl modules
9 # test carefully before changing this
10 use FindBin;
11 eval { require "$FindBin::Bin/kohalib.pl" };
14 use C4::Context;
15 use C4::Biblio;
16 use Getopt::Long;
17 use Pod::Usage;
18 use Data::Dumper;
19 use Time::HiRes qw/time/;
20 use POSIX qw/strftime ceil/;
22 sub usage {
23 pod2usage( -verbose => 2 );
24 exit;
27 $| = 1;
29 # command-line parameters
30 my $verbose = 0;
31 my $link_report = 0;
32 my $test_only = 0;
33 my $want_help = 0;
34 my $auth_limit;
35 my $bib_limit;
36 my $commit = 100;
38 my $result = GetOptions(
39 'v|verbose' => \$verbose,
40 't|test' => \$test_only,
41 'l|link-report' => \$link_report,
42 'a|auth-limit=s' => \$auth_limit,
43 'b|bib-limit=s' => \$bib_limit,
44 'c|commit=i' => \$commit,
45 'h|help' => \$want_help
48 binmode( STDOUT, ":utf8" );
50 if ( not $result or $want_help ) {
51 usage();
54 my $linker_module =
55 "C4::Linker::" . ( C4::Context->preference("LinkerModule") || 'Default' );
56 eval { eval "require $linker_module"; };
57 if ($@) {
58 $linker_module = 'C4::Linker::Default';
59 eval "require $linker_module";
61 if ($@) {
62 die "Unable to load linker module. Aborting.";
65 my $linker = $linker_module->new(
67 'auth_limit' => $auth_limit,
68 'options' => C4::Context->preference("LinkerOptions")
72 my $num_bibs_processed = 0;
73 my $num_bibs_modified = 0;
74 my $num_bad_bibs = 0;
75 my %unlinked_headings;
76 my %linked_headings;
77 my %fuzzy_headings;
78 my $dbh = C4::Context->dbh;
79 $dbh->{AutoCommit} = 0;
80 process_bibs( $linker, $bib_limit, $auth_limit, $commit );
81 $dbh->commit();
83 exit 0;
85 sub process_bibs {
86 my ( $linker, $bib_limit, $auth_limit, $commit ) = @_;
87 my $bib_where = '';
88 my $starttime = time();
89 if ($bib_limit) {
90 $bib_where = "WHERE $bib_limit";
92 my $sql =
93 "SELECT biblionumber FROM biblio $bib_where ORDER BY biblionumber ASC";
94 my $sth = $dbh->prepare($sql);
95 $sth->execute();
96 while ( my ($biblionumber) = $sth->fetchrow_array() ) {
97 $num_bibs_processed++;
98 process_bib( $linker, $biblionumber );
100 if ( not $test_only and ( $num_bibs_processed % $commit ) == 0 ) {
101 print_progress_and_commit($num_bibs_processed);
105 if ( not $test_only ) {
106 $dbh->commit;
109 my $headings_linked = 0;
110 my $headings_unlinked = 0;
111 my $headings_fuzzy = 0;
112 for ( values %linked_headings ) { $headings_linked += $_; }
113 for ( values %unlinked_headings ) { $headings_unlinked += $_; }
114 for ( values %fuzzy_headings ) { $headings_fuzzy += $_; }
116 my $endtime = time();
117 my $totaltime = ceil (($endtime - $starttime) * 1000);
118 $starttime = strftime('%D %T', localtime($starttime));
119 $endtime = strftime('%D %T', localtime($endtime));
121 my $summary = <<_SUMMARY_;
123 Bib authority heading linking report
124 =======================================================
125 Linker module: $linker_module
126 Run started at: $starttime
127 Run ended at: $endtime
128 Total run time: $totaltime ms
129 Number of bibs checked: $num_bibs_processed
130 Number of bibs modified: $num_bibs_modified
131 Number of bibs with errors: $num_bad_bibs
132 Number of headings linked: $headings_linked
133 Number of headings unlinked: $headings_unlinked
134 Number of headings fuzzily linked: $headings_fuzzy
135 _SUMMARY_
136 $summary .= "\n**** Ran in test mode only ****\n" if $test_only;
137 print $summary;
139 if ($link_report) {
140 my @keys;
141 print <<_LINKED_HEADER_;
143 Linked headings (from most frequent to least):
144 -------------------------------------------------------
146 _LINKED_HEADER_
148 @keys = sort {
149 $linked_headings{$b} <=> $linked_headings{$a} or "\L$a" cmp "\L$b"
150 } keys %linked_headings;
151 foreach my $key (@keys) {
152 print "$key:\t" . $linked_headings{$key} . " occurrences\n";
155 print <<_UNLINKED_HEADER_;
157 Unlinked headings (from most frequent to least):
158 -------------------------------------------------------
160 _UNLINKED_HEADER_
162 @keys = sort {
163 $unlinked_headings{$b} <=> $unlinked_headings{$a}
164 or "\L$a" cmp "\L$b"
165 } keys %unlinked_headings;
166 foreach my $key (@keys) {
167 print "$key:\t" . $unlinked_headings{$key} . " occurrences\n";
170 print <<_FUZZY_HEADER_;
172 Fuzzily-matched headings (from most frequent to least):
173 -------------------------------------------------------
175 _FUZZY_HEADER_
177 @keys = sort {
178 $fuzzy_headings{$b} <=> $fuzzy_headings{$a} or "\L$a" cmp "\L$b"
179 } keys %fuzzy_headings;
180 foreach my $key (@keys) {
181 print "$key:\t" . $fuzzy_headings{$key} . " occurrences\n";
183 print $summary;
187 sub process_bib {
188 my $linker = shift;
189 my $biblionumber = shift;
191 my $bib = GetMarcBiblio($biblionumber);
192 unless ( defined $bib ) {
193 print
194 "\nCould not retrieve bib $biblionumber from the database - record is corrupt.\n";
195 $num_bad_bibs++;
196 return;
199 my ( $headings_changed, $results ) =
200 LinkBibHeadingsToAuthorities( $linker, $bib,
201 GetFrameworkCode($biblionumber) );
202 foreach my $key ( keys %{ $results->{'unlinked'} } ) {
203 $unlinked_headings{$key} += $results->{'unlinked'}->{$key};
205 foreach my $key ( keys %{ $results->{'linked'} } ) {
206 $linked_headings{$key} += $results->{'linked'}->{$key};
208 foreach my $key ( keys %{ $results->{'fuzzy'} } ) {
209 $fuzzy_headings{$key} += $results->{'fuzzy'}->{$key};
212 if ($headings_changed) {
213 if ($verbose) {
214 my $title = substr( $bib->title, 0, 20 );
215 print
216 "Bib $biblionumber ($title): $headings_changed headings changed\n";
218 if ( not $test_only ) {
219 ModBiblio( $bib, $biblionumber, GetFrameworkCode($biblionumber) );
220 $num_bibs_modified++;
225 sub print_progress_and_commit {
226 my $recs = shift;
227 $dbh->commit();
228 print "... processed $recs records\n";
231 =head1 NAME
233 link_bibs_to_authorities.pl
235 =head1 SYNOPSIS
237 link_bibs_to_authorities.pl
238 link_bibs_to_authorities.pl -v
239 link_bibs_to_authorities.pl -l
240 link_bibs_to_authorities.pl --commit=1000
241 link_bibs_to_authorities.pl --auth-limit=STRING
242 link_bibs_to_authorities.pl --bib-limit=STRING
244 =head1 DESCRIPTION
246 This batch job checks each bib record in the Koha database and attempts to link
247 each of its headings to the matching authority record.
249 =over 8
251 =item B<--help>
253 Prints this help
255 =item B<-v|--verbose>
257 Provide verbose log information (print the number of headings changed for each
258 bib record).
260 =item B<-l|--link-report>
262 Provide a report of all the headings that were processed: which were matched,
263 which were not, etc.
265 =item B<--auth-limit=S>
267 Only process those headings which match an authority record that matches the
268 user-specified WHERE clause.
270 =item B<--bib-limit=S>
272 Only process those bib records that match the user-specified WHERE clause.
274 =item B<--commit=N>
276 Commit the results to the database after every N records are processed.
278 =item B<--test>
280 Only test the authority linking and report the results; do not change the bib
281 records.
283 =back
285 =cut