438ed23337
Enhanced the ability of catalogers to specify how bib and item records should be added, replaced, or ignored during a staging import. When an import batch of bib records is staged and commit, the user can now explicitly specify what should occur when an incoming bib record has, or does not have, a match with a record already in the database. The options are: if match found (overlay_action): create_new (just add the incoming record) replace (replace the matched record with the incoming one) use_template (option not implemented) ignore (do nothing with the incoming bib; however, the items attached to it may still be processed based on the item action) if no match is found (nomatch_action): create_new (just add the incoming record) ignore (do nothing with the incoming bib; in this case, any items attached to it will be ignored since there will be nothing to attach them to) The following options for handling items embedded in the bib record are now available: always_add (add the items to the new or replaced bib) add_only_if_match (add the items only if the incoming bib matches an existing bib) add_only_if_add (add the items only if the incoming bib does *not* match an existing bib) ignore (ignore the items entirely) With these changes, it is now possible to support the following use cases: [1] A library joining an existing Koha database wishes to add their items to existing bib records if they match, but does not want to overlay the bib records themselves. [2] A library wants to load a file of records, but only handle the new ones, not ones that are already in the database. [3] A library wants to load a file of records, but only handle the ones that match existing records (e.g., if the records are coming back from an authority control vendor). Documentation changes: * See description above; also, screenshots of the 'stage MARC records for import' and 'manage staged MARC records' should be updated. Test cases: * Added test cases to exercise staging and committing import batches. UI changes: * The pages for staging and managing import batches now have controls for setting the overlay action, action if no match, and item action separately. * in the manage import batch tool, user is notified when they change overlay action, no-match action, and item action * HTML for manage import batch tool now uses fieldsets Database changes (DB rev 076): * added import_batches.item_action * added import_batches.nomatch_action * added 'ignore' as a valid value for import_batches.overlay_action * added 'ignored' as a valid value for import_records.status * added 'status' as a valid value for import_items.status API changes: * new accessor routines for C4::ImportBatch GetImportBatchNoMatchAction SetImportBatchNoMatchAction GetImportBatchItemAction SetImportBatchItemAction * new internal functions for C4::ImportBatch to determine how a given bib and item are to be processed, based on overlay_action, nomatch_action, and item_action: _get_commit_action _get_revert_action Signed-off-by: Joshua Ferraro <jmf@liblime.com>
213 lines
6.9 KiB
Perl
Executable file
213 lines
6.9 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# Script for handling import of MARC data into Koha db
|
|
# and Z39.50 lookups
|
|
|
|
# Koha library project www.koha.org
|
|
|
|
# Licensed under the GPL
|
|
|
|
# Copyright 2000-2002 Katipo Communications
|
|
#
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it under the
|
|
# terms of the GNU General Public License as published by the Free Software
|
|
# Foundation; either version 2 of the License, or (at your op) any later
|
|
# version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along with
|
|
# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
|
|
# Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
use strict;
|
|
|
|
# standard or CPAN modules used
|
|
use CGI;
|
|
use CGI::Cookie;
|
|
use MARC::File::USMARC;
|
|
|
|
# Koha modules used
|
|
use C4::Context;
|
|
use C4::Auth;
|
|
use C4::Input;
|
|
use C4::Output;
|
|
use C4::Biblio;
|
|
use C4::ImportBatch;
|
|
use C4::Matcher;
|
|
use C4::UploadedFile;
|
|
use C4::BackgroundJob;
|
|
|
|
my $input = new CGI;
|
|
my $dbh = C4::Context->dbh;
|
|
$dbh->{AutoCommit} = 0;
|
|
|
|
my $fileID=$input->param('uploadedfileid');
|
|
my $runinbackground = $input->param('runinbackground');
|
|
my $completedJobID = $input->param('completedJobID');
|
|
my $matcher_id = $input->param('matcher');
|
|
my $overlay_action = $input->param('overlay_action');
|
|
my $nomatch_action = $input->param('nomatch_action');
|
|
my $parse_items = $input->param('parse_items');
|
|
my $item_action = $input->param('item_action');
|
|
my $comments = $input->param('comments');
|
|
my $syntax = $input->param('syntax');
|
|
my ($template, $loggedinuser, $cookie)
|
|
= get_template_and_user({template_name => "tools/stage-marc-import.tmpl",
|
|
query => $input,
|
|
type => "intranet",
|
|
authnotrequired => 0,
|
|
flagsrequired => {tools => 'stage_marc_import'},
|
|
debug => 1,
|
|
});
|
|
|
|
$template->param(SCRIPT_NAME => $ENV{'SCRIPT_NAME'},
|
|
uploadmarc => $fileID);
|
|
|
|
my %cookies = parse CGI::Cookie($cookie);
|
|
my $sessionID = $cookies{'CGISESSID'}->value;
|
|
if ($completedJobID) {
|
|
my $job = C4::BackgroundJob->fetch($sessionID, $completedJobID);
|
|
my $results = $job->results();
|
|
$template->param(map { $_ => $results->{$_} } keys %{ $results });
|
|
} elsif ($fileID) {
|
|
my $uploaded_file = C4::UploadedFile->fetch($sessionID, $fileID);
|
|
my $fh = $uploaded_file->fh();
|
|
my $marcrecord='';
|
|
$/ = "\035";
|
|
while (<$fh>) {
|
|
s/^\s+//;
|
|
s/\s+$//;
|
|
$marcrecord.=$_;
|
|
}
|
|
|
|
my $filename = $uploaded_file->name();
|
|
my $job = undef;
|
|
my $staging_callback = sub { };
|
|
my $matching_callback = sub { };
|
|
if ($runinbackground) {
|
|
my $job_size = () = $marcrecord =~ /\035/g;
|
|
# if we're matching, job size is doubled
|
|
$job_size *= 2 if ($matcher_id ne "");
|
|
$job = C4::BackgroundJob->new($sessionID, $filename, $ENV{'SCRIPT_NAME'}, $job_size);
|
|
my $jobID = $job->id();
|
|
|
|
# fork off
|
|
if (my $pid = fork) {
|
|
# parent
|
|
# return job ID as JSON
|
|
|
|
# prevent parent exiting from
|
|
# destroying the kid's database handle
|
|
# FIXME: according to DBI doc, this may not work for Oracle
|
|
$dbh->{InactiveDestroy} = 1;
|
|
|
|
my $reply = CGI->new("");
|
|
print $reply->header(-type => 'text/html');
|
|
print "{ jobID: '$jobID' }";
|
|
exit 0;
|
|
} elsif (defined $pid) {
|
|
# child
|
|
# close STDOUT to signal to Apache that
|
|
# we're now running in the background
|
|
close STDOUT;
|
|
close STDERR;
|
|
} else {
|
|
# fork failed, so exit immediately
|
|
warn "fork failed while attempting to run $ENV{'SCRIPT_NAME'} as a background job";
|
|
exit 0;
|
|
}
|
|
|
|
# if we get here, we're a child that has detached
|
|
# itself from Apache
|
|
$staging_callback = staging_progress_callback($job, $dbh);
|
|
$matching_callback = matching_progress_callback($job, $dbh);
|
|
|
|
}
|
|
|
|
# FIXME branch code
|
|
my ($batch_id, $num_valid, $num_items, @import_errors) = BatchStageMarcRecords($syntax, $marcrecord, $filename,
|
|
$comments, '', $parse_items, 0,
|
|
50, staging_progress_callback($job, $dbh));
|
|
$dbh->commit();
|
|
my $num_with_matches = 0;
|
|
my $checked_matches = 0;
|
|
my $matcher_failed = 0;
|
|
my $matcher_code = "";
|
|
if ($matcher_id ne "") {
|
|
my $matcher = C4::Matcher->fetch($matcher_id);
|
|
if (defined $matcher) {
|
|
$checked_matches = 1;
|
|
$matcher_code = $matcher->code();
|
|
$num_with_matches = BatchFindBibDuplicates($batch_id, $matcher,
|
|
10, 50, matching_progress_callback($job, $dbh));
|
|
SetImportBatchMatcher($batch_id, $matcher_id);
|
|
SetImportBatchOverlayAction($batch_id, $overlay_action);
|
|
SetImportBatchNoMatchAction($batch_id, $nomatch_action);
|
|
SetImportBatchItemAction($batch_id, $item_action);
|
|
$dbh->commit();
|
|
} else {
|
|
$matcher_failed = 1;
|
|
}
|
|
}
|
|
|
|
my $results = {
|
|
staged => $num_valid,
|
|
matched => $num_with_matches,
|
|
num_items => $num_items,
|
|
import_errors => scalar(@import_errors),
|
|
total => $num_valid + scalar(@import_errors),
|
|
checked_matches => $checked_matches,
|
|
matcher_failed => $matcher_failed,
|
|
matcher_code => $matcher_code,
|
|
import_batch_id => $batch_id
|
|
};
|
|
if ($runinbackground) {
|
|
$job->finish($results);
|
|
} else {
|
|
$template->param(staged => $num_valid,
|
|
matched => $num_with_matches,
|
|
num_items => $num_items,
|
|
import_errors => scalar(@import_errors),
|
|
total => $num_valid + scalar(@import_errors),
|
|
checked_matches => $checked_matches,
|
|
matcher_failed => $matcher_failed,
|
|
matcher_code => $matcher_code,
|
|
import_batch_id => $batch_id
|
|
);
|
|
}
|
|
|
|
} else {
|
|
# initial form
|
|
my @matchers = C4::Matcher::GetMatcherList();
|
|
$template->param(available_matchers => \@matchers);
|
|
}
|
|
|
|
output_html_with_http_headers $input, $cookie, $template->output;
|
|
|
|
exit 0;
|
|
|
|
sub staging_progress_callback {
|
|
my $job = shift;
|
|
my $dbh = shift;
|
|
return sub {
|
|
my $progress = shift;
|
|
$job->progress($progress);
|
|
$dbh->commit();
|
|
}
|
|
}
|
|
|
|
sub matching_progress_callback {
|
|
my $job = shift;
|
|
my $dbh = shift;
|
|
my $start_progress = $job->progress();
|
|
return sub {
|
|
my $progress = shift;
|
|
$job->progress($start_progress + $progress);
|
|
$dbh->commit();
|
|
}
|
|
}
|