Bug 15030 - Certain values in serials' items are lost on next edit
[koha.git] / C4 / ImportBatch.pm
1 package C4::ImportBatch;
2
3 # Copyright (C) 2007 LibLime, 2012 C & P Bibliography Services
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
16 #
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>.
19
20 use strict;
21 use warnings;
22
23 use C4::Context;
24 use C4::Koha;
25 use C4::Biblio;
26 use C4::Items;
27 use C4::Charset;
28 use C4::AuthoritiesMarc;
29 use C4::MarcModificationTemplates;
30 use Koha::Plugins::Handler;
31 use Koha::Logger;
32
33 use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
34
35 BEGIN {
36         require Exporter;
37         @ISA    = qw(Exporter);
38         @EXPORT = qw(
39     GetZ3950BatchId
40     GetWebserviceBatchId
41     GetImportRecordMarc
42     GetImportRecordMarcXML
43     AddImportBatch
44     GetImportBatch
45     AddAuthToBatch
46     AddBiblioToBatch
47     AddItemsToImportBiblio
48     ModAuthorityInBatch
49     ModBiblioInBatch
50
51     BatchStageMarcRecords
52     BatchFindDuplicates
53     BatchCommitRecords
54     BatchRevertRecords
55     CleanBatch
56     DeleteBatch
57
58     GetAllImportBatches
59     GetStagedWebserviceBatches
60     GetImportBatchRangeDesc
61     GetNumberOfNonZ3950ImportBatches
62     GetImportBiblios
63     GetImportRecordsRange
64         GetItemNumbersFromImportBatch
65     
66     GetImportBatchStatus
67     SetImportBatchStatus
68     GetImportBatchOverlayAction
69     SetImportBatchOverlayAction
70     GetImportBatchNoMatchAction
71     SetImportBatchNoMatchAction
72     GetImportBatchItemAction
73     SetImportBatchItemAction
74     GetImportBatchMatcher
75     SetImportBatchMatcher
76     GetImportRecordOverlayStatus
77     SetImportRecordOverlayStatus
78     GetImportRecordStatus
79     SetImportRecordStatus
80     GetImportRecordMatches
81     SetImportRecordMatches
82         );
83 }
84
85 our $logger = Koha::Logger->get( { category => 'C4.ImportBatch' } );
86
87 =head1 NAME
88
89 C4::ImportBatch - manage batches of imported MARC records
90
91 =head1 SYNOPSIS
92
93 use C4::ImportBatch;
94
95 =head1 FUNCTIONS
96
97 =head2 GetZ3950BatchId
98
99   my $batchid = GetZ3950BatchId($z3950server);
100
101 Retrieves the ID of the import batch for the Z39.50
102 reservoir for the given target.  If necessary,
103 creates the import batch.
104
105 =cut
106
107 sub GetZ3950BatchId {
108     my ($z3950server) = @_;
109
110     my $dbh = C4::Context->dbh;
111     my $sth = $dbh->prepare("SELECT import_batch_id FROM import_batches
112                              WHERE  batch_type = 'z3950'
113                              AND    file_name = ?");
114     $sth->execute($z3950server);
115     my $rowref = $sth->fetchrow_arrayref();
116     $sth->finish();
117     if (defined $rowref) {
118         return $rowref->[0];
119     } else {
120         my $batch_id = AddImportBatch( {
121                 overlay_action => 'create_new',
122                 import_status => 'staged',
123                 batch_type => 'z3950',
124                 file_name => $z3950server,
125             } );
126         return $batch_id;
127     }
128     
129 }
130
131 =head2 GetWebserviceBatchId
132
133   my $batchid = GetWebserviceBatchId();
134
135 Retrieves the ID of the import batch for webservice.
136 If necessary, creates the import batch.
137
138 =cut
139
140 my $WEBSERVICE_BASE_QRY = <<EOQ;
141 SELECT import_batch_id FROM import_batches
142 WHERE  batch_type = 'webservice'
143 AND    import_status = 'staged'
144 EOQ
145 sub GetWebserviceBatchId {
146     my ($params) = @_;
147
148     my $dbh = C4::Context->dbh;
149     my $sql = $WEBSERVICE_BASE_QRY;
150     my @args;
151     foreach my $field (qw(matcher_id overlay_action nomatch_action item_action)) {
152         if (my $val = $params->{$field}) {
153             $sql .= " AND $field = ?";
154             push @args, $val;
155         }
156     }
157     my $id = $dbh->selectrow_array($sql, undef, @args);
158     return $id if $id;
159
160     $params->{batch_type} = 'webservice';
161     $params->{import_status} = 'staged';
162     return AddImportBatch($params);
163 }
164
165 =head2 GetImportRecordMarc
166
167   my ($marcblob, $encoding) = GetImportRecordMarc($import_record_id);
168
169 =cut
170
171 sub GetImportRecordMarc {
172     my ($import_record_id) = @_;
173
174     my $dbh = C4::Context->dbh;
175     my ( $marc, $encoding ) = $dbh->selectrow_array(q|
176         SELECT marc, encoding
177         FROM import_records
178         WHERE import_record_id = ?
179     |, undef, $import_record_id );
180
181     return $marc, $encoding;
182 }
183
184 sub GetRecordFromImportBiblio {
185     my ( $import_record_id, $embed_items ) = @_;
186
187     my ($marc) = GetImportRecordMarc($import_record_id);
188     my $record = MARC::Record->new_from_usmarc($marc);
189
190     EmbedItemsInImportBiblio( $record, $import_record_id ) if $embed_items;
191
192     return $record;
193 }
194
195 sub EmbedItemsInImportBiblio {
196     my ( $record, $import_record_id ) = @_;
197     my ( $itemtag, $itemsubfield ) = GetMarcFromKohaField("items.itemnumber", '');
198     my $dbh = C4::Context->dbh;
199     my $import_items = $dbh->selectall_arrayref(q|
200         SELECT import_items.marcxml
201         FROM import_items
202         WHERE import_record_id = ?
203     |, { Slice => {} }, $import_record_id );
204     my @item_fields;
205     for my $import_item ( @$import_items ) {
206         my $item_marc = MARC::Record::new_from_xml($import_item->{marcxml});
207         push @item_fields, $item_marc->field($itemtag);
208     }
209     $record->append_fields(@item_fields);
210     return $record;
211 }
212
213 =head2 GetImportRecordMarcXML
214
215   my $marcxml = GetImportRecordMarcXML($import_record_id);
216
217 =cut
218
219 sub GetImportRecordMarcXML {
220     my ($import_record_id) = @_;
221
222     my $dbh = C4::Context->dbh;
223     my $sth = $dbh->prepare("SELECT marcxml FROM import_records WHERE import_record_id = ?");
224     $sth->execute($import_record_id);
225     my ($marcxml) = $sth->fetchrow();
226     $sth->finish();
227     return $marcxml;
228
229 }
230
231 =head2 AddImportBatch
232
233   my $batch_id = AddImportBatch($params_hash);
234
235 =cut
236
237 sub AddImportBatch {
238     my ($params) = @_;
239
240     my (@fields, @vals);
241     foreach (qw( matcher_id template_id branchcode
242                  overlay_action nomatch_action item_action
243                  import_status batch_type file_name comments record_type )) {
244         if (exists $params->{$_}) {
245             push @fields, $_;
246             push @vals, $params->{$_};
247         }
248     }
249     my $dbh = C4::Context->dbh;
250     $dbh->do("INSERT INTO import_batches (".join( ',', @fields).")
251                                   VALUES (".join( ',', map '?', @fields).")",
252              undef,
253              @vals);
254     return $dbh->{'mysql_insertid'};
255 }
256
257 =head2 GetImportBatch 
258
259   my $row = GetImportBatch($batch_id);
260
261 Retrieve a hashref of an import_batches row.
262
263 =cut
264
265 sub GetImportBatch {
266     my ($batch_id) = @_;
267
268     my $dbh = C4::Context->dbh;
269     my $sth = $dbh->prepare_cached("SELECT * FROM import_batches WHERE import_batch_id = ?");
270     $sth->bind_param(1, $batch_id);
271     $sth->execute();
272     my $result = $sth->fetchrow_hashref;
273     $sth->finish();
274     return $result;
275
276 }
277
278 =head2 AddBiblioToBatch 
279
280   my $import_record_id = AddBiblioToBatch($batch_id, $record_sequence, 
281                 $marc_record, $encoding, $z3950random, $update_counts);
282
283 =cut
284
285 sub AddBiblioToBatch {
286     my $batch_id = shift;
287     my $record_sequence = shift;
288     my $marc_record = shift;
289     my $encoding = shift;
290     my $z3950random = shift;
291     my $update_counts = @_ ? shift : 1;
292
293     my $import_record_id = _create_import_record($batch_id, $record_sequence, $marc_record, 'biblio', $encoding, $z3950random, C4::Context->preference('marcflavour'));
294     _add_biblio_fields($import_record_id, $marc_record);
295     _update_batch_record_counts($batch_id) if $update_counts;
296     return $import_record_id;
297 }
298
299 =head2 ModBiblioInBatch
300
301   ModBiblioInBatch($import_record_id, $marc_record);
302
303 =cut
304
305 sub ModBiblioInBatch {
306     my ($import_record_id, $marc_record) = @_;
307
308     _update_import_record_marc($import_record_id, $marc_record, C4::Context->preference('marcflavour'));
309     _update_biblio_fields($import_record_id, $marc_record);
310
311 }
312
313 =head2 AddAuthToBatch
314
315   my $import_record_id = AddAuthToBatch($batch_id, $record_sequence,
316                 $marc_record, $encoding, $z3950random, $update_counts, [$marc_type]);
317
318 =cut
319
320 sub AddAuthToBatch {
321     my $batch_id = shift;
322     my $record_sequence = shift;
323     my $marc_record = shift;
324     my $encoding = shift;
325     my $z3950random = shift;
326     my $update_counts = @_ ? shift : 1;
327     my $marc_type = shift || C4::Context->preference('marcflavour');
328
329     $marc_type = 'UNIMARCAUTH' if $marc_type eq 'UNIMARC';
330
331     my $import_record_id = _create_import_record($batch_id, $record_sequence, $marc_record, 'auth', $encoding, $z3950random, $marc_type);
332     _add_auth_fields($import_record_id, $marc_record);
333     _update_batch_record_counts($batch_id) if $update_counts;
334     return $import_record_id;
335 }
336
337 =head2 ModAuthInBatch
338
339   ModAuthInBatch($import_record_id, $marc_record);
340
341 =cut
342
343 sub ModAuthInBatch {
344     my ($import_record_id, $marc_record) = @_;
345
346     my $marcflavour = C4::Context->preference('marcflavour');
347     _update_import_record_marc($import_record_id, $marc_record, $marcflavour eq 'UNIMARC' ? 'UNIMARCAUTH' : 'USMARC');
348
349 }
350
351 =head2 BatchStageMarcRecords
352
353 ( $batch_id, $num_records, $num_items, @invalid_records ) =
354   BatchStageMarcRecords(
355     $encoding,                   $marc_records,
356     $file_name,                  $to_marc_plugin,
357     $marc_modification_template, $comments,
358     $branch_code,                $parse_items,
359     $leave_as_staging,           $progress_interval,
360     $progress_callback
361   );
362
363 =cut
364
365 sub BatchStageMarcRecords {
366     my $record_type = shift;
367     my $encoding = shift;
368     my $marc_records = shift;
369     my $file_name = shift;
370     my $to_marc_plugin = shift;
371     my $marc_modification_template = shift;
372     my $comments = shift;
373     my $branch_code = shift;
374     my $parse_items = shift;
375     my $leave_as_staging = shift;
376
377     # optional callback to monitor status 
378     # of job
379     my $progress_interval = 0;
380     my $progress_callback = undef;
381     if ($#_ == 1) {
382         $progress_interval = shift;
383         $progress_callback = shift;
384         $progress_interval = 0 unless $progress_interval =~ /^\d+$/ and $progress_interval > 0;
385         $progress_interval = 0 unless 'CODE' eq ref $progress_callback;
386     } 
387     
388     my $batch_id = AddImportBatch( {
389             overlay_action => 'create_new',
390             import_status => 'staging',
391             batch_type => 'batch',
392             file_name => $file_name,
393             comments => $comments,
394             record_type => $record_type,
395         } );
396     if ($parse_items) {
397         SetImportBatchItemAction($batch_id, 'always_add');
398     } else {
399         SetImportBatchItemAction($batch_id, 'ignore');
400     }
401
402     $marc_records = Koha::Plugins::Handler->run(
403         {
404             class  => $to_marc_plugin,
405             method => 'to_marc',
406             params => { data => $marc_records }
407         }
408     ) if $to_marc_plugin;
409
410     my $marc_type = C4::Context->preference('marcflavour');
411     $marc_type .= 'AUTH' if ($marc_type eq 'UNIMARC' && $record_type eq 'auth');
412     my @invalid_records = ();
413     my $num_valid = 0;
414     my $num_items = 0;
415     # FIXME - for now, we're dealing only with bibs
416     my $rec_num = 0;
417     foreach my $marc_blob (split(/\x1D/, $marc_records)) {
418         $marc_blob =~ s/^\s+//g;
419         $marc_blob =~ s/\s+$//g;
420         next unless $marc_blob;
421         $rec_num++;
422         if ($progress_interval and (0 == ($rec_num % $progress_interval))) {
423             &$progress_callback($rec_num);
424         }
425         my ($marc_record, $charset_guessed, $char_errors) =
426             MarcToUTF8Record($marc_blob, $marc_type, $encoding);
427
428         $encoding = $charset_guessed unless $encoding;
429
430         ModifyRecordWithTemplate( $marc_modification_template, $marc_record ) if ( $marc_modification_template );
431
432         my $import_record_id;
433         if (scalar($marc_record->fields()) == 0) {
434             push @invalid_records, $marc_blob;
435         } else {
436
437             # Normalize the record so it doesn't have separated diacritics
438             SetUTF8Flag($marc_record);
439
440             $num_valid++;
441             if ($record_type eq 'biblio') {
442                 $import_record_id = AddBiblioToBatch($batch_id, $rec_num, $marc_record, $encoding, int(rand(99999)), 0);
443                 if ($parse_items) {
444                     my @import_items_ids = AddItemsToImportBiblio($batch_id, $import_record_id, $marc_record, 0);
445                     $num_items += scalar(@import_items_ids);
446                 }
447             } elsif ($record_type eq 'auth') {
448                 $import_record_id = AddAuthToBatch($batch_id, $rec_num, $marc_record, $encoding, int(rand(99999)), 0, $marc_type);
449             }
450         }
451     }
452     unless ($leave_as_staging) {
453         SetImportBatchStatus($batch_id, 'staged');
454     }
455     # FIXME branch_code, number of bibs, number of items
456     _update_batch_record_counts($batch_id);
457     return ($batch_id, $num_valid, $num_items, @invalid_records);
458 }
459
460 =head2 AddItemsToImportBiblio
461
462   my @import_items_ids = AddItemsToImportBiblio($batch_id, 
463                 $import_record_id, $marc_record, $update_counts);
464
465 =cut
466
467 sub AddItemsToImportBiblio {
468     my $batch_id = shift;
469     my $import_record_id = shift;
470     my $marc_record = shift;
471     my $update_counts = @_ ? shift : 0;
472
473     my @import_items_ids = ();
474    
475     my $dbh = C4::Context->dbh; 
476     my ($item_tag,$item_subfield) = &GetMarcFromKohaField("items.itemnumber",'');
477     foreach my $item_field ($marc_record->field($item_tag)) {
478         my $item_marc = MARC::Record->new();
479         $item_marc->leader("00000    a              "); # must set Leader/09 to 'a'
480         $item_marc->append_fields($item_field);
481         $marc_record->delete_field($item_field);
482         my $sth = $dbh->prepare_cached("INSERT INTO import_items (import_record_id, status, marcxml)
483                                         VALUES (?, ?, ?)");
484         $sth->bind_param(1, $import_record_id);
485         $sth->bind_param(2, 'staged');
486         $sth->bind_param(3, $item_marc->as_xml());
487         $sth->execute();
488         push @import_items_ids, $dbh->{'mysql_insertid'};
489         $sth->finish();
490     }
491
492     if ($#import_items_ids > -1) {
493         _update_batch_record_counts($batch_id) if $update_counts;
494         _update_import_record_marc($import_record_id, $marc_record, C4::Context->preference('marcflavour'));
495     }
496     return @import_items_ids;
497 }
498
499 =head2 BatchFindDuplicates
500
501   my $num_with_matches = BatchFindDuplicates($batch_id, $matcher,
502              $max_matches, $progress_interval, $progress_callback);
503
504 Goes through the records loaded in the batch and attempts to 
505 find duplicates for each one.  Sets the matching status 
506 of each record to "no_match" or "auto_match" as appropriate.
507
508 The $max_matches parameter is optional; if it is not supplied,
509 it defaults to 10.
510
511 The $progress_interval and $progress_callback parameters are 
512 optional; if both are supplied, the sub referred to by
513 $progress_callback will be invoked every $progress_interval
514 records using the number of records processed as the 
515 singular argument.
516
517 =cut
518
519 sub BatchFindDuplicates {
520     my $batch_id = shift;
521     my $matcher = shift;
522     my $max_matches = @_ ? shift : 10;
523
524     # optional callback to monitor status 
525     # of job
526     my $progress_interval = 0;
527     my $progress_callback = undef;
528     if ($#_ == 1) {
529         $progress_interval = shift;
530         $progress_callback = shift;
531         $progress_interval = 0 unless $progress_interval =~ /^\d+$/ and $progress_interval > 0;
532         $progress_interval = 0 unless 'CODE' eq ref $progress_callback;
533     }
534
535     my $dbh = C4::Context->dbh;
536
537     my $sth = $dbh->prepare("SELECT import_record_id, record_type, marc
538                              FROM import_records
539                              WHERE import_batch_id = ?");
540     $sth->execute($batch_id);
541     my $num_with_matches = 0;
542     my $rec_num = 0;
543     while (my $rowref = $sth->fetchrow_hashref) {
544         $rec_num++;
545         if ($progress_interval and (0 == ($rec_num % $progress_interval))) {
546             &$progress_callback($rec_num);
547         }
548         my $marc_record = MARC::Record->new_from_usmarc($rowref->{'marc'});
549         my @matches = ();
550         if (defined $matcher) {
551             @matches = $matcher->get_matches($marc_record, $max_matches);
552         }
553         if (scalar(@matches) > 0) {
554             $num_with_matches++;
555             SetImportRecordMatches($rowref->{'import_record_id'}, @matches);
556             SetImportRecordOverlayStatus($rowref->{'import_record_id'}, 'auto_match');
557         } else {
558             SetImportRecordMatches($rowref->{'import_record_id'}, ());
559             SetImportRecordOverlayStatus($rowref->{'import_record_id'}, 'no_match');
560         }
561     }
562     $sth->finish();
563     return $num_with_matches;
564 }
565
566 =head2 BatchCommitRecords
567
568   my ($num_added, $num_updated, $num_items_added, $num_items_replaced, $num_items_errored, $num_ignored) =
569         BatchCommitRecords($batch_id, $framework,
570         $progress_interval, $progress_callback);
571
572 =cut
573
574 sub BatchCommitRecords {
575     my $batch_id = shift;
576     my $framework = shift;
577
578     # optional callback to monitor status 
579     # of job
580     my $progress_interval = 0;
581     my $progress_callback = undef;
582     if ($#_ == 1) {
583         $progress_interval = shift;
584         $progress_callback = shift;
585         $progress_interval = 0 unless $progress_interval =~ /^\d+$/ and $progress_interval > 0;
586         $progress_interval = 0 unless 'CODE' eq ref $progress_callback;
587     }
588
589     my $record_type;
590     my $num_added = 0;
591     my $num_updated = 0;
592     my $num_items_added = 0;
593     my $num_items_replaced = 0;
594     my $num_items_errored = 0;
595     my $num_ignored = 0;
596     # commit (i.e., save, all records in the batch)
597     SetImportBatchStatus('importing');
598     my $overlay_action = GetImportBatchOverlayAction($batch_id);
599     my $nomatch_action = GetImportBatchNoMatchAction($batch_id);
600     my $item_action = GetImportBatchItemAction($batch_id);
601     my $item_tag;
602     my $item_subfield;
603     my $dbh = C4::Context->dbh;
604     my $sth = $dbh->prepare("SELECT import_records.import_record_id, record_type, status, overlay_status, marc, encoding
605                              FROM import_records
606                              LEFT JOIN import_auths ON (import_records.import_record_id=import_auths.import_record_id)
607                              LEFT JOIN import_biblios ON (import_records.import_record_id=import_biblios.import_record_id)
608                              WHERE import_batch_id = ?");
609     $sth->execute($batch_id);
610     my $marcflavour = C4::Context->preference('marcflavour');
611     my $rec_num = 0;
612     while (my $rowref = $sth->fetchrow_hashref) {
613         $record_type = $rowref->{'record_type'};
614         $rec_num++;
615         if ($progress_interval and (0 == ($rec_num % $progress_interval))) {
616             &$progress_callback($rec_num);
617         }
618         if ($rowref->{'status'} eq 'error' or $rowref->{'status'} eq 'imported') {
619             $num_ignored++;
620             next;
621         }
622
623         my $marc_type;
624         if ($marcflavour eq 'UNIMARC' && $record_type eq 'auth') {
625             $marc_type = 'UNIMARCAUTH';
626         } elsif ($marcflavour eq 'UNIMARC') {
627             $marc_type = 'UNIMARC';
628         } else {
629             $marc_type = 'USMARC';
630         }
631         my $marc_record = MARC::Record->new_from_usmarc($rowref->{'marc'});
632
633         if ($record_type eq 'biblio') {
634             # remove any item tags - rely on BatchCommitItems
635             ($item_tag,$item_subfield) = &GetMarcFromKohaField("items.itemnumber",'');
636             foreach my $item_field ($marc_record->field($item_tag)) {
637                 $marc_record->delete_field($item_field);
638             }
639         }
640
641         my ($record_result, $item_result, $record_match) =
642             _get_commit_action($overlay_action, $nomatch_action, $item_action, 
643                                $rowref->{'overlay_status'}, $rowref->{'import_record_id'}, $record_type);
644
645         my $recordid;
646         my $query;
647         if ($record_result eq 'create_new') {
648             $num_added++;
649             if ($record_type eq 'biblio') {
650                 my $biblioitemnumber;
651                 ($recordid, $biblioitemnumber) = AddBiblio($marc_record, $framework);
652                 $query = "UPDATE import_biblios SET matched_biblionumber = ? WHERE import_record_id = ?";
653                 if ($item_result eq 'create_new' || $item_result eq 'replace') {
654                     my ($bib_items_added, $bib_items_replaced, $bib_items_errored) = BatchCommitItems($rowref->{'import_record_id'}, $recordid, $item_result);
655                     $num_items_added += $bib_items_added;
656                     $num_items_replaced += $bib_items_replaced;
657                     $num_items_errored += $bib_items_errored;
658                 }
659             } else {
660                 $recordid = AddAuthority($marc_record, undef, GuessAuthTypeCode($marc_record));
661                 $query = "UPDATE import_auths SET matched_authid = ? WHERE import_record_id = ?";
662             }
663             my $sth = $dbh->prepare_cached($query);
664             $sth->execute($recordid, $rowref->{'import_record_id'});
665             $sth->finish();
666             SetImportRecordStatus($rowref->{'import_record_id'}, 'imported');
667         } elsif ($record_result eq 'replace') {
668             $num_updated++;
669             $recordid = $record_match;
670             my $oldxml;
671             if ($record_type eq 'biblio') {
672                 my $oldbiblio = GetBiblio($recordid);
673                 $oldxml = GetXmlBiblio($recordid);
674
675                 # remove item fields so that they don't get
676                 # added again if record is reverted
677                 # FIXME: GetXmlBiblio output should not contain item info any more! So the next foreach should not be needed. Does not hurt either; may remove old 952s that should not have been there anymore.
678                 my $old_marc = MARC::Record->new_from_xml(StripNonXmlChars($oldxml), 'UTF-8', $rowref->{'encoding'}, $marc_type);
679                 foreach my $item_field ($old_marc->field($item_tag)) {
680                     $old_marc->delete_field($item_field);
681                 }
682                 $oldxml = $old_marc->as_xml($marc_type);
683
684                 ModBiblio($marc_record, $recordid, $oldbiblio->{'frameworkcode'});
685                 $query = "UPDATE import_biblios SET matched_biblionumber = ? WHERE import_record_id = ?";
686
687                 if ($item_result eq 'create_new' || $item_result eq 'replace') {
688                     my ($bib_items_added, $bib_items_replaced, $bib_items_errored) = BatchCommitItems($rowref->{'import_record_id'}, $recordid, $item_result);
689                     $num_items_added += $bib_items_added;
690                     $num_items_replaced += $bib_items_replaced;
691                     $num_items_errored += $bib_items_errored;
692                 }
693             } else {
694                 $oldxml = GetAuthorityXML($recordid);
695
696                 ModAuthority($recordid, $marc_record, GuessAuthTypeCode($marc_record));
697                 $query = "UPDATE import_auths SET matched_authid = ? WHERE import_record_id = ?";
698             }
699             my $sth = $dbh->prepare_cached("UPDATE import_records SET marcxml_old = ? WHERE import_record_id = ?");
700             $sth->execute($oldxml, $rowref->{'import_record_id'});
701             $sth->finish();
702             my $sth2 = $dbh->prepare_cached($query);
703             $sth2->execute($recordid, $rowref->{'import_record_id'});
704             $sth2->finish();
705             SetImportRecordOverlayStatus($rowref->{'import_record_id'}, 'match_applied');
706             SetImportRecordStatus($rowref->{'import_record_id'}, 'imported');
707         } elsif ($record_result eq 'ignore') {
708             $recordid = $record_match;
709             $num_ignored++;
710             $recordid = $record_match;
711             if ($record_type eq 'biblio' and defined $recordid and ( $item_result eq 'create_new' || $item_result eq 'replace' ) ) {
712                 my ($bib_items_added, $bib_items_replaced, $bib_items_errored) = BatchCommitItems($rowref->{'import_record_id'}, $recordid, $item_result);
713                 $num_items_added += $bib_items_added;
714          $num_items_replaced += $bib_items_replaced;
715                 $num_items_errored += $bib_items_errored;
716                 # still need to record the matched biblionumber so that the
717                 # items can be reverted
718                 my $sth2 = $dbh->prepare_cached("UPDATE import_biblios SET matched_biblionumber = ? WHERE import_record_id = ?");
719                 $sth2->execute($recordid, $rowref->{'import_record_id'});
720                 SetImportRecordOverlayStatus($rowref->{'import_record_id'}, 'match_applied');
721             }
722             SetImportRecordStatus($rowref->{'import_record_id'}, 'ignored');
723         }
724     }
725     $sth->finish();
726     SetImportBatchStatus($batch_id, 'imported');
727     return ($num_added, $num_updated, $num_items_added, $num_items_replaced, $num_items_errored, $num_ignored);
728 }
729
730 =head2 BatchCommitItems
731
732   ($num_items_added, $num_items_errored) = 
733          BatchCommitItems($import_record_id, $biblionumber);
734
735 =cut
736
737 sub BatchCommitItems {
738     my ( $import_record_id, $biblionumber, $action ) = @_;
739
740     my $dbh = C4::Context->dbh;
741
742     my $num_items_added = 0;
743     my $num_items_errored = 0;
744     my $num_items_replaced = 0;
745
746     my $sth = $dbh->prepare( "
747         SELECT import_items_id, import_items.marcxml, encoding
748         FROM import_items
749         JOIN import_records USING (import_record_id)
750         WHERE import_record_id = ?
751         ORDER BY import_items_id
752     " );
753     $sth->bind_param( 1, $import_record_id );
754     $sth->execute();
755
756     while ( my $row = $sth->fetchrow_hashref() ) {
757         my $item_marc = MARC::Record->new_from_xml( StripNonXmlChars( $row->{'marcxml'} ), 'UTF-8', $row->{'encoding'} );
758
759         # Delete date_due subfield as to not accidentally delete item checkout due dates
760         my ( $MARCfield, $MARCsubfield ) = GetMarcFromKohaField( 'items.onloan', GetFrameworkCode($biblionumber) );
761         $item_marc->field($MARCfield)->delete_subfield( code => $MARCsubfield );
762
763         my $item = TransformMarcToKoha( $item_marc );
764
765         my $duplicate_barcode = exists( $item->{'barcode'} ) && GetItemnumberFromBarcode( $item->{'barcode'} );
766         my $duplicate_itemnumber = exists( $item->{'itemnumber'} );
767
768         my $updsth = $dbh->prepare("UPDATE import_items SET status = ?, itemnumber = ? WHERE import_items_id = ?");
769         if ( $action eq "replace" && $duplicate_itemnumber ) {
770             # Duplicate itemnumbers have precedence, that way we can update barcodes by overlaying
771             ModItemFromMarc( $item_marc, $biblionumber, $item->{itemnumber} );
772             $updsth->bind_param( 1, 'imported' );
773             $updsth->bind_param( 2, $item->{itemnumber} );
774             $updsth->bind_param( 3, $row->{'import_items_id'} );
775             $updsth->execute();
776             $updsth->finish();
777             $num_items_replaced++;
778         } elsif ( $action eq "replace" && $duplicate_barcode ) {
779             my $itemnumber = GetItemnumberFromBarcode( $item->{'barcode'} );
780             ModItemFromMarc( $item_marc, $biblionumber, $itemnumber );
781             $updsth->bind_param( 1, 'imported' );
782             $updsth->bind_param( 2, $item->{itemnumber} );
783             $updsth->bind_param( 3, $row->{'import_items_id'} );
784             $updsth->execute();
785             $updsth->finish();
786             $num_items_replaced++;
787         } elsif ($duplicate_barcode) {
788             $updsth->bind_param( 1, 'error' );
789             $updsth->bind_param( 2, 'duplicate item barcode' );
790             $updsth->bind_param( 3, $row->{'import_items_id'} );
791             $updsth->execute();
792             $num_items_errored++;
793         } else {
794             my ( $item_biblionumber, $biblioitemnumber, $itemnumber ) = AddItemFromMarc( $item_marc, $biblionumber );
795             if( $itemnumber ) {
796                 $updsth->bind_param( 1, 'imported' );
797                 $updsth->bind_param( 2, $itemnumber );
798                 $updsth->bind_param( 3, $row->{'import_items_id'} );
799                 $updsth->execute();
800                 $updsth->finish();
801                 $num_items_added++;
802             }
803         }
804     }
805
806     return ( $num_items_added, $num_items_replaced, $num_items_errored );
807 }
808
809 =head2 BatchRevertRecords
810
811   my ($num_deleted, $num_errors, $num_reverted, $num_items_deleted, 
812       $num_ignored) = BatchRevertRecords($batch_id);
813
814 =cut
815
816 sub BatchRevertRecords {
817     my $batch_id = shift;
818
819     $logger->trace("C4::ImportBatch::BatchRevertRecords( $batch_id )");
820
821     my $record_type;
822     my $num_deleted = 0;
823     my $num_errors = 0;
824     my $num_reverted = 0;
825     my $num_ignored = 0;
826     my $num_items_deleted = 0;
827     # commit (i.e., save, all records in the batch)
828     SetImportBatchStatus('reverting');
829     my $overlay_action = GetImportBatchOverlayAction($batch_id);
830     my $nomatch_action = GetImportBatchNoMatchAction($batch_id);
831     my $dbh = C4::Context->dbh;
832     my $sth = $dbh->prepare("SELECT import_records.import_record_id, record_type, status, overlay_status, marcxml_old, encoding, matched_biblionumber, matched_authid
833                              FROM import_records
834                              LEFT JOIN import_auths ON (import_records.import_record_id=import_auths.import_record_id)
835                              LEFT JOIN import_biblios ON (import_records.import_record_id=import_biblios.import_record_id)
836                              WHERE import_batch_id = ?");
837     $sth->execute($batch_id);
838     my $marc_type;
839     my $marcflavour = C4::Context->preference('marcflavour');
840     while (my $rowref = $sth->fetchrow_hashref) {
841         $record_type = $rowref->{'record_type'};
842         if ($rowref->{'status'} eq 'error' or $rowref->{'status'} eq 'reverted') {
843             $num_ignored++;
844             next;
845         }
846         if ($marcflavour eq 'UNIMARC' && $record_type eq 'auth') {
847             $marc_type = 'UNIMARCAUTH';
848         } elsif ($marcflavour eq 'UNIMARC') {
849             $marc_type = 'UNIMARC';
850         } else {
851             $marc_type = 'USMARC';
852         }
853
854         my $record_result = _get_revert_action($overlay_action, $rowref->{'overlay_status'}, $rowref->{'status'});
855
856         if ($record_result eq 'delete') {
857             my $error = undef;
858             if  ($record_type eq 'biblio') {
859                 $num_items_deleted += BatchRevertItems($rowref->{'import_record_id'}, $rowref->{'matched_biblionumber'});
860                 $error = DelBiblio($rowref->{'matched_biblionumber'});
861             } else {
862                 my $deletedauthid = DelAuthority($rowref->{'matched_authid'});
863             }
864             if (defined $error) {
865                 $num_errors++;
866             } else {
867                 $num_deleted++;
868                 SetImportRecordStatus($rowref->{'import_record_id'}, 'reverted');
869             }
870         } elsif ($record_result eq 'restore') {
871             $num_reverted++;
872             my $old_record = MARC::Record->new_from_xml(StripNonXmlChars($rowref->{'marcxml_old'}), 'UTF-8', $rowref->{'encoding'}, $marc_type);
873             if ($record_type eq 'biblio') {
874                 my $biblionumber = $rowref->{'matched_biblionumber'};
875                 my $oldbiblio = GetBiblio($biblionumber);
876
877                 $logger->info("C4::ImportBatch::BatchRevertRecords: Biblio record $biblionumber does not exist, restoration of this record was skipped") unless $oldbiblio;
878                 next unless $oldbiblio; # Record has since been deleted. Deleted records should stay deleted.
879
880                 $num_items_deleted += BatchRevertItems($rowref->{'import_record_id'}, $rowref->{'matched_biblionumber'});
881                 ModBiblio($old_record, $biblionumber, $oldbiblio->{'frameworkcode'});
882             } else {
883                 my $authid = $rowref->{'matched_authid'};
884                 ModAuthority($authid, $old_record, GuessAuthTypeCode($old_record));
885             }
886             SetImportRecordStatus($rowref->{'import_record_id'}, 'reverted');
887         } elsif ($record_result eq 'ignore') {
888             if ($record_type eq 'biblio') {
889                 $num_items_deleted += BatchRevertItems($rowref->{'import_record_id'}, $rowref->{'matched_biblionumber'});
890             }
891             SetImportRecordStatus($rowref->{'import_record_id'}, 'reverted');
892         }
893         my $query;
894         if ($record_type eq 'biblio') {
895             # remove matched_biblionumber only if there is no 'imported' item left
896             $query = "UPDATE import_biblios SET matched_biblionumber = NULL WHERE import_record_id = ?";
897             $query = "UPDATE import_biblios SET matched_biblionumber = NULL WHERE import_record_id = ?  AND NOT EXISTS (SELECT * FROM import_items WHERE import_items.import_record_id=import_biblios.import_record_id and status='imported')";
898         } else {
899             $query = "UPDATE import_auths SET matched_authid = NULL WHERE import_record_id = ?";
900         }
901         my $sth2 = $dbh->prepare_cached($query);
902         $sth2->execute($rowref->{'import_record_id'});
903     }
904
905     $sth->finish();
906     SetImportBatchStatus($batch_id, 'reverted');
907     return ($num_deleted, $num_errors, $num_reverted, $num_items_deleted, $num_ignored);
908 }
909
910 =head2 BatchRevertItems
911
912   my $num_items_deleted = BatchRevertItems($import_record_id, $biblionumber);
913
914 =cut
915
916 sub BatchRevertItems {
917     my ($import_record_id, $biblionumber) = @_;
918
919     my $dbh = C4::Context->dbh;
920     my $num_items_deleted = 0;
921
922     my $sth = $dbh->prepare_cached("SELECT import_items_id, itemnumber
923                                    FROM import_items
924                                    JOIN items USING (itemnumber)
925                                    WHERE import_record_id = ?");
926     $sth->bind_param(1, $import_record_id);
927     $sth->execute();
928     while (my $row = $sth->fetchrow_hashref()) {
929         my $error = DelItemCheck($dbh, $biblionumber, $row->{'itemnumber'});
930         if ($error == 1){
931             my $updsth = $dbh->prepare("UPDATE import_items SET status = ? WHERE import_items_id = ?");
932             $updsth->bind_param(1, 'reverted');
933             $updsth->bind_param(2, $row->{'import_items_id'});
934             $updsth->execute();
935             $updsth->finish();
936             $num_items_deleted++;
937         }
938         else {
939             next;
940         }
941     }
942     $sth->finish();
943     return $num_items_deleted;
944 }
945
946 =head2 CleanBatch
947
948   CleanBatch($batch_id)
949
950 Deletes all staged records from the import batch
951 and sets the status of the batch to 'cleaned'.  Note
952 that deleting a stage record does *not* affect
953 any record that has been committed to the database.
954
955 =cut
956
957 sub CleanBatch {
958     my $batch_id = shift;
959     return unless defined $batch_id;
960
961     C4::Context->dbh->do('DELETE FROM import_records WHERE import_batch_id = ?', {}, $batch_id);
962     SetImportBatchStatus($batch_id, 'cleaned');
963 }
964
965 =head2 DeleteBatch
966
967   DeleteBatch($batch_id)
968
969 Deletes the record from the database. This can only be done
970 once the batch has been cleaned.
971
972 =cut
973
974 sub DeleteBatch {
975     my $batch_id = shift;
976     return unless defined $batch_id;
977
978     my $dbh = C4::Context->dbh;
979     my $sth = $dbh->prepare('DELETE FROM import_batches WHERE import_batch_id = ?');
980     $sth->execute( $batch_id );
981 }
982
983 =head2 GetAllImportBatches
984
985   my $results = GetAllImportBatches();
986
987 Returns a references to an array of hash references corresponding
988 to all import_batches rows (of batch_type 'batch'), sorted in 
989 ascending order by import_batch_id.
990
991 =cut
992
993 sub  GetAllImportBatches {
994     my $dbh = C4::Context->dbh;
995     my $sth = $dbh->prepare_cached("SELECT * FROM import_batches
996                                     WHERE batch_type IN ('batch', 'webservice')
997                                     ORDER BY import_batch_id ASC");
998
999     my $results = [];
1000     $sth->execute();
1001     while (my $row = $sth->fetchrow_hashref) {
1002         push @$results, $row;
1003     }
1004     $sth->finish();
1005     return $results;
1006 }
1007
1008 =head2 GetStagedWebserviceBatches
1009
1010   my $batch_ids = GetStagedWebserviceBatches();
1011
1012 Returns a references to an array of batch id's
1013 of batch_type 'webservice' that are not imported
1014
1015 =cut
1016
1017 my $PENDING_WEBSERVICE_BATCHES_QRY = <<EOQ;
1018 SELECT import_batch_id FROM import_batches
1019 WHERE batch_type = 'webservice'
1020 AND import_status = 'staged'
1021 EOQ
1022 sub  GetStagedWebserviceBatches {
1023     my $dbh = C4::Context->dbh;
1024     return $dbh->selectcol_arrayref($PENDING_WEBSERVICE_BATCHES_QRY);
1025 }
1026
1027 =head2 GetImportBatchRangeDesc
1028
1029   my $results = GetImportBatchRangeDesc($offset, $results_per_group);
1030
1031 Returns a reference to an array of hash references corresponding to
1032 import_batches rows (sorted in descending order by import_batch_id)
1033 start at the given offset.
1034
1035 =cut
1036
1037 sub GetImportBatchRangeDesc {
1038     my ($offset, $results_per_group) = @_;
1039
1040     my $dbh = C4::Context->dbh;
1041     my $query = "SELECT * FROM import_batches
1042                                     WHERE batch_type IN ('batch', 'webservice')
1043                                     ORDER BY import_batch_id DESC";
1044     my @params;
1045     if ($results_per_group){
1046         $query .= " LIMIT ?";
1047         push(@params, $results_per_group);
1048     }
1049     if ($offset){
1050         $query .= " OFFSET ?";
1051         push(@params, $offset);
1052     }
1053     my $sth = $dbh->prepare_cached($query);
1054     $sth->execute(@params);
1055     my $results = $sth->fetchall_arrayref({});
1056     $sth->finish();
1057     return $results;
1058 }
1059
1060 =head2 GetItemNumbersFromImportBatch
1061
1062   my @itemsnos = GetItemNumbersFromImportBatch($batch_id);
1063
1064 =cut
1065
1066 sub GetItemNumbersFromImportBatch {
1067         my ($batch_id) = @_;
1068         my $dbh = C4::Context->dbh;
1069         my $sth = $dbh->prepare("SELECT itemnumber FROM import_batches,import_records,import_items WHERE import_batches.import_batch_id=import_records.import_batch_id AND import_records.import_record_id=import_items.import_record_id AND import_batches.import_batch_id=?");
1070         $sth->execute($batch_id);
1071         my @items ;
1072         while ( my ($itm) = $sth->fetchrow_array ) {
1073                 push @items, $itm;
1074         }
1075         return @items;
1076 }
1077
1078 =head2 GetNumberOfImportBatches 
1079
1080   my $count = GetNumberOfImportBatches();
1081
1082 =cut
1083
1084 sub GetNumberOfNonZ3950ImportBatches {
1085     my $dbh = C4::Context->dbh;
1086     my $sth = $dbh->prepare("SELECT COUNT(*) FROM import_batches WHERE batch_type != 'z3950'");
1087     $sth->execute();
1088     my ($count) = $sth->fetchrow_array();
1089     $sth->finish();
1090     return $count;
1091 }
1092
1093 =head2 GetImportBiblios
1094
1095   my $results = GetImportBiblios($importid);
1096
1097 =cut
1098
1099 sub GetImportBiblios {
1100     my ($import_record_id) = @_;
1101
1102     my $dbh = C4::Context->dbh;
1103     my $query = "SELECT * FROM import_biblios WHERE import_record_id = ?";
1104     return $dbh->selectall_arrayref(
1105         $query,
1106         { Slice => {} },
1107         $import_record_id
1108     );
1109
1110 }
1111
1112 =head2 GetImportRecordsRange
1113
1114   my $results = GetImportRecordsRange($batch_id, $offset, $results_per_group);
1115
1116 Returns a reference to an array of hash references corresponding to
1117 import_biblios/import_auths/import_records rows for a given batch
1118 starting at the given offset.
1119
1120 =cut
1121
1122 sub GetImportRecordsRange {
1123     my ( $batch_id, $offset, $results_per_group, $status, $parameters ) = @_;
1124
1125     my $dbh = C4::Context->dbh;
1126
1127     my $order_by = $parameters->{order_by} || 'import_record_id';
1128     ( $order_by ) = grep( /^$order_by$/, qw( import_record_id title status overlay_status ) ) ? $order_by : 'import_record_id';
1129
1130     my $order_by_direction =
1131       uc( $parameters->{order_by_direction} ) eq 'DESC' ? 'DESC' : 'ASC';
1132
1133     $order_by .= " $order_by_direction, authorized_heading" if $order_by eq 'title';
1134
1135     my $query = "SELECT title, author, isbn, issn, authorized_heading, import_records.import_record_id,
1136                                            record_sequence, status, overlay_status,
1137                                            matched_biblionumber, matched_authid, record_type
1138                                     FROM   import_records
1139                                     LEFT JOIN import_auths ON (import_records.import_record_id=import_auths.import_record_id)
1140                                     LEFT JOIN import_biblios ON (import_records.import_record_id=import_biblios.import_record_id)
1141                                     WHERE  import_batch_id = ?";
1142     my @params;
1143     push(@params, $batch_id);
1144     if ($status) {
1145         $query .= " AND status=?";
1146         push(@params,$status);
1147     }
1148
1149     $query.=" ORDER BY $order_by $order_by_direction";
1150
1151     if($results_per_group){
1152         $query .= " LIMIT ?";
1153         push(@params, $results_per_group);
1154     }
1155     if($offset){
1156         $query .= " OFFSET ?";
1157         push(@params, $offset);
1158     }
1159     my $sth = $dbh->prepare_cached($query);
1160     $sth->execute(@params);
1161     my $results = $sth->fetchall_arrayref({});
1162     $sth->finish();
1163     return $results;
1164
1165 }
1166
1167 =head2 GetBestRecordMatch
1168
1169   my $record_id = GetBestRecordMatch($import_record_id);
1170
1171 =cut
1172
1173 sub GetBestRecordMatch {
1174     my ($import_record_id) = @_;
1175
1176     my $dbh = C4::Context->dbh;
1177     my $sth = $dbh->prepare("SELECT candidate_match_id
1178                              FROM   import_record_matches
1179                              JOIN   import_records ON ( import_record_matches.import_record_id = import_records.import_record_id )
1180                              LEFT JOIN biblio ON ( candidate_match_id = biblio.biblionumber )
1181                              LEFT JOIN auth_header ON ( candidate_match_id = auth_header.authid )
1182                              WHERE  import_record_matches.import_record_id = ? AND
1183                              (  (import_records.record_type = 'biblio' AND biblio.biblionumber IS NOT NULL) OR
1184                                 (import_records.record_type = 'auth' AND auth_header.authid IS NOT NULL) )
1185                              ORDER BY score DESC, candidate_match_id DESC");
1186     $sth->execute($import_record_id);
1187     my ($record_id) = $sth->fetchrow_array();
1188     $sth->finish();
1189     return $record_id;
1190 }
1191
1192 =head2 GetImportBatchStatus
1193
1194   my $status = GetImportBatchStatus($batch_id);
1195
1196 =cut
1197
1198 sub GetImportBatchStatus {
1199     my ($batch_id) = @_;
1200
1201     my $dbh = C4::Context->dbh;
1202     my $sth = $dbh->prepare("SELECT import_status FROM import_batches WHERE import_batch_id = ?");
1203     $sth->execute($batch_id);
1204     my ($status) = $sth->fetchrow_array();
1205     $sth->finish();
1206     return $status;
1207
1208 }
1209
1210 =head2 SetImportBatchStatus
1211
1212   SetImportBatchStatus($batch_id, $new_status);
1213
1214 =cut
1215
1216 sub SetImportBatchStatus {
1217     my ($batch_id, $new_status) = @_;
1218
1219     my $dbh = C4::Context->dbh;
1220     my $sth = $dbh->prepare("UPDATE import_batches SET import_status = ? WHERE import_batch_id = ?");
1221     $sth->execute($new_status, $batch_id);
1222     $sth->finish();
1223
1224 }
1225
1226 =head2 GetImportBatchOverlayAction
1227
1228   my $overlay_action = GetImportBatchOverlayAction($batch_id);
1229
1230 =cut
1231
1232 sub GetImportBatchOverlayAction {
1233     my ($batch_id) = @_;
1234
1235     my $dbh = C4::Context->dbh;
1236     my $sth = $dbh->prepare("SELECT overlay_action FROM import_batches WHERE import_batch_id = ?");
1237     $sth->execute($batch_id);
1238     my ($overlay_action) = $sth->fetchrow_array();
1239     $sth->finish();
1240     return $overlay_action;
1241
1242 }
1243
1244
1245 =head2 SetImportBatchOverlayAction
1246
1247   SetImportBatchOverlayAction($batch_id, $new_overlay_action);
1248
1249 =cut
1250
1251 sub SetImportBatchOverlayAction {
1252     my ($batch_id, $new_overlay_action) = @_;
1253
1254     my $dbh = C4::Context->dbh;
1255     my $sth = $dbh->prepare("UPDATE import_batches SET overlay_action = ? WHERE import_batch_id = ?");
1256     $sth->execute($new_overlay_action, $batch_id);
1257     $sth->finish();
1258
1259 }
1260
1261 =head2 GetImportBatchNoMatchAction
1262
1263   my $nomatch_action = GetImportBatchNoMatchAction($batch_id);
1264
1265 =cut
1266
1267 sub GetImportBatchNoMatchAction {
1268     my ($batch_id) = @_;
1269
1270     my $dbh = C4::Context->dbh;
1271     my $sth = $dbh->prepare("SELECT nomatch_action FROM import_batches WHERE import_batch_id = ?");
1272     $sth->execute($batch_id);
1273     my ($nomatch_action) = $sth->fetchrow_array();
1274     $sth->finish();
1275     return $nomatch_action;
1276
1277 }
1278
1279
1280 =head2 SetImportBatchNoMatchAction
1281
1282   SetImportBatchNoMatchAction($batch_id, $new_nomatch_action);
1283
1284 =cut
1285
1286 sub SetImportBatchNoMatchAction {
1287     my ($batch_id, $new_nomatch_action) = @_;
1288
1289     my $dbh = C4::Context->dbh;
1290     my $sth = $dbh->prepare("UPDATE import_batches SET nomatch_action = ? WHERE import_batch_id = ?");
1291     $sth->execute($new_nomatch_action, $batch_id);
1292     $sth->finish();
1293
1294 }
1295
1296 =head2 GetImportBatchItemAction
1297
1298   my $item_action = GetImportBatchItemAction($batch_id);
1299
1300 =cut
1301
1302 sub GetImportBatchItemAction {
1303     my ($batch_id) = @_;
1304
1305     my $dbh = C4::Context->dbh;
1306     my $sth = $dbh->prepare("SELECT item_action FROM import_batches WHERE import_batch_id = ?");
1307     $sth->execute($batch_id);
1308     my ($item_action) = $sth->fetchrow_array();
1309     $sth->finish();
1310     return $item_action;
1311
1312 }
1313
1314
1315 =head2 SetImportBatchItemAction
1316
1317   SetImportBatchItemAction($batch_id, $new_item_action);
1318
1319 =cut
1320
1321 sub SetImportBatchItemAction {
1322     my ($batch_id, $new_item_action) = @_;
1323
1324     my $dbh = C4::Context->dbh;
1325     my $sth = $dbh->prepare("UPDATE import_batches SET item_action = ? WHERE import_batch_id = ?");
1326     $sth->execute($new_item_action, $batch_id);
1327     $sth->finish();
1328
1329 }
1330
1331 =head2 GetImportBatchMatcher
1332
1333   my $matcher_id = GetImportBatchMatcher($batch_id);
1334
1335 =cut
1336
1337 sub GetImportBatchMatcher {
1338     my ($batch_id) = @_;
1339
1340     my $dbh = C4::Context->dbh;
1341     my $sth = $dbh->prepare("SELECT matcher_id FROM import_batches WHERE import_batch_id = ?");
1342     $sth->execute($batch_id);
1343     my ($matcher_id) = $sth->fetchrow_array();
1344     $sth->finish();
1345     return $matcher_id;
1346
1347 }
1348
1349
1350 =head2 SetImportBatchMatcher
1351
1352   SetImportBatchMatcher($batch_id, $new_matcher_id);
1353
1354 =cut
1355
1356 sub SetImportBatchMatcher {
1357     my ($batch_id, $new_matcher_id) = @_;
1358
1359     my $dbh = C4::Context->dbh;
1360     my $sth = $dbh->prepare("UPDATE import_batches SET matcher_id = ? WHERE import_batch_id = ?");
1361     $sth->execute($new_matcher_id, $batch_id);
1362     $sth->finish();
1363
1364 }
1365
1366 =head2 GetImportRecordOverlayStatus
1367
1368   my $overlay_status = GetImportRecordOverlayStatus($import_record_id);
1369
1370 =cut
1371
1372 sub GetImportRecordOverlayStatus {
1373     my ($import_record_id) = @_;
1374
1375     my $dbh = C4::Context->dbh;
1376     my $sth = $dbh->prepare("SELECT overlay_status FROM import_records WHERE import_record_id = ?");
1377     $sth->execute($import_record_id);
1378     my ($overlay_status) = $sth->fetchrow_array();
1379     $sth->finish();
1380     return $overlay_status;
1381
1382 }
1383
1384
1385 =head2 SetImportRecordOverlayStatus
1386
1387   SetImportRecordOverlayStatus($import_record_id, $new_overlay_status);
1388
1389 =cut
1390
1391 sub SetImportRecordOverlayStatus {
1392     my ($import_record_id, $new_overlay_status) = @_;
1393
1394     my $dbh = C4::Context->dbh;
1395     my $sth = $dbh->prepare("UPDATE import_records SET overlay_status = ? WHERE import_record_id = ?");
1396     $sth->execute($new_overlay_status, $import_record_id);
1397     $sth->finish();
1398
1399 }
1400
1401 =head2 GetImportRecordStatus
1402
1403   my $status = GetImportRecordStatus($import_record_id);
1404
1405 =cut
1406
1407 sub GetImportRecordStatus {
1408     my ($import_record_id) = @_;
1409
1410     my $dbh = C4::Context->dbh;
1411     my $sth = $dbh->prepare("SELECT status FROM import_records WHERE import_record_id = ?");
1412     $sth->execute($import_record_id);
1413     my ($status) = $sth->fetchrow_array();
1414     $sth->finish();
1415     return $status;
1416
1417 }
1418
1419
1420 =head2 SetImportRecordStatus
1421
1422   SetImportRecordStatus($import_record_id, $new_status);
1423
1424 =cut
1425
1426 sub SetImportRecordStatus {
1427     my ($import_record_id, $new_status) = @_;
1428
1429     my $dbh = C4::Context->dbh;
1430     my $sth = $dbh->prepare("UPDATE import_records SET status = ? WHERE import_record_id = ?");
1431     $sth->execute($new_status, $import_record_id);
1432     $sth->finish();
1433
1434 }
1435
1436 =head2 GetImportRecordMatches
1437
1438   my $results = GetImportRecordMatches($import_record_id, $best_only);
1439
1440 =cut
1441
1442 sub GetImportRecordMatches {
1443     my $import_record_id = shift;
1444     my $best_only = @_ ? shift : 0;
1445
1446     my $dbh = C4::Context->dbh;
1447     # FIXME currently biblio only
1448     my $sth = $dbh->prepare_cached("SELECT title, author, biblionumber,
1449                                     candidate_match_id, score, record_type
1450                                     FROM import_records
1451                                     JOIN import_record_matches USING (import_record_id)
1452                                     LEFT JOIN biblio ON (biblionumber = candidate_match_id)
1453                                     WHERE import_record_id = ?
1454                                     ORDER BY score DESC, biblionumber DESC");
1455     $sth->bind_param(1, $import_record_id);
1456     my $results = [];
1457     $sth->execute();
1458     while (my $row = $sth->fetchrow_hashref) {
1459         if ($row->{'record_type'} eq 'auth') {
1460             $row->{'authorized_heading'} = C4::AuthoritiesMarc::GetAuthorizedHeading( { authid => $row->{'candidate_match_id'} } );
1461         }
1462         next if ($row->{'record_type'} eq 'biblio' && not $row->{'biblionumber'});
1463         push @$results, $row;
1464         last if $best_only;
1465     }
1466     $sth->finish();
1467
1468     return $results;
1469     
1470 }
1471
1472
1473 =head2 SetImportRecordMatches
1474
1475   SetImportRecordMatches($import_record_id, @matches);
1476
1477 =cut
1478
1479 sub SetImportRecordMatches {
1480     my $import_record_id = shift;
1481     my @matches = @_;
1482
1483     my $dbh = C4::Context->dbh;
1484     my $delsth = $dbh->prepare("DELETE FROM import_record_matches WHERE import_record_id = ?");
1485     $delsth->execute($import_record_id);
1486     $delsth->finish();
1487
1488     my $sth = $dbh->prepare("INSERT INTO import_record_matches (import_record_id, candidate_match_id, score)
1489                                     VALUES (?, ?, ?)");
1490     foreach my $match (@matches) {
1491         $sth->execute($import_record_id, $match->{'record_id'}, $match->{'score'});
1492     }
1493 }
1494
1495
1496 # internal functions
1497
1498 sub _create_import_record {
1499     my ($batch_id, $record_sequence, $marc_record, $record_type, $encoding, $z3950random, $marc_type) = @_;
1500
1501     my $dbh = C4::Context->dbh;
1502     my $sth = $dbh->prepare("INSERT INTO import_records (import_batch_id, record_sequence, marc, marcxml, 
1503                                                          record_type, encoding, z3950random)
1504                                     VALUES (?, ?, ?, ?, ?, ?, ?)");
1505     $sth->execute($batch_id, $record_sequence, $marc_record->as_usmarc(), $marc_record->as_xml($marc_type),
1506                   $record_type, $encoding, $z3950random);
1507     my $import_record_id = $dbh->{'mysql_insertid'};
1508     $sth->finish();
1509     return $import_record_id;
1510 }
1511
1512 sub _update_import_record_marc {
1513     my ($import_record_id, $marc_record, $marc_type) = @_;
1514
1515     my $dbh = C4::Context->dbh;
1516     my $sth = $dbh->prepare("UPDATE import_records SET marc = ?, marcxml = ?
1517                              WHERE  import_record_id = ?");
1518     $sth->execute($marc_record->as_usmarc(), $marc_record->as_xml($marc_type), $import_record_id);
1519     $sth->finish();
1520 }
1521
1522 sub _add_auth_fields {
1523     my ($import_record_id, $marc_record) = @_;
1524
1525     my $controlnumber;
1526     if ($marc_record->field('001')) {
1527         $controlnumber = $marc_record->field('001')->data();
1528     }
1529     my $authorized_heading = C4::AuthoritiesMarc::GetAuthorizedHeading({ record => $marc_record });
1530     my $dbh = C4::Context->dbh;
1531     my $sth = $dbh->prepare("INSERT INTO import_auths (import_record_id, control_number, authorized_heading) VALUES (?, ?, ?)");
1532     $sth->execute($import_record_id, $controlnumber, $authorized_heading);
1533     $sth->finish();
1534 }
1535
1536 sub _add_biblio_fields {
1537     my ($import_record_id, $marc_record) = @_;
1538
1539     my ($title, $author, $isbn, $issn) = _parse_biblio_fields($marc_record);
1540     my $dbh = C4::Context->dbh;
1541     # FIXME no controlnumber, originalsource
1542     $isbn = C4::Koha::GetNormalizedISBN($isbn);
1543     my $sth = $dbh->prepare("INSERT INTO import_biblios (import_record_id, title, author, isbn, issn) VALUES (?, ?, ?, ?, ?)");
1544     $sth->execute($import_record_id, $title, $author, $isbn, $issn);
1545     $sth->finish();
1546                 
1547 }
1548
1549 sub _update_biblio_fields {
1550     my ($import_record_id, $marc_record) = @_;
1551
1552     my ($title, $author, $isbn, $issn) = _parse_biblio_fields($marc_record);
1553     my $dbh = C4::Context->dbh;
1554     # FIXME no controlnumber, originalsource
1555     # FIXME 2 - should regularize normalization of ISBN wherever it is done
1556     $isbn =~ s/\(.*$//;
1557     $isbn =~ tr/ -_//;
1558     $isbn = uc $isbn;
1559     my $sth = $dbh->prepare("UPDATE import_biblios SET title = ?, author = ?, isbn = ?, issn = ?
1560                              WHERE  import_record_id = ?");
1561     $sth->execute($title, $author, $isbn, $issn, $import_record_id);
1562     $sth->finish();
1563 }
1564
1565 sub _parse_biblio_fields {
1566     my ($marc_record) = @_;
1567
1568     my $dbh = C4::Context->dbh;
1569     my $bibliofields = TransformMarcToKoha($marc_record, '');
1570     return ($bibliofields->{'title'}, $bibliofields->{'author'}, $bibliofields->{'isbn'}, $bibliofields->{'issn'});
1571
1572 }
1573
1574 sub _update_batch_record_counts {
1575     my ($batch_id) = @_;
1576
1577     my $dbh = C4::Context->dbh;
1578     my $sth = $dbh->prepare_cached("UPDATE import_batches SET
1579                                         num_records = (
1580                                             SELECT COUNT(*)
1581                                             FROM import_records
1582                                             WHERE import_batch_id = import_batches.import_batch_id),
1583                                         num_items = (
1584                                             SELECT COUNT(*)
1585                                             FROM import_records
1586                                             JOIN import_items USING (import_record_id)
1587                                             WHERE import_batch_id = import_batches.import_batch_id
1588                                             AND record_type = 'biblio')
1589                                     WHERE import_batch_id = ?");
1590     $sth->bind_param(1, $batch_id);
1591     $sth->execute();
1592     $sth->finish();
1593 }
1594
1595 sub _get_commit_action {
1596     my ($overlay_action, $nomatch_action, $item_action, $overlay_status, $import_record_id, $record_type) = @_;
1597     
1598     if ($record_type eq 'biblio') {
1599         my ($bib_result, $bib_match, $item_result);
1600
1601         if ($overlay_status ne 'no_match') {
1602             $bib_match = GetBestRecordMatch($import_record_id);
1603             if ($overlay_action eq 'replace') {
1604                 $bib_result  = defined($bib_match) ? 'replace' : 'create_new';
1605             } elsif ($overlay_action eq 'create_new') {
1606                 $bib_result  = 'create_new';
1607             } elsif ($overlay_action eq 'ignore') {
1608                 $bib_result  = 'ignore';
1609             }
1610          if($item_action eq 'always_add' or $item_action eq 'add_only_for_matches'){
1611                 $item_result = 'create_new';
1612        }
1613       elsif($item_action eq 'replace'){
1614           $item_result = 'replace';
1615           }
1616       else {
1617              $item_result = 'ignore';
1618            }
1619         } else {
1620             $bib_result = $nomatch_action;
1621             $item_result = ($item_action eq 'always_add' or $item_action eq 'add_only_for_new')     ? 'create_new' : 'ignore';
1622         }
1623         return ($bib_result, $item_result, $bib_match);
1624     } else { # must be auths
1625         my ($auth_result, $auth_match);
1626
1627         if ($overlay_status ne 'no_match') {
1628             $auth_match = GetBestRecordMatch($import_record_id);
1629             if ($overlay_action eq 'replace') {
1630                 $auth_result  = defined($auth_match) ? 'replace' : 'create_new';
1631             } elsif ($overlay_action eq 'create_new') {
1632                 $auth_result  = 'create_new';
1633             } elsif ($overlay_action eq 'ignore') {
1634                 $auth_result  = 'ignore';
1635             }
1636         } else {
1637             $auth_result = $nomatch_action;
1638         }
1639
1640         return ($auth_result, undef, $auth_match);
1641
1642     }
1643 }
1644
1645 sub _get_revert_action {
1646     my ($overlay_action, $overlay_status, $status) = @_;
1647
1648     my $bib_result;
1649
1650     if ($status eq 'ignored') {
1651         $bib_result = 'ignore';
1652     } else {
1653         if ($overlay_action eq 'create_new') {
1654             $bib_result = 'delete';
1655         } else {
1656             $bib_result = ($overlay_status eq 'match_applied') ? 'restore' : 'delete';
1657         }
1658     }
1659     return $bib_result;
1660 }
1661
1662 1;
1663 __END__
1664
1665 =head1 AUTHOR
1666
1667 Koha Development Team <http://koha-community.org/>
1668
1669 Galen Charlton <galen.charlton@liblime.com>
1670
1671 =cut