Bug 7475: Teach matching rules to handle authorities
[koha.git] / tools / manage-marc-import.pl
1 #!/usr/bin/perl
2
3 # Copyright (C) 2007 LibLime
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 use strict;
21 use warnings;
22
23 # standard or CPAN modules used
24 use CGI;
25 use CGI::Cookie;
26 use MARC::File::USMARC;
27
28 # Koha modules used
29 use C4::Context;
30 use C4::Koha;
31 use C4::Auth;
32 use C4::Output;
33 use C4::Biblio;
34 use C4::ImportBatch;
35 use C4::Matcher;
36 use C4::BackgroundJob;
37 use C4::Labels::Batch;
38 use C4::Branch qw(get_branch_code_from_name);
39
40 my $script_name = "/cgi-bin/koha/tools/manage-marc-import.pl";
41
42 my $input = new CGI;
43 my $op = $input->param('op') || '';
44 my $completedJobID = $input->param('completedJobID');
45 our $runinbackground = $input->param('runinbackground');
46 my $import_batch_id = $input->param('import_batch_id') || '';
47
48 # record list displays
49 my $offset = $input->param('offset') || 0;
50 my $results_per_page = $input->param('results_per_page') || 25; 
51
52 my ($template, $loggedinuser, $cookie)
53     = get_template_and_user({template_name => "tools/manage-marc-import.tmpl",
54                  query => $input,
55                  type => "intranet",
56                  authnotrequired => 0,
57                  flagsrequired => {tools => 'manage_staged_marc'},
58                  debug => 1,
59                  });
60
61 my %cookies = parse CGI::Cookie($cookie);
62 my $sessionID = $cookies{'CGISESSID'}->value;
63 our $dbh = C4::Context->dbh;
64
65 # Frameworks selection loop
66 {
67     my $frameworks = getframeworks;
68     my $arrayref = [];
69     while ( my ($key, $value) = each %$frameworks ) {
70         push @$arrayref, { value => $key, label => $value->{frameworktext} };
71     }
72     $template->param( frameworks => $arrayref );
73 }
74
75 if ($op eq "create_labels") {
76         #create a batch of labels, then lose $op & $import_batch_id so we get back to import batch list.
77         my $label_batch_id = create_labelbatch_from_importbatch($import_batch_id);
78         if ($label_batch_id == -1) {
79             $template->param(   label_batch_msg => "Error attempting to create label batch. Please ask your system administrator to check the log for more details.",
80                                 message_type    => 'alert',
81             );
82         }
83         else {
84             $template->param(   label_batch_msg => "Label batch #$label_batch_id created.",
85                                 message_type    => 'dialog',
86             );
87         }
88         $op='';
89         $import_batch_id='';
90 }
91 if ($op) {
92     $template->param(script_name => $script_name, $op => 1);
93 } else {
94     $template->param(script_name => $script_name);
95 }
96
97 if ($op eq "") {
98     # displaying a list
99     if ($import_batch_id eq '') {
100         import_batches_list($template, $offset, $results_per_page);
101     } else {
102         import_records_list($template, $import_batch_id, $offset, $results_per_page);
103     }
104 } elsif ($op eq "commit-batch") {
105     if ($completedJobID) {
106         add_saved_job_results_to_template($template, $completedJobID);
107     } else {
108         my $framework = $input->param('framework');
109         commit_batch($template, $import_batch_id, $framework);
110     }
111     import_records_list($template, $import_batch_id, $offset, $results_per_page);
112 } elsif ($op eq "revert-batch") {
113     if ($completedJobID) {
114         add_saved_job_results_to_template($template, $completedJobID);
115     } else {
116         revert_batch($template, $import_batch_id);
117     }
118     import_records_list($template, $import_batch_id, $offset, $results_per_page);
119 } elsif ($op eq "clean-batch") {
120     CleanBatch($import_batch_id);
121     import_batches_list($template, $offset, $results_per_page);
122     $template->param( 
123         did_clean       => 1,
124         import_batch_id => $import_batch_id,
125     );
126 } elsif ($op eq "redo-matching") {
127     my $new_matcher_id = $input->param('new_matcher_id');
128     my $current_matcher_id = $input->param('current_matcher_id');
129     my $overlay_action = $input->param('overlay_action');
130     my $nomatch_action = $input->param('nomatch_action');
131     my $item_action = $input->param('item_action');
132     redo_matching($template, $import_batch_id, $new_matcher_id, $current_matcher_id, 
133                   $overlay_action, $nomatch_action, $item_action);
134     import_records_list($template, $import_batch_id, $offset, $results_per_page);
135
136
137 output_html_with_http_headers $input, $cookie, $template->output;
138
139 exit 0;
140
141 sub redo_matching {
142     my ($template, $import_batch_id, $new_matcher_id, $current_matcher_id, $overlay_action, $nomatch_action, $item_action) = @_;
143     my $rematch_failed = 0;
144     return if not defined $new_matcher_id and not defined $current_matcher_id;
145     my $old_overlay_action = GetImportBatchOverlayAction($import_batch_id);
146     my $old_nomatch_action = GetImportBatchNoMatchAction($import_batch_id);
147     my $old_item_action = GetImportBatchItemAction($import_batch_id);
148     return if $new_matcher_id eq $current_matcher_id and 
149               $old_overlay_action eq $overlay_action and 
150               $old_nomatch_action eq $nomatch_action and 
151               $old_item_action eq $item_action;
152  
153     if ($old_overlay_action ne $overlay_action) {
154         SetImportBatchOverlayAction($import_batch_id, $overlay_action);
155         $template->param('changed_overlay_action' => 1);
156     }
157     if ($old_nomatch_action ne $nomatch_action) {
158         SetImportBatchNoMatchAction($import_batch_id, $nomatch_action);
159         $template->param('changed_nomatch_action' => 1);
160     }
161     if ($old_item_action ne $item_action) {
162         SetImportBatchItemAction($import_batch_id, $item_action);
163         $template->param('changed_item_action' => 1);
164     }
165
166     my $num_with_matches = 0;
167     if (defined $new_matcher_id and $new_matcher_id ne "") {
168         my $matcher = C4::Matcher->fetch($new_matcher_id);
169         if (defined $matcher) {
170             $num_with_matches = BatchFindDuplicates($import_batch_id, $matcher);
171             SetImportBatchMatcher($import_batch_id, $new_matcher_id);
172         } else {
173             $rematch_failed = 1;
174         }
175     } else {
176         $num_with_matches = BatchFindDuplicates($import_batch_id, undef);
177         SetImportBatchMatcher($import_batch_id, undef);
178         SetImportBatchOverlayAction('create_new');
179     }
180     $template->param(rematch_failed => $rematch_failed);
181     $template->param(rematch_attempted => 1);
182     $template->param(num_with_matches => $num_with_matches);
183 }
184
185 sub create_labelbatch_from_importbatch {
186         my ($batch_id) = @_;
187         my $err = undef;
188         my $branch_code = C4::Context->userenv->{'branch'};
189         my $batch = C4::Labels::Batch->new(branch_code => $branch_code);
190         my @items = GetItemNumbersFromImportBatch($batch_id);
191         if (grep{$_ == 0} @items) {
192             warn sprintf('create_labelbatch_from_importbatch() : Call to C4::ImportBatch::GetItemNumbersFromImportBatch returned no item number(s) from import batch #%s.', $batch_id);
193             return -1;
194         }
195         foreach my $item_number (@items) {
196             $err = $batch->add_item($item_number);
197             if ($err == -1) {
198                 warn sprintf('create_labelbatch_from_importbatch() : Error attempting to add item #%s of import batch #%s to label batch.', $item_number, $batch_id);
199                 return -1;
200             }
201         }
202         return $batch->get_attr('batch_id');
203 }
204
205 sub import_batches_list {
206     my ($template, $offset, $results_per_page) = @_;
207     my $batches = GetImportBatchRangeDesc($offset, $results_per_page);
208
209     my @list = ();
210     foreach my $batch (@$batches) {
211         push @list, {
212             import_batch_id => $batch->{'import_batch_id'},
213             num_records => $batch->{'num_records'},
214             num_items => $batch->{'num_items'},
215             upload_timestamp => $batch->{'upload_timestamp'},
216             import_status => $batch->{'import_status'},
217             file_name => $batch->{'file_name'} || "($batch->{'batch_type'})",
218             comments => $batch->{'comments'},
219             can_clean => ($batch->{'import_status'} ne 'cleaned') ? 1 : 0,
220             record_type => $batch->{'record_type'},
221         };
222     }
223     $template->param(batch_list => \@list); 
224     my $num_batches = GetNumberOfNonZ3950ImportBatches();
225     add_page_numbers($template, $offset, $results_per_page, $num_batches);
226     $template->param(offset => $offset);
227     $template->param(range_top => $offset + $results_per_page - 1);
228     $template->param(num_results => $num_batches);
229     $template->param(results_per_page => $results_per_page);
230
231 }
232
233 sub commit_batch {
234     my ($template, $import_batch_id, $framework) = @_;
235
236     my $job = undef;
237     $dbh->{AutoCommit} = 0;
238     my $callback = sub {};
239     if ($runinbackground) {
240         $job = put_in_background($import_batch_id);
241         $callback = progress_callback($job, $dbh);
242     }
243     my ($num_added, $num_updated, $num_items_added, $num_items_errored, $num_ignored) = 
244         BatchCommitRecords($import_batch_id, $framework, 50, $callback);
245     $dbh->commit();
246
247     my $results = {
248         did_commit => 1,
249         num_added => $num_added,
250         num_updated => $num_updated,
251         num_items_added => $num_items_added,
252         num_items_errored => $num_items_errored,
253         num_ignored => $num_ignored
254     };
255     if ($runinbackground) {
256         $job->finish($results);
257     } else {
258         add_results_to_template($template, $results);
259     }
260 }
261
262 sub revert_batch {
263     my ($template, $import_batch_id) = @_;
264
265     $dbh->{AutoCommit} = 0;
266     my $job = undef;
267     my $callback = sub {};
268     if ($runinbackground) {
269         $job = put_in_background($import_batch_id);
270         $callback = progress_callback($job, $dbh);
271     }
272     my ($num_deleted, $num_errors, $num_reverted, $num_items_deleted, $num_ignored) = 
273         BatchRevertRecords($import_batch_id, 50, $callback);
274     $dbh->commit();
275
276     my $results = {
277         did_revert => 1,
278         num_deleted => $num_deleted,
279         num_items_deleted => $num_items_deleted,
280         num_errors => $num_errors,
281         num_reverted => $num_reverted,
282         num_ignored => $num_ignored,
283     };
284     if ($runinbackground) {
285         $job->finish($results);
286     } else {
287         add_results_to_template($template, $results);
288     }
289 }
290
291 sub put_in_background {
292     my $import_batch_id = shift;
293
294     my $batch = GetImportBatch($import_batch_id);
295     my $job = C4::BackgroundJob->new($sessionID, $batch->{'file_name'}, $ENV{'SCRIPT_NAME'}, $batch->{'num_records'});
296     my $jobID = $job->id();
297
298     # fork off
299     if (my $pid = fork) {
300         # parent
301         # return job ID as JSON
302
303         # prevent parent exiting from
304         # destroying the kid's database handle
305         # FIXME: according to DBI doc, this may not work for Oracle
306         $dbh->{InactiveDestroy}  = 1;
307
308         my $reply = CGI->new("");
309         print $reply->header(-type => 'text/html');
310         print '{"jobID":"' . $jobID . '"}';
311         exit 0;
312     } elsif (defined $pid) {
313         # child
314         # close STDOUT to signal to Apache that
315         # we're now running in the background
316         close STDOUT;
317         close STDERR;
318     } else {
319         # fork failed, so exit immediately
320         warn "fork failed while attempting to run $ENV{'SCRIPT_NAME'} as a background job";
321         exit 0;
322     }
323     return $job;
324 }
325
326 sub progress_callback {
327     my $job = shift;
328     my $dbh = shift;
329     return sub {
330         my $progress = shift;
331         $job->progress($progress);
332         $dbh->commit();
333     }
334 }
335
336 sub add_results_to_template {
337     my $template = shift;
338     my $results = shift;
339     $template->param(map { $_ => $results->{$_} } keys %{ $results });
340 }
341
342 sub add_saved_job_results_to_template {
343     my $template = shift;
344     my $completedJobID = shift;
345     my $job = C4::BackgroundJob->fetch($sessionID, $completedJobID);
346     my $results = $job->results();
347     add_results_to_template($template, $results);
348 }
349
350 sub import_records_list {
351     my ($template, $import_batch_id, $offset, $results_per_page) = @_;
352
353     my $batch = GetImportBatch($import_batch_id);
354     my $records = GetImportRecordsRange($import_batch_id, $offset, $results_per_page);
355     my @list = ();
356     foreach my $record (@$records) {
357         my $citation = $record->{'title'} || $record->{'authorized_heading'};
358         $citation .= " $record->{'author'}" if $record->{'author'};
359         $citation .= " (" if $record->{'issn'} or $record->{'isbn'};
360         $citation .= $record->{'isbn'} if $record->{'isbn'};
361         $citation .= ", " if $record->{'issn'} and $record->{'isbn'};
362         $citation .= $record->{'issn'} if $record->{'issn'};
363         $citation .= ")" if $record->{'issn'} or $record->{'isbn'};
364
365         my $match = GetImportRecordMatches($record->{'import_record_id'}, 1);
366         my $match_citation = '';
367         if ($#$match > -1) {
368             if ($match->[0]->{'record_type'} eq 'biblio') {
369                 $match_citation .= $match->[0]->{'title'} if defined($match->[0]->{'title'});
370                 $match_citation .= ' ' . $match->[0]->{'author'} if defined($match->[0]->{'author'});
371             } elsif ($match->[0]->{'record_type'} eq 'auth') {
372                 $match_citation .= $match->[0]->{'authorized_heading'} if defined($match->[0]->{'authorized_heading'});
373             }
374         }
375
376         push @list,
377           { import_record_id         => $record->{'import_record_id'},
378             final_match_id           => $record->{'matched_biblionumber'} || $record->{'matched_authid'},
379             citation                 => $citation,
380             status                   => $record->{'status'},
381             record_sequence          => $record->{'record_sequence'},
382             overlay_status           => $record->{'overlay_status'},
383             # Sorry about the match_id being from the "biblionumber" field;
384             # as it turns out, any match id will go in biblionumber
385             match_id                 => $#$match > -1 ? $match->[0]->{'biblionumber'} : 0,
386             match_citation           => $match_citation,
387             match_score              => $#$match > -1 ? $match->[0]->{'score'} : 0,
388             record_type              => $record->{'record_type'},
389           };
390     }
391     my $num_records = $batch->{'num_records'};
392     $template->param(record_list => \@list);
393     add_page_numbers($template, $offset, $results_per_page, $num_records);
394     $template->param(offset => $offset);
395     $template->param(range_top => $offset + $results_per_page - 1);
396     $template->param(num_results => $num_records);
397     $template->param(results_per_page => $results_per_page);
398     $template->param(import_batch_id => $import_batch_id);
399     my $overlay_action = GetImportBatchOverlayAction($import_batch_id);
400     $template->param("overlay_action_${overlay_action}" => 1);
401     $template->param(overlay_action => $overlay_action);
402     my $nomatch_action = GetImportBatchNoMatchAction($import_batch_id);
403     $template->param("nomatch_action_${nomatch_action}" => 1);
404     $template->param(nomatch_action => $nomatch_action);
405     my $item_action = GetImportBatchItemAction($import_batch_id);
406     $template->param("item_action_${item_action}" => 1);
407     $template->param(item_action => $item_action);
408     batch_info($template, $batch);
409     
410 }
411
412 sub batch_info {
413     my ($template, $batch) = @_;
414     $template->param(batch_info => 1);
415     $template->param(file_name => $batch->{'file_name'});
416     $template->param(comments => $batch->{'comments'});
417     $template->param(import_status => $batch->{'import_status'});
418     $template->param(upload_timestamp => $batch->{'upload_timestamp'});
419     $template->{VARS}->{'record_type'} = $batch->{'record_type'};
420     $template->param(num_records => $batch->{'num_records'});
421     $template->param(num_items => $batch->{'num_items'});
422     if ($batch->{'import_status'} ne 'cleaned') {
423         $template->param(can_clean => 1);
424     }
425     if ($batch->{'num_records'} > 0) {
426         if ($batch->{'import_status'} eq 'staged' or $batch->{'import_status'} eq 'reverted') {
427             $template->param(can_commit => 1);
428         }
429         if ($batch->{'import_status'} eq 'imported') {
430             $template->param(can_revert => 1);
431         }
432     }
433     if (defined $batch->{'matcher_id'}) {
434         my $matcher = C4::Matcher->fetch($batch->{'matcher_id'});
435         if (defined $matcher) {
436             $template->param('current_matcher_id' => $batch->{'matcher_id'});
437             $template->param('current_matcher_code' => $matcher->code());
438             $template->param('current_matcher_description' => $matcher->description());
439         }
440     }
441     add_matcher_list($template,$batch->{'matcher_id'});
442 }
443
444 sub add_matcher_list {
445     my ($template,$current_matcher_id) = @_;
446     my @matchers = C4::Matcher::GetMatcherList();
447     if (defined $current_matcher_id) {
448         for (my $i = 0; $i <= $#matchers; $i++) {
449             if ($matchers[$i]->{'matcher_id'} eq $current_matcher_id) {
450                 $matchers[$i]->{'selected'} = 1;
451             }
452         }
453     }
454     $template->param(available_matchers => \@matchers);
455 }
456
457 sub add_page_numbers {
458     my ($template, $offset, $results_per_page, $total_results) = @_;
459     my $max_pages = POSIX::ceil($total_results / $results_per_page);
460     return if $max_pages < 2;
461     my $current_page = int($offset / $results_per_page) + 1;
462     my @pages = ();
463     for (my $i = 1; $i <= $max_pages; $i++) {
464         push @pages, {
465             page_number => $i,
466             current_page => ($current_page == $i) ? 1 : 0,
467             offset => ($i - 1) * $results_per_page
468         }
469     }
470     $template->param(pages => \@pages);
471 }
472