3 # Script for handling import of MARC data into Koha db
6 # Koha library project www.koha-community.org
8 # Licensed under the GPL
10 # Copyright 2000-2002 Katipo Communications
12 # This file is part of Koha.
14 # Koha is free software; you can redistribute it and/or modify it
15 # under the terms of the GNU General Public License as published by
16 # the Free Software Foundation; either version 3 of the License, or
17 # (at your option) any later version.
19 # Koha is distributed in the hope that it will be useful, but
20 # WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU General Public License for more details.
24 # You should have received a copy of the GNU General Public License
25 # along with Koha; if not, see <http://www.gnu.org/licenses>.
28 #use warnings; FIXME - Bug 2505
30 # standard or CPAN modules used
33 use MARC
::File
::USMARC
;
43 use C4
::BackgroundJob
;
44 use C4
::MarcModificationTemplates
;
49 my $fileID = $input->param('uploadedfileid');
50 my $runinbackground = $input->param('runinbackground');
51 my $completedJobID = $input->param('completedJobID');
52 my $matcher_id = $input->param('matcher');
53 my $overlay_action = $input->param('overlay_action');
54 my $nomatch_action = $input->param('nomatch_action');
55 my $parse_items = $input->param('parse_items');
56 my $item_action = $input->param('item_action');
57 my $comments = $input->param('comments');
58 my $record_type = $input->param('record_type');
59 my $encoding = $input->param('encoding');
60 my $to_marc_plugin = $input->param('to_marc_plugin');
61 my $marc_modification_template = $input->param('marc_modification_template_id');
63 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
65 template_name
=> "tools/stage-marc-import.tt",
69 flagsrequired
=> { tools
=> 'stage_marc_import' },
75 SCRIPT_NAME
=> '/cgi-bin/koha/tools/stage-marc-import.pl',
76 uploadmarc
=> $fileID,
77 record_type
=> $record_type,
80 my %cookies = parse CGI
::Cookie
($cookie);
81 my $sessionID = $cookies{'CGISESSID'}->value;
82 if ($completedJobID) {
83 my $job = C4
::BackgroundJob
->fetch($sessionID, $completedJobID);
84 my $results = $job->results();
85 $template->param(map { $_ => $results->{$_} } keys %{ $results });
87 my $upload = Koha
::Upload
->new->get({ id
=> $fileID, filehandle
=> 1 });
88 my $fh = $upload->{fh
};
89 my $filename = $upload->{name
}; # filename only, no path
101 if ($runinbackground) {
102 my $job_size = () = $marcrecord =~ /\035/g;
103 # if we're matching, job size is doubled
104 $job_size *= 2 if ($matcher_id ne "");
105 $job = C4
::BackgroundJob
->new($sessionID, $filename, '/cgi-bin/koha/tools/stage-marc-import.pl', $job_size);
106 my $jobID = $job->id();
109 if (my $pid = fork) {
111 # return job ID as JSON
112 my $reply = CGI
->new("");
113 print $reply->header(-type
=> 'text/html');
114 print '{"jobID":"' . $jobID . '"}';
116 } elsif (defined $pid) {
118 # close STDOUT to signal to Apache that
119 # we're now running in the background
121 # close STDERR; # there is no good reason to close STDERR
123 # fork failed, so exit immediately
124 warn "fork failed while attempting to run tools/stage-marc-import.pl as a background job: $!";
128 # if we get here, we're a child that has detached
133 # New handle, as we're a child.
134 $dbh = C4
::Context
->dbh({new
=> 1});
135 $dbh->{AutoCommit
} = 0;
137 my ( $batch_id, $num_valid, $num_items, @import_errors ) =
138 BatchStageMarcRecords
(
139 $record_type, $encoding,
140 $marcrecord, $filename,
141 $to_marc_plugin, $marc_modification_template,
144 50, staging_progress_callback
( $job, $dbh )
147 my $num_with_matches = 0;
148 my $checked_matches = 0;
149 my $matcher_failed = 0;
150 my $matcher_code = "";
151 if ($matcher_id ne "") {
152 my $matcher = C4
::Matcher
->fetch($matcher_id);
153 if (defined $matcher) {
154 $checked_matches = 1;
155 $matcher_code = $matcher->code();
157 BatchFindDuplicates
( $batch_id, $matcher, 10, 50,
158 matching_progress_callback
( $job, $dbh ) );
159 SetImportBatchMatcher
($batch_id, $matcher_id);
160 SetImportBatchOverlayAction
($batch_id, $overlay_action);
161 SetImportBatchNoMatchAction
($batch_id, $nomatch_action);
162 SetImportBatchItemAction
($batch_id, $item_action);
172 staged
=> $num_valid,
173 matched
=> $num_with_matches,
174 num_items
=> $num_items,
175 import_errors
=> scalar(@import_errors),
176 total
=> $num_valid + scalar(@import_errors),
177 checked_matches
=> $checked_matches,
178 matcher_failed
=> $matcher_failed,
179 matcher_code
=> $matcher_code,
180 import_batch_id
=> $batch_id
182 if ($runinbackground) {
183 $job->finish($results);
185 $template->param(staged
=> $num_valid,
186 matched
=> $num_with_matches,
187 num_items
=> $num_items,
188 import_errors
=> scalar(@import_errors),
189 total
=> $num_valid + scalar(@import_errors),
190 checked_matches
=> $checked_matches,
191 matcher_failed
=> $matcher_failed,
192 matcher_code
=> $matcher_code,
193 import_batch_id
=> $batch_id
199 if ( C4
::Context
->preference("marcflavour") eq "UNIMARC" ) {
200 $template->param( "UNIMARC" => 1 );
202 my @matchers = C4
::Matcher
::GetMatcherList
();
203 $template->param( available_matchers
=> \
@matchers );
205 my @templates = GetModificationTemplates
();
206 $template->param( MarcModificationTemplatesLoop
=> \
@templates );
208 if ( C4
::Context
->preference('UseKohaPlugins') &&
209 C4
::Context
->config('enable_plugins') ) {
211 my @plugins = Koha
::Plugins
->new()->GetPlugins('to_marc');
212 $template->param( plugins
=> \
@plugins );
216 output_html_with_http_headers
$input, $cookie, $template->output;
220 sub staging_progress_callback
{
224 my $progress = shift;
225 $job->progress($progress);
229 sub matching_progress_callback
{
232 my $start_progress = $job->progress();
234 my $progress = shift;
235 $job->progress($start_progress + $progress);