01c19a265a
Signed-off-by: Chris Cormack <crc@liblime.com> Signed-off-by: Joshua Ferraro <jmf@liblime.com>
108 lines
3.1 KiB
Perl
Executable file
108 lines
3.1 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 option) 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 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;
|
|
|
|
#------------------
|
|
# Constants
|
|
|
|
my $includes = C4::Context->config('includes') ||
|
|
"/usr/local/www/hdl/htdocs/includes";
|
|
|
|
# HTML colors for alternating lines
|
|
my $lc1='#dddddd';
|
|
my $lc2='#ddaaaa';
|
|
|
|
#-------------
|
|
#-------------
|
|
# Initialize
|
|
|
|
my $userid=$ENV{'REMOTE_USER'};
|
|
|
|
my $input = new CGI;
|
|
my $dbh = C4::Context->dbh;
|
|
|
|
my $uploadmarc=$input->param('uploadmarc');
|
|
my $check_for_matches = $input->param('check_for_matches');
|
|
my $parse_items = $input->param('parse_items');
|
|
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 => 1},
|
|
debug => 1,
|
|
});
|
|
|
|
$template->param(SCRIPT_NAME => $ENV{'SCRIPT_NAME'},
|
|
uploadmarc => $uploadmarc);
|
|
my $filename = $uploadmarc;
|
|
if ($uploadmarc && length($uploadmarc)>0) {
|
|
my $marcrecord='';
|
|
while (<$uploadmarc>) {
|
|
$marcrecord.=$_;
|
|
}
|
|
|
|
# FIXME branch code
|
|
my ($batch_id, $num_valid, $num_items, @import_errors) = BatchStageMarcRecords($syntax, $marcrecord, $filename,
|
|
$comments, '', $parse_items, 0);
|
|
my $matcher = C4::Matcher->new('biblio');
|
|
$matcher->add_matchpoint("020", "a", '', 'isbn', 1000);
|
|
my $num_with_matches = 0;
|
|
my $checked_matches = 0;
|
|
if ($check_for_matches) {
|
|
$checked_matches = 1;
|
|
$num_with_matches = BatchFindBibDuplicates($batch_id, $matcher);
|
|
}
|
|
|
|
$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,
|
|
import_batch_id => $batch_id
|
|
);
|
|
|
|
}
|
|
|
|
output_html_with_http_headers $input, $cookie, $template->output;
|
|
|