X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=tools%2Fstage-marc-import.pl;h=e9d982dbc4c65a381bf41108534519e52c18a094;hb=5d6c092921919526ade501facb1220f8a108a08f;hp=54ebfb97e240eb6bea525a61f68e71b1d7fc8da1;hpb=6e85ee6db0055c9a2b5760d37c1286ca930ec77b;p=koha_fer diff --git a/tools/stage-marc-import.pl b/tools/stage-marc-import.pl index 54ebfb97e2..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'); @@ -55,7 +54,10 @@ 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 $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, @@ -87,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 @@ -100,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 . '"}'; @@ -115,25 +110,32 @@ if ($completedJobID) { # close STDOUT to signal to Apache that # we're now running in the background close STDOUT; - close STDERR; + # 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($syntax, $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; my $matcher_failed = 0; @@ -143,8 +145,9 @@ if ($completedJobID) { if (defined $matcher) { $checked_matches = 1; $matcher_code = $matcher->code(); - $num_with_matches = BatchFindBibDuplicates($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); @@ -156,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) { @@ -188,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; @@ -200,7 +207,6 @@ sub staging_progress_callback { return sub { my $progress = shift; $job->progress($progress); - $dbh->commit(); } } @@ -211,6 +217,5 @@ sub matching_progress_callback { return sub { my $progress = shift; $job->progress($start_progress + $progress); - $dbh->commit(); } }