X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=tools%2Fstage-marc-import.pl;h=e9d982dbc4c65a381bf41108534519e52c18a094;hb=5d6c092921919526ade501facb1220f8a108a08f;hp=fbb53656993384c7466a380f749808c8124f0850;hpb=4f44847c11add59ab7d0c55aeffac1fa2835cc1f;p=koha_fer diff --git a/tools/stage-marc-import.pl b/tools/stage-marc-import.pl index fbb5365699..e9d982dbc4 100755 --- a/tools/stage-marc-import.pl +++ b/tools/stage-marc-import.pl @@ -41,10 +41,9 @@ use C4::ImportBatch; use C4::Matcher; use C4::UploadedFile; use C4::BackgroundJob; +use C4::MarcModificationTemplates; my $input = new CGI; -my $dbh = C4::Context->dbh; -$dbh->{AutoCommit} = 0; my $fileID=$input->param('uploadedfileid'); my $runinbackground = $input->param('runinbackground'); @@ -57,6 +56,8 @@ my $item_action = $input->param('item_action'); my $comments = $input->param('comments'); my $record_type = $input->param('record_type'); my $encoding = $input->param('encoding'); +my $marc_modification_template = $input->param('marc_modification_template_id'); + my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "tools/stage-marc-import.tmpl", query => $input, @@ -88,8 +89,7 @@ if ($completedJobID) { my $filename = $uploaded_file->name(); my $job = undef; - my $staging_callback = sub { }; - my $matching_callback = sub { }; + my $dbh; if ($runinbackground) { my $job_size = () = $marcrecord =~ /\035/g; # if we're matching, job size is doubled @@ -101,12 +101,6 @@ if ($completedJobID) { 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 . '"}'; @@ -119,21 +113,28 @@ if ($completedJobID) { # close STDERR; # there is no good reason to close STDERR } else { # fork failed, so exit immediately - warn "fork failed while attempting to run $ENV{'SCRIPT_NAME'} as a background job"; + 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); } + # New handle, as we're a child. + $dbh = C4::Context->dbh({new => 1}); + $dbh->{AutoCommit} = 0; # FIXME branch code - my ($batch_id, $num_valid, $num_items, @import_errors) = BatchStageMarcRecords($record_type, $encoding, $marcrecord, $filename, $comments, '', $parse_items, 0, 50, staging_progress_callback($job, $dbh)); - - $dbh->commit(); + my ( $batch_id, $num_valid, $num_items, @import_errors ) = + BatchStageMarcRecords( + $record_type, $encoding, + $marcrecord, $filename, + $marc_modification_template, $comments, + '', $parse_items, + 0, 50, + staging_progress_callback( $job, $dbh ) + ); my $num_with_matches = 0; my $checked_matches = 0; @@ -144,8 +145,9 @@ if ($completedJobID) { if (defined $matcher) { $checked_matches = 1; $matcher_code = $matcher->code(); - $num_with_matches = BatchFindDuplicates($batch_id, $matcher, - 10, 50, matching_progress_callback($job, $dbh)); + $num_with_matches = + BatchFindDuplicates( $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); @@ -157,14 +159,14 @@ if ($completedJobID) { } my $results = { - staged => $num_valid, - matched => $num_with_matches, - num_items => $num_items, - import_errors => scalar(@import_errors), - total => $num_valid + scalar(@import_errors), + 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, + matcher_failed => $matcher_failed, + matcher_code => $matcher_code, import_batch_id => $batch_id }; if ($runinbackground) { @@ -189,6 +191,10 @@ if ($completedJobID) { } my @matchers = C4::Matcher::GetMatcherList(); $template->param(available_matchers => \@matchers); + + my @templates = GetModificationTemplates(); + $template->param( MarcModificationTemplatesLoop => \@templates ); + } output_html_with_http_headers $input, $cookie, $template->output; @@ -201,7 +207,6 @@ sub staging_progress_callback { return sub { my $progress = shift; $job->progress($progress); - $dbh->commit(); } } @@ -212,6 +217,5 @@ sub matching_progress_callback { return sub { my $progress = shift; $job->progress($start_progress + $progress); - $dbh->commit(); } }