3 # Copyright (C) 2007 LibLime
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
23 # standard or CPAN modules used
26 use MARC
::File
::USMARC
;
32 use C4
::AuthoritiesMarc
;
37 use C4
::BackgroundJob
;
38 use C4
::Labels
::Batch
;
39 use Koha
::BiblioFrameworks
;
41 my $script_name = "/cgi-bin/koha/tools/manage-marc-import.pl";
44 my $op = $input->param('op') || '';
45 my $completedJobID = $input->param('completedJobID');
46 our $runinbackground = $input->param('runinbackground');
47 my $import_batch_id = $input->param('import_batch_id') || '';
49 # record list displays
50 my $offset = $input->param('offset') || 0;
51 my $results_per_page = $input->param('results_per_page') || 25;
53 my ($template, $loggedinuser, $cookie)
54 = get_template_and_user
({template_name
=> "tools/manage-marc-import.tt",
58 flagsrequired
=> {tools
=> 'manage_staged_marc'},
62 my %cookies = parse CGI
::Cookie
($cookie);
63 our $sessionID = $cookies{'CGISESSID'}->value;
64 our $dbh = C4
::Context
->dbh;
66 my $frameworks = Koha
::BiblioFrameworks
->search({ tagfield
=> { 'not' => undef } }, { join => 'marc_tag_structure', group_by
=>'frameworkcode',order_by
=> ['frameworktext'] });
67 $template->param( frameworks
=> $frameworks );
69 if ($op eq "create_labels") {
70 #create a batch of labels, then lose $op & $import_batch_id so we get back to import batch list.
71 my $label_batch_id = create_labelbatch_from_importbatch
($import_batch_id);
72 if ($label_batch_id == -1) {
73 $template->param( label_batch_msg
=> "Error attempting to create label batch. Please ask your system administrator to check the log for more details.",
74 message_type
=> 'alert',
78 $template->param( label_batch_msg
=> "Label batch #$label_batch_id created.",
79 message_type
=> 'dialog',
86 $template->param(script_name
=> $script_name, $op => 1);
88 $template->param(script_name
=> $script_name);
93 if ($import_batch_id eq '') {
94 import_batches_list
($template, $offset, $results_per_page);
96 import_records_list
($template, $import_batch_id, $offset, $results_per_page);
98 } elsif ($op eq "commit-batch") {
99 if ($completedJobID) {
100 add_saved_job_results_to_template
($template, $completedJobID);
102 my $framework = $input->param('framework');
103 commit_batch
($template, $import_batch_id, $framework);
105 import_records_list
($template, $import_batch_id, $offset, $results_per_page);
106 } elsif ($op eq "revert-batch") {
107 if ($completedJobID) {
108 add_saved_job_results_to_template
($template, $completedJobID);
110 revert_batch
($template, $import_batch_id);
112 import_records_list
($template, $import_batch_id, $offset, $results_per_page);
113 } elsif ($op eq "clean-batch") {
114 CleanBatch
($import_batch_id);
115 import_batches_list
($template, $offset, $results_per_page);
118 import_batch_id
=> $import_batch_id,
120 } elsif ($op eq "delete-batch") {
121 DeleteBatch
($import_batch_id);
122 import_batches_list
($template, $offset, $results_per_page);
126 } elsif ($op eq "redo-matching") {
127 my $new_matcher_id = $input->param('new_matcher_id');
128 my $current_matcher_id = $input->param('current_matcher_id');
129 my $overlay_action = $input->param('overlay_action');
130 my $nomatch_action = $input->param('nomatch_action');
131 my $item_action = $input->param('item_action');
132 redo_matching
($template, $import_batch_id, $new_matcher_id, $current_matcher_id,
133 $overlay_action, $nomatch_action, $item_action);
134 import_records_list
($template, $import_batch_id, $offset, $results_per_page);
137 output_html_with_http_headers
$input, $cookie, $template->output;
142 my ($template, $import_batch_id, $new_matcher_id, $current_matcher_id, $overlay_action, $nomatch_action, $item_action) = @_;
143 my $rematch_failed = 0;
144 return if not defined $new_matcher_id and not defined $current_matcher_id;
145 my $old_overlay_action = GetImportBatchOverlayAction
($import_batch_id);
146 my $old_nomatch_action = GetImportBatchNoMatchAction
($import_batch_id);
147 my $old_item_action = GetImportBatchItemAction
($import_batch_id);
148 return if $new_matcher_id eq $current_matcher_id and
149 $old_overlay_action eq $overlay_action and
150 $old_nomatch_action eq $nomatch_action and
151 $old_item_action eq $item_action;
153 if ($old_overlay_action ne $overlay_action) {
154 SetImportBatchOverlayAction
($import_batch_id, $overlay_action);
155 $template->param('changed_overlay_action' => 1);
157 if ($old_nomatch_action ne $nomatch_action) {
158 SetImportBatchNoMatchAction
($import_batch_id, $nomatch_action);
159 $template->param('changed_nomatch_action' => 1);
161 if ($old_item_action ne $item_action) {
162 SetImportBatchItemAction
($import_batch_id, $item_action);
163 $template->param('changed_item_action' => 1);
166 my $num_with_matches = 0;
167 if (defined $new_matcher_id and $new_matcher_id ne "") {
168 my $matcher = C4
::Matcher
->fetch($new_matcher_id);
169 if (defined $matcher) {
170 $num_with_matches = BatchFindDuplicates
($import_batch_id, $matcher);
171 SetImportBatchMatcher
($import_batch_id, $new_matcher_id);
176 $num_with_matches = BatchFindDuplicates
($import_batch_id, undef);
177 SetImportBatchMatcher
($import_batch_id, undef);
178 SetImportBatchOverlayAction
('create_new');
180 $template->param(rematch_failed
=> $rematch_failed);
181 $template->param(rematch_attempted
=> 1);
182 $template->param(num_with_matches
=> $num_with_matches);
185 sub create_labelbatch_from_importbatch
{
188 my $branch_code = C4
::Context
->userenv->{'branch'};
189 my $batch = C4
::Labels
::Batch
->new(branch_code
=> $branch_code);
190 my @items = GetItemNumbersFromImportBatch
($batch_id);
191 if (grep{$_ == 0} @items) {
192 warn sprintf('create_labelbatch_from_importbatch() : Call to C4::ImportBatch::GetItemNumbersFromImportBatch returned no item number(s) from import batch #%s.', $batch_id);
195 foreach my $item_number (@items) {
196 $err = $batch->add_item($item_number);
198 warn sprintf('create_labelbatch_from_importbatch() : Error attempting to add item #%s of import batch #%s to label batch.', $item_number, $batch_id);
202 return $batch->get_attr('batch_id');
205 sub import_batches_list
{
206 my ($template, $offset, $results_per_page) = @_;
207 my $batches = GetImportBatchRangeDesc
($offset, $results_per_page);
210 foreach my $batch (@
$batches) {
212 import_batch_id
=> $batch->{'import_batch_id'},
213 num_records
=> $batch->{'num_records'},
214 num_items
=> $batch->{'num_items'},
215 upload_timestamp
=> $batch->{'upload_timestamp'},
216 import_status
=> $batch->{'import_status'},
217 file_name
=> $batch->{'file_name'} || "($batch->{'batch_type'})",
218 comments
=> $batch->{'comments'},
219 can_clean
=> ($batch->{'import_status'} ne 'cleaned') ?
1 : 0,
220 record_type
=> $batch->{'record_type'},
223 $template->param(batch_list
=> \
@list);
224 my $num_batches = GetNumberOfNonZ3950ImportBatches
();
225 add_page_numbers
($template, $offset, $results_per_page, $num_batches);
226 $template->param(offset
=> $offset);
227 $template->param(range_top
=> $offset + $results_per_page - 1);
228 $template->param(num_results
=> $num_batches);
229 $template->param(results_per_page
=> $results_per_page);
234 my ($template, $import_batch_id, $framework) = @_;
237 my ( $num_added, $num_updated, $num_items_added,
238 $num_items_replaced, $num_items_errored, $num_ignored );
239 my $schema = Koha
::Database
->new->schema;
240 $schema->storage->txn_do(
242 my $callback = sub { };
243 if ($runinbackground) {
244 $job = put_in_background
($import_batch_id);
245 $callback = progress_callback
( $job, $dbh );
248 $num_added, $num_updated, $num_items_added,
249 $num_items_replaced, $num_items_errored, $num_ignored
251 = BatchCommitRecords
( $import_batch_id, $framework, 50,
258 num_added
=> $num_added,
259 num_updated
=> $num_updated,
260 num_items_added
=> $num_items_added,
261 num_items_replaced
=> $num_items_replaced,
262 num_items_errored
=> $num_items_errored,
263 num_ignored
=> $num_ignored
265 if ($runinbackground) {
266 $job->finish($results);
268 add_results_to_template
($template, $results);
273 my ($template, $import_batch_id) = @_;
277 $num_deleted, $num_errors, $num_reverted,
278 $num_items_deleted, $num_ignored
280 my $schema = Koha
::Database
->new->schema;
283 my $callback = sub { };
284 if ($runinbackground) {
285 $job = put_in_background
($import_batch_id);
286 $callback = progress_callback
( $job, $dbh );
289 $num_deleted, $num_errors, $num_reverted,
290 $num_items_deleted, $num_ignored
291 ) = BatchRevertRecords
( $import_batch_id, 50, $callback );
297 num_deleted
=> $num_deleted,
298 num_items_deleted
=> $num_items_deleted,
299 num_errors
=> $num_errors,
300 num_reverted
=> $num_reverted,
301 num_ignored
=> $num_ignored,
303 if ($runinbackground) {
304 $job->finish($results);
306 add_results_to_template
($template, $results);
310 sub put_in_background
{
311 my $import_batch_id = shift;
313 my $batch = GetImportBatch
($import_batch_id);
314 my $job = C4
::BackgroundJob
->new($sessionID, $batch->{'file_name'}, '/cgi-bin/koha/tools/manage-marc-import.pl', $batch->{'num_records'});
315 my $jobID = $job->id();
318 if (my $pid = fork) {
320 # return job ID as JSON
322 # prevent parent exiting from
323 # destroying the kid's database handle
324 # FIXME: according to DBI doc, this may not work for Oracle
325 $dbh->{InactiveDestroy
} = 1;
327 my $reply = CGI
->new("");
328 print $reply->header(-type
=> 'text/html');
329 print '{"jobID":"' . $jobID . '"}';
331 } elsif (defined $pid) {
333 # close STDOUT to signal to Apache that
334 # we're now running in the background
338 # fork failed, so exit immediately
339 warn "fork failed while attempting to run tools/manage-marc-import.pl as a background job";
345 sub progress_callback
{
349 my $progress = shift;
350 $job->progress($progress);
355 sub add_results_to_template
{
356 my $template = shift;
358 $template->param(map { $_ => $results->{$_} } keys %{ $results });
361 sub add_saved_job_results_to_template
{
362 my $template = shift;
363 my $completedJobID = shift;
364 my $job = C4
::BackgroundJob
->fetch($sessionID, $completedJobID);
365 my $results = $job->results();
366 add_results_to_template
($template, $results);
369 sub import_records_list
{
370 my ($template, $import_batch_id, $offset, $results_per_page) = @_;
372 my $batch = GetImportBatch
($import_batch_id);
373 $template->param(import_batch_id
=> $import_batch_id);
375 my $overlay_action = GetImportBatchOverlayAction
($import_batch_id);
376 $template->param("overlay_action_${overlay_action}" => 1);
377 $template->param(overlay_action
=> $overlay_action);
379 my $nomatch_action = GetImportBatchNoMatchAction
($import_batch_id);
380 $template->param("nomatch_action_${nomatch_action}" => 1);
381 $template->param(nomatch_action
=> $nomatch_action);
383 my $item_action = GetImportBatchItemAction
($import_batch_id);
384 $template->param("item_action_${item_action}" => 1);
385 $template->param(item_action
=> $item_action);
387 batch_info
($template, $batch);
392 my ($template, $batch) = @_;
393 $template->param(batch_info
=> 1);
394 $template->param(file_name
=> $batch->{'file_name'});
395 $template->param(comments
=> $batch->{'comments'});
396 $template->param(import_status
=> $batch->{'import_status'});
397 $template->param(upload_timestamp
=> $batch->{'upload_timestamp'});
398 $template->{VARS
}->{'record_type'} = $batch->{'record_type'};
399 $template->param(num_records
=> $batch->{'num_records'});
400 $template->param(num_items
=> $batch->{'num_items'});
401 if ($batch->{'import_status'} ne 'cleaned') {
402 $template->param(can_clean
=> 1);
404 if ($batch->{'num_records'} > 0) {
405 if ($batch->{'import_status'} eq 'staged' or $batch->{'import_status'} eq 'reverted') {
406 $template->param(can_commit
=> 1);
408 if ($batch->{'import_status'} eq 'imported') {
409 $template->param(can_revert
=> 1);
412 if (defined $batch->{'matcher_id'}) {
413 my $matcher = C4
::Matcher
->fetch($batch->{'matcher_id'});
414 if (defined $matcher) {
415 $template->param('current_matcher_id' => $batch->{'matcher_id'});
416 $template->param('current_matcher_code' => $matcher->code());
417 $template->param('current_matcher_description' => $matcher->description());
420 add_matcher_list
($template,$batch->{'matcher_id'});
423 sub add_matcher_list
{
424 my ($template,$current_matcher_id) = @_;
425 my @matchers = C4
::Matcher
::GetMatcherList
();
426 if (defined $current_matcher_id) {
427 for (my $i = 0; $i <= $#matchers; $i++) {
428 if ($matchers[$i]->{'matcher_id'} eq $current_matcher_id) {
429 $matchers[$i]->{'selected'} = 1;
433 $template->param(available_matchers
=> \
@matchers);
436 sub add_page_numbers
{
437 my ($template, $offset, $results_per_page, $total_results) = @_;
438 my $max_pages = POSIX
::ceil
($total_results / $results_per_page);
439 return if $max_pages < 2;
440 my $current_page = int($offset / $results_per_page) + 1;
442 for (my $i = 1; $i <= $max_pages; $i++) {
445 current_page
=> ($current_page == $i) ?
1 : 0,
446 offset
=> ($i - 1) * $results_per_page
449 $template->param(pages
=> \
@pages);