Bug 13321: Add missing Price TT plugin in orderreceive.tt
[koha.git] / tools / stage-marc-import.pl
index af1cdc3..99506fc 100755 (executable)
@@ -39,36 +39,44 @@ use C4::Output;
 use C4::Biblio;
 use C4::ImportBatch;
 use C4::Matcher;
-use C4::UploadedFile;
+use Koha::Upload;
 use C4::BackgroundJob;
 use C4::MarcModificationTemplates;
+use Koha::Plugins;
 
 my $input = new CGI;
 
-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 $record_type = $input->param('record_type');
-my $encoding = $input->param('encoding');
+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 $record_type                = $input->param('record_type');
+my $encoding                   = $input->param('encoding') || 'UTF-8';
+my $format                     = $input->param('format') || 'ISO2709';
+my $to_marc_plugin             = $input->param('to_marc_plugin');
 my $marc_modification_template = $input->param('marc_modification_template_id');
 
-my ($template, $loggedinuser, $cookie)
-    = get_template_and_user({template_name => "tools/stage-marc-import.tt",
-                                       query => $input,
-                                       type => "intranet",
-                                       authnotrequired => 0,
-                                       flagsrequired => {tools => 'stage_marc_import'},
-                                       debug => 1,
-                                       });
+my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
+    {
+        template_name   => "tools/stage-marc-import.tt",
+        query           => $input,
+        type            => "intranet",
+        authnotrequired => 0,
+        flagsrequired   => { tools => 'stage_marc_import' },
+        debug           => 1,
+    }
+);
 
-$template->param(SCRIPT_NAME => $ENV{'SCRIPT_NAME'},
-                                               uploadmarc => $fileID);
+$template->param(
+    SCRIPT_NAME => '/cgi-bin/koha/tools/stage-marc-import.pl',
+    uploadmarc  => $fileID,
+    record_type => $record_type,
+);
 
 my %cookies = parse CGI::Cookie($cookie);
 my $sessionID = $cookies{'CGISESSID'}->value;
@@ -77,24 +85,25 @@ if ($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 $upload = Koha::Upload->new->get({ id => $fileID });
+    my ( $file, $filename ) = ( $upload->{path}, $upload->{name} );
+    my ( $errors, $marcrecords );
+    if( $format eq 'MARCXML' ) {
+        ( $errors, $marcrecords ) = C4::ImportBatch::RecordsFromMARCXMLFile( $file, $encoding);
+    } else {
+        ( $errors, $marcrecords ) = C4::ImportBatch::RecordsFromISO2709File( $file, $record_type, $encoding );
+    }
+    warn "$filename: " . ( join ',', @$errors ) if @$errors;
+        # no need to exit if we have no records (or only errors) here
+        # BatchStageMarcRecords can handle that
+
     my $job = undef;
     my $dbh;
     if ($runinbackground) {
-        my $job_size = () = $marcrecord =~ /\035/g;
+        my $job_size = scalar(@$marcrecords);
         # 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);
+        $job = C4::BackgroundJob->new($sessionID, $filename, '/cgi-bin/koha/tools/stage-marc-import.pl', $job_size);
         my $jobID = $job->id();
 
         # fork off
@@ -113,7 +122,7 @@ 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 tools/stage-marc-import.pl as a background job: $!";
             exit 0;
         }
 
@@ -128,12 +137,12 @@ if ($completedJobID) {
     # FIXME branch code
     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 )
+        $record_type,    $encoding,
+        $marcrecords,    $filename,
+        $to_marc_plugin, $marc_modification_template,
+        $comments,       '',
+        $parse_items,    0,
+        50, staging_progress_callback( $job, $dbh )
       );
 
     my $num_with_matches = 0;
@@ -173,6 +182,7 @@ if ($completedJobID) {
     };
     if ($runinbackground) {
         $job->finish($results);
+        exit 0;
     } else {
            $template->param(staged => $num_valid,
                             matched => $num_with_matches,
@@ -188,15 +198,23 @@ if ($completedJobID) {
 
 } else {
     # initial form
-    if (C4::Context->preference("marcflavour") eq "UNIMARC") {
-        $template->param("UNIMARC" => 1);
+    if ( C4::Context->preference("marcflavour") eq "UNIMARC" ) {
+        $template->param( "UNIMARC" => 1 );
     }
     my @matchers = C4::Matcher::GetMatcherList();
-    $template->param(available_matchers => \@matchers);
+    $template->param( available_matchers => \@matchers );
 
     my @templates = GetModificationTemplates();
     $template->param( MarcModificationTemplatesLoop => \@templates );
 
+    if ( C4::Context->preference('UseKohaPlugins') &&
+         C4::Context->config('enable_plugins') ) {
+
+        my @plugins = Koha::Plugins->new()->GetPlugins({
+            method => 'to_marc',
+        });
+        $template->param( plugins => \@plugins );
+    }
 }
 
 output_html_with_http_headers $input, $cookie, $template->output;