8f8629d1594e39d3fdee0ff99956f5de27015497
[koha.git] / C4 / Biblio.pm
1 package C4::Biblio;
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 use strict;
21 use warnings;
22 # use utf8;
23 use MARC::Record;
24 use MARC::File::USMARC;
25 # Force MARC::File::XML to use LibXML SAX Parser
26 #$XML::SAX::ParserPackage = "XML::LibXML::SAX";
27 use MARC::File::XML;
28 use ZOOM;
29 use POSIX qw(strftime);
30
31 use C4::Koha;
32 use C4::Dates qw/format_date/;
33 use C4::Log; # logaction
34 use C4::ClassSource;
35 use C4::Charset;
36 require C4::Heading;
37 require C4::Serials;
38
39 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
40
41 BEGIN {
42         $VERSION = 1.00;
43
44         require Exporter;
45         @ISA = qw( Exporter );
46
47         # to add biblios
48 # EXPORTED FUNCTIONS.
49     push @EXPORT_OK, qw(
50         &GetRecordValue
51     );
52
53         push @EXPORT, qw( 
54                 &AddBiblio
55         );
56
57         # to get something
58         push @EXPORT, qw(
59                 &GetBiblio
60                 &GetBiblioData
61                 &GetBiblioItemData
62                 &GetBiblioItemInfosOf
63                 &GetBiblioItemByBiblioNumber
64                 &GetBiblioFromItemNumber
65                 
66                 &GetRecordValue
67                 &GetFieldMapping
68                 &SetFieldMapping
69                 &DeleteFieldMapping
70                 
71                 &GetISBDView
72
73                 &GetMarcNotes
74                 &GetMarcSubjects
75                 &GetMarcBiblio
76                 &GetMarcAuthors
77                 &GetMarcSeries
78                 GetMarcUrls
79                 &GetUsedMarcStructure
80                 &GetXmlBiblio
81                 &GetCOinSBiblio
82
83                 &GetAuthorisedValueDesc
84                 &GetMarcStructure
85                 &GetMarcFromKohaField
86                 &GetFrameworkCode
87                 &GetPublisherNameFromIsbn
88                 &TransformKohaToMarc
89                 
90                 &CountItemsIssued
91         );
92
93         # To modify something
94         push @EXPORT, qw(
95                 &ModBiblio
96                 &ModBiblioframework
97                 &ModZebra
98         );
99         # To delete something
100         push @EXPORT, qw(
101                 &DelBiblio
102         );
103
104     # To link headings in a bib record
105     # to authority records.
106     push @EXPORT, qw(
107         &LinkBibHeadingsToAuthorities
108     );
109
110         # Internal functions
111         # those functions are exported but should not be used
112         # they are usefull is few circumstances, so are exported.
113         # but don't use them unless you're a core developer ;-)
114         push @EXPORT, qw(
115                 &ModBiblioMarc
116         );
117         # Others functions
118         push @EXPORT, qw(
119                 &TransformMarcToKoha
120                 &TransformHtmlToMarc2
121                 &TransformHtmlToMarc
122                 &TransformHtmlToXml
123                 &PrepareItemrecordDisplay
124                 &GetNoZebraIndexes
125         );
126 }
127
128 =head1 NAME
129
130 C4::Biblio - cataloging management functions
131
132 =head1 DESCRIPTION
133
134 Biblio.pm contains functions for managing storage and editing of bibliographic data within Koha. Most of the functions in this module are used for cataloging records: adding, editing, or removing biblios, biblioitems, or items. Koha's stores bibliographic information in three places:
135
136 =over 4
137
138 =item 1. in the biblio,biblioitems,items, etc tables, which are limited to a one-to-one mapping to underlying MARC data
139
140 =item 2. as raw MARC in the Zebra index and storage engine
141
142 =item 3. as raw MARC the biblioitems.marc and biblioitems.marcxml
143
144 =back
145
146 In the 3.0 version of Koha, the authoritative record-level information is in biblioitems.marcxml
147
148 Because the data isn't completely normalized there's a chance for information to get out of sync. The design choice to go with a un-normalized schema was driven by performance and stability concerns. However, if this occur, it can be considered as a bug : The API is (or should be) complete & the only entry point for all biblio/items managements.
149
150 =over 4
151
152 =item 1. Compared with MySQL, Zebra is slow to update an index for small data changes -- especially for proc-intensive operations like circulation
153
154 =item 2. Zebra's index has been known to crash and a backup of the data is necessary to rebuild it in such cases
155
156 =back
157
158 Because of this design choice, the process of managing storage and editing is a bit convoluted. Historically, Biblio.pm's grown to an unmanagable size and as a result we have several types of functions currently:
159
160 =over 4
161
162 =item 1. Add*/Mod*/Del*/ - high-level external functions suitable for being called from external scripts to manage the collection
163
164 =item 2. _koha_* - low-level internal functions for managing the koha tables
165
166 =item 3. Marc management function : as the MARC record is stored in biblioitems.marc(xml), some subs dedicated to it's management are in this package. They should be used only internally by Biblio.pm, the only official entry points being AddBiblio, AddItem, ModBiblio, ModItem.
167
168 =item 4. Zebra functions used to update the Zebra index
169
170 =item 5. internal helper functions such as char_decode, checkitems, etc. Some of these probably belong in Koha.pm
171
172 =back
173
174 The MARC record (in biblioitems.marcxml) contains the complete marc record, including items. It also contains the biblionumber. That is the reason why it is not stored directly by AddBiblio, with all other fields . To save a biblio, we need to :
175
176 =over 4
177
178 =item 1. save datas in biblio and biblioitems table, that gives us a biblionumber and a biblioitemnumber
179
180 =item 2. add the biblionumber and biblioitemnumber into the MARC records
181
182 =item 3. save the marc record
183
184 =back
185
186 When dealing with items, we must :
187
188 =over 4
189
190 =item 1. save the item in items table, that gives us an itemnumber
191
192 =item 2. add the itemnumber to the item MARC field
193
194 =item 3. overwrite the MARC record (with the added item) into biblioitems.marc(xml)
195
196 When modifying a biblio or an item, the behaviour is quite similar.
197
198 =back
199
200 =head1 EXPORTED FUNCTIONS
201
202 =head2 AddBiblio
203
204 =over 4
205
206 ($biblionumber,$biblioitemnumber) = AddBiblio($record,$frameworkcode);
207
208 =back
209
210 Exported function (core API) for adding a new biblio to koha.
211
212 The first argument is a C<MARC::Record> object containing the
213 bib to add, while the second argument is the desired MARC
214 framework code.
215
216 This function also accepts a third, optional argument: a hashref
217 to additional options.  The only defined option is C<defer_marc_save>,
218 which if present and mapped to a true value, causes C<AddBiblio>
219 to omit the call to save the MARC in C<bibilioitems.marc>
220 and C<biblioitems.marcxml>  This option is provided B<only>
221 for the use of scripts such as C<bulkmarcimport.pl> that may need
222 to do some manipulation of the MARC record for item parsing before
223 saving it and which cannot afford the performance hit of saving
224 the MARC record twice.  Consequently, do not use that option
225 unless you can guarantee that C<ModBiblioMarc> will be called.
226
227 =cut
228
229 sub AddBiblio {
230     my $record = shift;
231     my $frameworkcode = shift;
232     my $options = @_ ? shift : undef;
233     my $defer_marc_save = 0;
234     if (defined $options and exists $options->{'defer_marc_save'} and $options->{'defer_marc_save'}) {
235         $defer_marc_save = 1;
236     }
237
238     my ($biblionumber,$biblioitemnumber,$error);
239     my $dbh = C4::Context->dbh;
240     # transform the data into koha-table style data
241     my $olddata = TransformMarcToKoha( $dbh, $record, $frameworkcode );
242     ($biblionumber,$error) = _koha_add_biblio( $dbh, $olddata, $frameworkcode );
243     $olddata->{'biblionumber'} = $biblionumber;
244     ($biblioitemnumber,$error) = _koha_add_biblioitem( $dbh, $olddata );
245
246     _koha_marc_update_bib_ids($record, $frameworkcode, $biblionumber, $biblioitemnumber);
247
248     # update MARC subfield that stores biblioitems.cn_sort
249     _koha_marc_update_biblioitem_cn_sort($record, $olddata, $frameworkcode);
250     
251     # now add the record
252     ModBiblioMarc( $record, $biblionumber, $frameworkcode ) unless $defer_marc_save;
253       
254     logaction("CATALOGUING", "ADD", $biblionumber, "biblio") if C4::Context->preference("CataloguingLog");
255     return ( $biblionumber, $biblioitemnumber );
256 }
257
258 =head2 ModBiblio
259
260 =over 4
261
262     ModBiblio( $record,$biblionumber,$frameworkcode);
263
264 =back
265
266 Replace an existing bib record identified by C<$biblionumber>
267 with one supplied by the MARC::Record object C<$record>.  The embedded
268 item, biblioitem, and biblionumber fields from the previous
269 version of the bib record replace any such fields of those tags that
270 are present in C<$record>.  Consequently, ModBiblio() is not
271 to be used to try to modify item records.
272
273 C<$frameworkcode> specifies the MARC framework to use
274 when storing the modified bib record; among other things,
275 this controls how MARC fields get mapped to display columns
276 in the C<biblio> and C<biblioitems> tables, as well as
277 which fields are used to store embedded item, biblioitem,
278 and biblionumber data for indexing.
279
280 =cut
281
282 sub ModBiblio {
283     my ( $record, $biblionumber, $frameworkcode ) = @_;
284     if (C4::Context->preference("CataloguingLog")) {
285         my $newrecord = GetMarcBiblio($biblionumber);
286         logaction("CATALOGUING", "MODIFY", $biblionumber, "BEFORE=>".$newrecord->as_formatted);
287     }
288     
289     my $dbh = C4::Context->dbh;
290     
291     $frameworkcode = "" unless $frameworkcode;
292
293     # get the items before and append them to the biblio before updating the record, atm we just have the biblio
294     my ( $itemtag, $itemsubfield ) = GetMarcFromKohaField("items.itemnumber",$frameworkcode);
295     my $oldRecord = GetMarcBiblio( $biblionumber );
296
297     # delete any item fields from incoming record to avoid
298     # duplication or incorrect data - use AddItem() or ModItem()
299     # to change items
300     foreach my $field ($record->field($itemtag)) {
301         $record->delete_field($field);
302     }
303    
304     # once all the items fields are removed, copy the old ones, in order to keep synchronize
305     $record->append_fields($oldRecord->field( $itemtag ));
306    
307     # update biblionumber and biblioitemnumber in MARC
308     # FIXME - this is assuming a 1 to 1 relationship between
309     # biblios and biblioitems
310     my $sth =  $dbh->prepare("select biblioitemnumber from biblioitems where biblionumber=?");
311     $sth->execute($biblionumber);
312     my ($biblioitemnumber) = $sth->fetchrow;
313     $sth->finish();
314     _koha_marc_update_bib_ids($record, $frameworkcode, $biblionumber, $biblioitemnumber);
315
316     # load the koha-table data object
317     my $oldbiblio = TransformMarcToKoha( $dbh, $record, $frameworkcode );
318
319     # update MARC subfield that stores biblioitems.cn_sort
320     _koha_marc_update_biblioitem_cn_sort($record, $oldbiblio, $frameworkcode);
321
322     # update the MARC record (that now contains biblio and items) with the new record data
323     &ModBiblioMarc( $record, $biblionumber, $frameworkcode );
324     
325     # modify the other koha tables
326     _koha_modify_biblio( $dbh, $oldbiblio, $frameworkcode );
327     _koha_modify_biblioitem_nonmarc( $dbh, $oldbiblio );
328     return 1;
329 }
330
331 =head2 ModBiblioframework
332
333     ModBiblioframework($biblionumber,$frameworkcode);
334     Exported function to modify a biblio framework
335
336 =cut
337
338 sub ModBiblioframework {
339     my ( $biblionumber, $frameworkcode ) = @_;
340     my $dbh = C4::Context->dbh;
341     my $sth = $dbh->prepare(
342         "UPDATE biblio SET frameworkcode=? WHERE biblionumber=?"
343     );
344     $sth->execute($frameworkcode, $biblionumber);
345     return 1;
346 }
347
348 =head2 DelBiblio
349
350 =over
351
352 my $error = &DelBiblio($dbh,$biblionumber);
353 Exported function (core API) for deleting a biblio in koha.
354 Deletes biblio record from Zebra and Koha tables (biblio,biblioitems,items)
355 Also backs it up to deleted* tables
356 Checks to make sure there are not issues on any of the items
357 return:
358 C<$error> : undef unless an error occurs
359
360 =back
361
362 =cut
363
364 sub DelBiblio {
365     my ( $biblionumber ) = @_;
366     my $dbh = C4::Context->dbh;
367     my $error;    # for error handling
368     
369     # First make sure this biblio has no items attached
370     my $sth = $dbh->prepare("SELECT itemnumber FROM items WHERE biblionumber=?");
371     $sth->execute($biblionumber);
372     if (my $itemnumber = $sth->fetchrow){
373         # Fix this to use a status the template can understand
374         $error .= "This Biblio has items attached, please delete them first before deleting this biblio ";
375     }
376
377     return $error if $error;
378
379     # We delete attached subscriptions
380     my $subscriptions = &C4::Serials::GetFullSubscriptionsFromBiblionumber($biblionumber);
381     foreach my $subscription (@$subscriptions){
382         &C4::Serials::DelSubscription($subscription->{subscriptionid});
383     }
384     
385     # Delete in Zebra. Be careful NOT to move this line after _koha_delete_biblio
386     # for at least 2 reasons :
387     # - we need to read the biblio if NoZebra is set (to remove it from the indexes
388     # - if something goes wrong, the biblio may be deleted from Koha but not from zebra
389     #   and we would have no way to remove it (except manually in zebra, but I bet it would be very hard to handle the problem)
390     my $oldRecord;
391     if (C4::Context->preference("NoZebra")) {
392         # only NoZebra indexing needs to have
393         # the previous version of the record
394         $oldRecord = GetMarcBiblio($biblionumber);
395     }
396     ModZebra($biblionumber, "recordDelete", "biblioserver", $oldRecord, undef);
397
398     # delete biblioitems and items from Koha tables and save in deletedbiblioitems,deleteditems
399     $sth =
400       $dbh->prepare(
401         "SELECT biblioitemnumber FROM biblioitems WHERE biblionumber=?");
402     $sth->execute($biblionumber);
403     while ( my $biblioitemnumber = $sth->fetchrow ) {
404
405         # delete this biblioitem
406         $error = _koha_delete_biblioitems( $dbh, $biblioitemnumber );
407         return $error if $error;
408     }
409
410     # delete biblio from Koha tables and save in deletedbiblio
411     # must do this *after* _koha_delete_biblioitems, otherwise
412     # delete cascade will prevent deletedbiblioitems rows
413     # from being generated by _koha_delete_biblioitems
414     $error = _koha_delete_biblio( $dbh, $biblionumber );
415
416     logaction("CATALOGUING", "DELETE", $biblionumber, "") if C4::Context->preference("CataloguingLog");
417
418     return;
419 }
420
421 =head2 LinkBibHeadingsToAuthorities
422
423 =over 4
424
425 my $headings_linked = LinkBibHeadingsToAuthorities($marc);
426
427 =back
428
429 Links bib headings to authority records by checking
430 each authority-controlled field in the C<MARC::Record>
431 object C<$marc>, looking for a matching authority record,
432 and setting the linking subfield $9 to the ID of that
433 authority record.  
434
435 If no matching authority exists, or if multiple
436 authorities match, no $9 will be added, and any 
437 existing one inthe field will be deleted.
438
439 Returns the number of heading links changed in the
440 MARC record.
441
442 =cut
443
444 sub LinkBibHeadingsToAuthorities {
445     my $bib = shift;
446
447     my $num_headings_changed = 0;
448     foreach my $field ($bib->fields()) {
449         my $heading = C4::Heading->new_from_bib_field($field);    
450         next unless defined $heading;
451
452         # check existing $9
453         my $current_link = $field->subfield('9');
454
455         # look for matching authorities
456         my $authorities = $heading->authorities();
457
458         # want only one exact match
459         if ($#{ $authorities } == 0) {
460             my $authority = MARC::Record->new_from_usmarc($authorities->[0]);
461             my $authid = $authority->field('001')->data();
462             next if defined $current_link and $current_link eq $authid;
463
464             $field->delete_subfield(code => '9') if defined $current_link;
465             $field->add_subfields('9', $authid);
466             $num_headings_changed++;
467         } else {
468             if (defined $current_link) {
469                 $field->delete_subfield(code => '9');
470                 $num_headings_changed++;
471             }
472         }
473
474     }
475     return $num_headings_changed;
476 }
477
478 =head2 GetRecordValue
479
480 =over 4
481
482 my $values = GetRecordValue($field, $record, $frameworkcode);
483
484 =back
485
486 Get MARC fields from a keyword defined in fieldmapping table.
487
488 =cut
489
490 sub GetRecordValue {
491     my ($field, $record, $frameworkcode) = @_;
492     my $dbh = C4::Context->dbh;
493     
494     my $sth = $dbh->prepare('SELECT fieldcode, subfieldcode FROM fieldmapping WHERE frameworkcode = ? AND field = ?');
495     $sth->execute($frameworkcode, $field);
496     
497     my @result = ();
498     
499     while(my $row = $sth->fetchrow_hashref){
500         foreach my $field ($record->field($row->{fieldcode})){
501             if( ($row->{subfieldcode} ne "" && $field->subfield($row->{subfieldcode}))){
502                 foreach my $subfield ($field->subfield($row->{subfieldcode})){
503                     push @result, { 'subfield' => $subfield };
504                 }
505                 
506             }elsif($row->{subfieldcode} eq "") {
507                 push @result, {'subfield' => $field->as_string()};
508             }
509         }
510     }
511     
512     return \@result;
513 }
514
515 =head2 SetFieldMapping
516
517 =over 4
518
519 SetFieldMapping($framework, $field, $fieldcode, $subfieldcode);
520
521 =back
522
523 Set a Field to MARC mapping value, if it already exists we don't add a new one.
524
525 =cut
526
527 sub SetFieldMapping {
528     my ($framework, $field, $fieldcode, $subfieldcode) = @_;
529     my $dbh = C4::Context->dbh;
530     
531     my $sth = $dbh->prepare('SELECT * FROM fieldmapping WHERE fieldcode = ? AND subfieldcode = ? AND frameworkcode = ? AND field = ?');
532     $sth->execute($fieldcode, $subfieldcode, $framework, $field);
533     if(not $sth->fetchrow_hashref){
534         my @args;
535         $sth = $dbh->prepare('INSERT INTO fieldmapping (fieldcode, subfieldcode, frameworkcode, field) VALUES(?,?,?,?)');
536         
537         $sth->execute($fieldcode, $subfieldcode, $framework, $field);
538     }
539 }
540
541 =head2 DeleteFieldMapping
542
543 =over 4
544
545 DeleteFieldMapping($id);
546
547 =back
548
549 Delete a field mapping from an $id.
550
551 =cut
552
553 sub DeleteFieldMapping{
554     my ($id) = @_;
555     my $dbh = C4::Context->dbh;
556     
557     my $sth = $dbh->prepare('DELETE FROM fieldmapping WHERE id = ?');
558     $sth->execute($id);
559 }
560
561 =head2 GetFieldMapping
562
563 =over 4
564
565 GetFieldMapping($frameworkcode);
566
567 =back
568
569 Get all field mappings for a specified frameworkcode
570
571 =cut
572
573 sub GetFieldMapping {
574     my ($framework) = @_;
575     my $dbh = C4::Context->dbh;
576     
577     my $sth = $dbh->prepare('SELECT * FROM fieldmapping where frameworkcode = ?');
578     $sth->execute($framework);
579     
580     my @return;
581     while(my $row = $sth->fetchrow_hashref){
582         push @return, $row;
583     }
584     return \@return;
585 }
586
587 =head2 GetBiblioData
588
589 =over 4
590
591 $data = &GetBiblioData($biblionumber);
592 Returns information about the book with the given biblionumber.
593 C<&GetBiblioData> returns a reference-to-hash. The keys are the fields in
594 the C<biblio> and C<biblioitems> tables in the
595 Koha database.
596 In addition, C<$data-E<gt>{subject}> is the list of the book's
597 subjects, separated by C<" , "> (space, comma, space).
598 If there are multiple biblioitems with the given biblionumber, only
599 the first one is considered.
600
601 =back
602
603 =cut
604
605 sub GetBiblioData {
606     my ( $bibnum ) = @_;
607     my $dbh = C4::Context->dbh;
608
609   #  my $query =  C4::Context->preference('item-level_itypes') ? 
610     #   " SELECT * , biblioitems.notes AS bnotes, biblio.notes
611     #       FROM biblio
612     #        LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
613     #       WHERE biblio.biblionumber = ?
614     #        AND biblioitems.biblionumber = biblio.biblionumber
615     #";
616     
617     my $query = " SELECT * , biblioitems.notes AS bnotes, itemtypes.notforloan as bi_notforloan, biblio.notes
618             FROM biblio
619             LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
620             LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype
621             WHERE biblio.biblionumber = ?
622             AND biblioitems.biblionumber = biblio.biblionumber ";
623          
624     my $sth = $dbh->prepare($query);
625     $sth->execute($bibnum);
626     my $data;
627     $data = $sth->fetchrow_hashref;
628     $sth->finish;
629
630     return ($data);
631 }    # sub GetBiblioData
632
633 =head2 &GetBiblioItemData
634
635 =over 4
636
637 $itemdata = &GetBiblioItemData($biblioitemnumber);
638
639 Looks up the biblioitem with the given biblioitemnumber. Returns a
640 reference-to-hash. The keys are the fields from the C<biblio>,
641 C<biblioitems>, and C<itemtypes> tables in the Koha database, except
642 that C<biblioitems.notes> is given as C<$itemdata-E<gt>{bnotes}>.
643
644 =back
645
646 =cut
647
648 #'
649 sub GetBiblioItemData {
650     my ($biblioitemnumber) = @_;
651     my $dbh       = C4::Context->dbh;
652     my $query = "SELECT *,biblioitems.notes AS bnotes
653         FROM biblio LEFT JOIN biblioitems on biblio.biblionumber=biblioitems.biblionumber ";
654     unless(C4::Context->preference('item-level_itypes')) { 
655         $query .= "LEFT JOIN itemtypes on biblioitems.itemtype=itemtypes.itemtype ";
656     }    
657     $query .= " WHERE biblioitemnumber = ? ";
658     my $sth       =  $dbh->prepare($query);
659     my $data;
660     $sth->execute($biblioitemnumber);
661     $data = $sth->fetchrow_hashref;
662     $sth->finish;
663     return ($data);
664 }    # sub &GetBiblioItemData
665
666 =head2 GetBiblioItemByBiblioNumber
667
668 =over 4
669
670 NOTE : This function has been copy/paste from C4/Biblio.pm from head before zebra integration.
671
672 =back
673
674 =cut
675
676 sub GetBiblioItemByBiblioNumber {
677     my ($biblionumber) = @_;
678     my $dbh = C4::Context->dbh;
679     my $sth = $dbh->prepare("Select * FROM biblioitems WHERE biblionumber = ?");
680     my $count = 0;
681     my @results;
682
683     $sth->execute($biblionumber);
684
685     while ( my $data = $sth->fetchrow_hashref ) {
686         push @results, $data;
687     }
688
689     $sth->finish;
690     return @results;
691 }
692
693 =head2 GetBiblioFromItemNumber
694
695 =over 4
696
697 $item = &GetBiblioFromItemNumber($itemnumber,$barcode);
698
699 Looks up the item with the given itemnumber. if undef, try the barcode.
700
701 C<&itemnodata> returns a reference-to-hash whose keys are the fields
702 from the C<biblio>, C<biblioitems>, and C<items> tables in the Koha
703 database.
704
705 =back
706
707 =cut
708
709 #'
710 sub GetBiblioFromItemNumber {
711     my ( $itemnumber, $barcode ) = @_;
712     my $dbh = C4::Context->dbh;
713     my $sth;
714     if($itemnumber) {
715         $sth=$dbh->prepare(  "SELECT * FROM items 
716             LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
717             LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber
718              WHERE items.itemnumber = ?") ; 
719         $sth->execute($itemnumber);
720     } else {
721         $sth=$dbh->prepare(  "SELECT * FROM items 
722             LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
723             LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber
724              WHERE items.barcode = ?") ; 
725         $sth->execute($barcode);
726     }
727     my $data = $sth->fetchrow_hashref;
728     $sth->finish;
729     return ($data);
730 }
731
732 =head2 GetISBDView 
733
734 =over 4
735
736 $isbd = &GetISBDView($biblionumber);
737
738 Return the ISBD view which can be included in opac and intranet
739
740 =back
741
742 =cut
743
744 sub GetISBDView {
745     my $biblionumber    = shift;
746     my $record          = GetMarcBiblio($biblionumber);
747     my $itemtype        = &GetFrameworkCode($biblionumber);
748     my ($holdingbrtagf,$holdingbrtagsubf) = &GetMarcFromKohaField("items.holdingbranch",$itemtype);
749     my $tagslib      = &GetMarcStructure( 1, $itemtype );
750     
751     my $ISBD = C4::Context->preference('ISBD');
752     my $bloc = $ISBD;
753     my $res;
754     my $blocres;
755     
756     foreach my $isbdfield ( split (/#/, $bloc) ) {
757
758         #         $isbdfield= /(.?.?.?)/;
759         $isbdfield =~ /(\d\d\d)([^\|])?\|(.*)\|(.*)\|(.*)/;
760         my $fieldvalue    = $1 || 0;
761         my $subfvalue     = $2 || "";
762         my $textbefore    = $3;
763         my $analysestring = $4;
764         my $textafter     = $5;
765     
766         #         warn "==> $1 / $2 / $3 / $4";
767         #         my $fieldvalue=substr($isbdfield,0,3);
768         if ( $fieldvalue > 0 ) {
769             my $hasputtextbefore = 0;
770             my @fieldslist = $record->field($fieldvalue);
771             @fieldslist = sort {$a->subfield($holdingbrtagsubf) cmp $b->subfield($holdingbrtagsubf)} @fieldslist if ($fieldvalue eq $holdingbrtagf);
772     
773             #         warn "ERROR IN ISBD DEFINITION at : $isbdfield" unless $fieldvalue;
774             #             warn "FV : $fieldvalue";
775             if ($subfvalue ne ""){
776               foreach my $field ( @fieldslist ) {
777                 foreach my $subfield ($field->subfield($subfvalue)){ 
778                   my $calculated = $analysestring;
779                   my $tag        = $field->tag();
780                   if ( $tag < 10 ) {
781                   }
782                   else {
783                     my $subfieldvalue =
784                     GetAuthorisedValueDesc( $tag, $subfvalue,
785                       $subfield, '', $tagslib );
786                     my $tagsubf = $tag . $subfvalue;
787                     $calculated =~
788                           s/\{(.?.?.?.?)$tagsubf(.*?)\}/$1$subfieldvalue$2\{$1$tagsubf$2\}/g;
789                     $calculated =~s#/cgi-bin/koha/[^/]+/([^.]*.pl\?.*)$#opac-$1#g;
790                 
791                     # field builded, store the result
792                     if ( $calculated && !$hasputtextbefore )
793                     {    # put textbefore if not done
794                     $blocres .= $textbefore;
795                     $hasputtextbefore = 1;
796                     }
797                 
798                     # remove punctuation at start
799                     $calculated =~ s/^( |;|:|\.|-)*//g;
800                     $blocres .= $calculated;
801                                 
802                   }
803                 }
804               }
805               $blocres .= $textafter if $hasputtextbefore;
806             } else {    
807             foreach my $field ( @fieldslist ) {
808               my $calculated = $analysestring;
809               my $tag        = $field->tag();
810               if ( $tag < 10 ) {
811               }
812               else {
813                 my @subf = $field->subfields;
814                 for my $i ( 0 .. $#subf ) {
815                 my $valuecode   = $subf[$i][1];
816                 my $subfieldcode  = $subf[$i][0];
817                 my $subfieldvalue =
818                 GetAuthorisedValueDesc( $tag, $subf[$i][0],
819                   $subf[$i][1], '', $tagslib );
820                 my $tagsubf = $tag . $subfieldcode;
821     
822                 $calculated =~ s/                  # replace all {{}} codes by the value code.
823                                   \{\{$tagsubf\}\} # catch the {{actualcode}}
824                                 /
825                                   $valuecode     # replace by the value code
826                                /gx;
827     
828                 $calculated =~
829             s/\{(.?.?.?.?)$tagsubf(.*?)\}/$1$subfieldvalue$2\{$1$tagsubf$2\}/g;
830             $calculated =~s#/cgi-bin/koha/[^/]+/([^.]*.pl\?.*)$#opac-$1#g;
831                 }
832     
833                 # field builded, store the result
834                 if ( $calculated && !$hasputtextbefore )
835                 {    # put textbefore if not done
836                 $blocres .= $textbefore;
837                 $hasputtextbefore = 1;
838                 }
839     
840                 # remove punctuation at start
841                 $calculated =~ s/^( |;|:|\.|-)*//g;
842                 $blocres .= $calculated;
843               }
844             }
845             $blocres .= $textafter if $hasputtextbefore;
846             }       
847         }
848         else {
849             $blocres .= $isbdfield;
850         }
851     }
852     $res .= $blocres;
853     
854     $res =~ s/\{(.*?)\}//g;
855     $res =~ s/\\n/\n/g;
856     $res =~ s/\n/<br\/>/g;
857     
858     # remove empty ()
859     $res =~ s/\(\)//g;
860    
861     return $res;
862 }
863
864 =head2 GetBiblio
865
866 =over 4
867
868 ( $count, @results ) = &GetBiblio($biblionumber);
869
870 =back
871
872 =cut
873
874 sub GetBiblio {
875     my ($biblionumber) = @_;
876     my $dbh = C4::Context->dbh;
877     my $sth = $dbh->prepare("SELECT * FROM biblio WHERE biblionumber = ?");
878     my $count = 0;
879     my @results;
880     $sth->execute($biblionumber);
881     while ( my $data = $sth->fetchrow_hashref ) {
882         $results[$count] = $data;
883         $count++;
884     }    # while
885     $sth->finish;
886     return ( $count, @results );
887 }    # sub GetBiblio
888
889 =head2 GetBiblioItemInfosOf
890
891 =over 4
892
893 GetBiblioItemInfosOf(@biblioitemnumbers);
894
895 =back
896
897 =cut
898
899 sub GetBiblioItemInfosOf {
900     my @biblioitemnumbers = @_;
901
902     my $query = '
903         SELECT biblioitemnumber,
904             publicationyear,
905             itemtype
906         FROM biblioitems
907         WHERE biblioitemnumber IN (' . join( ',', @biblioitemnumbers ) . ')
908     ';
909     return get_infos_of( $query, 'biblioitemnumber' );
910 }
911
912 =head1 FUNCTIONS FOR HANDLING MARC MANAGEMENT
913
914 =head2 GetMarcStructure
915
916 =over 4
917
918 $res = GetMarcStructure($forlibrarian,$frameworkcode);
919
920 Returns a reference to a big hash of hash, with the Marc structure for the given frameworkcode
921 $forlibrarian  :if set to 1, the MARC descriptions are the librarians ones, otherwise it's the public (OPAC) ones
922 $frameworkcode : the framework code to read
923
924 =back
925
926 =cut
927
928 # cache for results of GetMarcStructure -- needed
929 # for batch jobs
930 our $marc_structure_cache;
931
932 sub GetMarcStructure {
933     my ( $forlibrarian, $frameworkcode ) = @_;
934     my $dbh=C4::Context->dbh;
935     $frameworkcode = "" unless $frameworkcode;
936
937     if (defined $marc_structure_cache and exists $marc_structure_cache->{$forlibrarian}->{$frameworkcode}) {
938         return $marc_structure_cache->{$forlibrarian}->{$frameworkcode};
939     }
940
941     my $sth = $dbh->prepare(
942         "SELECT COUNT(*) FROM marc_tag_structure WHERE frameworkcode=?");
943     $sth->execute($frameworkcode);
944     my ($total) = $sth->fetchrow;
945     $frameworkcode = "" unless ( $total > 0 );
946     $sth = $dbh->prepare(
947         "SELECT tagfield,liblibrarian,libopac,mandatory,repeatable 
948         FROM marc_tag_structure 
949         WHERE frameworkcode=? 
950         ORDER BY tagfield"
951     );
952     $sth->execute($frameworkcode);
953     my ( $liblibrarian, $libopac, $tag, $res, $tab, $mandatory, $repeatable );
954
955     while ( ( $tag, $liblibrarian, $libopac, $mandatory, $repeatable ) =
956         $sth->fetchrow )
957     {
958         $res->{$tag}->{lib} =
959           ( $forlibrarian or !$libopac ) ? $liblibrarian : $libopac;
960         $res->{$tag}->{tab}        = "";
961         $res->{$tag}->{mandatory}  = $mandatory;
962         $res->{$tag}->{repeatable} = $repeatable;
963     }
964
965     $sth = $dbh->prepare(
966         "SELECT tagfield,tagsubfield,liblibrarian,libopac,tab,mandatory,repeatable,authorised_value,authtypecode,value_builder,kohafield,seealso,hidden,isurl,link,defaultvalue 
967          FROM   marc_subfield_structure 
968          WHERE  frameworkcode=? 
969          ORDER BY tagfield,tagsubfield
970         "
971     );
972     
973     $sth->execute($frameworkcode);
974
975     my $subfield;
976     my $authorised_value;
977     my $authtypecode;
978     my $value_builder;
979     my $kohafield;
980     my $seealso;
981     my $hidden;
982     my $isurl;
983     my $link;
984     my $defaultvalue;
985
986     while (
987         (
988             $tag,          $subfield,      $liblibrarian,
989             $libopac,      $tab,
990             $mandatory,    $repeatable,    $authorised_value,
991             $authtypecode, $value_builder, $kohafield,
992             $seealso,      $hidden,        $isurl,
993             $link,$defaultvalue
994         )
995         = $sth->fetchrow
996       )
997     {
998         $res->{$tag}->{$subfield}->{lib} =
999           ( $forlibrarian or !$libopac ) ? $liblibrarian : $libopac;
1000         $res->{$tag}->{$subfield}->{tab}              = $tab;
1001         $res->{$tag}->{$subfield}->{mandatory}        = $mandatory;
1002         $res->{$tag}->{$subfield}->{repeatable}       = $repeatable;
1003         $res->{$tag}->{$subfield}->{authorised_value} = $authorised_value;
1004         $res->{$tag}->{$subfield}->{authtypecode}     = $authtypecode;
1005         $res->{$tag}->{$subfield}->{value_builder}    = $value_builder;
1006         $res->{$tag}->{$subfield}->{kohafield}        = $kohafield;
1007         $res->{$tag}->{$subfield}->{seealso}          = $seealso;
1008         $res->{$tag}->{$subfield}->{hidden}           = $hidden;
1009         $res->{$tag}->{$subfield}->{isurl}            = $isurl;
1010         $res->{$tag}->{$subfield}->{'link'}           = $link;
1011         $res->{$tag}->{$subfield}->{defaultvalue}     = $defaultvalue;
1012     }
1013
1014     $marc_structure_cache->{$forlibrarian}->{$frameworkcode} = $res;
1015
1016     return $res;
1017 }
1018
1019 =head2 GetUsedMarcStructure
1020
1021     the same function as GetMarcStructure except it just takes field
1022     in tab 0-9. (used field)
1023     
1024     my $results = GetUsedMarcStructure($frameworkcode);
1025     
1026     L<$results> is a ref to an array which each case containts a ref
1027     to a hash which each keys is the columns from marc_subfield_structure
1028     
1029     L<$frameworkcode> is the framework code. 
1030     
1031 =cut
1032
1033 sub GetUsedMarcStructure($){
1034     my $frameworkcode = shift || '';
1035     my $query         = qq/
1036         SELECT *
1037         FROM   marc_subfield_structure
1038         WHERE   tab > -1 
1039             AND frameworkcode = ?
1040         ORDER BY tagfield, tagsubfield
1041     /;
1042     my $sth = C4::Context->dbh->prepare($query);
1043     $sth->execute($frameworkcode);
1044     return $sth->fetchall_arrayref({});
1045 }
1046
1047 =head2 GetMarcFromKohaField
1048
1049 =over 4
1050
1051 ($MARCfield,$MARCsubfield)=GetMarcFromKohaField($kohafield,$frameworkcode);
1052 Returns the MARC fields & subfields mapped to the koha field 
1053 for the given frameworkcode
1054
1055 =back
1056
1057 =cut
1058
1059 sub GetMarcFromKohaField {
1060     my ( $kohafield, $frameworkcode ) = @_;
1061     return 0, 0 unless $kohafield and defined $frameworkcode;
1062     my $relations = C4::Context->marcfromkohafield;
1063     return (
1064         $relations->{$frameworkcode}->{$kohafield}->[0],
1065         $relations->{$frameworkcode}->{$kohafield}->[1]
1066     );
1067 }
1068
1069 =head2 GetMarcBiblio
1070
1071 =over 4
1072
1073 my $record = GetMarcBiblio($biblionumber);
1074
1075 =back
1076
1077 Returns MARC::Record representing bib identified by
1078 C<$biblionumber>.  If no bib exists, returns undef.
1079 The MARC record contains both biblio & item data.
1080
1081 =cut
1082
1083 sub GetMarcBiblio {
1084     my $biblionumber = shift;
1085     my $dbh          = C4::Context->dbh;
1086     my $sth          =
1087       $dbh->prepare("SELECT marcxml FROM biblioitems WHERE biblionumber=? ");
1088     $sth->execute($biblionumber);
1089     my $row = $sth->fetchrow_hashref;
1090     my $marcxml = StripNonXmlChars($row->{'marcxml'});
1091      MARC::File::XML->default_record_format(C4::Context->preference('marcflavour'));
1092     my $record = MARC::Record->new();
1093     if ($marcxml) {
1094         $record = eval {MARC::Record::new_from_xml( $marcxml, "utf8", C4::Context->preference('marcflavour'))};
1095         if ($@) {warn " problem with :$biblionumber : $@ \n$marcxml";}
1096 #      $record = MARC::Record::new_from_usmarc( $marc) if $marc;
1097         return $record;
1098     } else {
1099         return undef;
1100     }
1101 }
1102
1103 =head2 GetXmlBiblio
1104
1105 =over 4
1106
1107 my $marcxml = GetXmlBiblio($biblionumber);
1108
1109 Returns biblioitems.marcxml of the biblionumber passed in parameter.
1110 The XML contains both biblio & item datas
1111
1112 =back
1113
1114 =cut
1115
1116 sub GetXmlBiblio {
1117     my ( $biblionumber ) = @_;
1118     my $dbh = C4::Context->dbh;
1119     my $sth =
1120       $dbh->prepare("SELECT marcxml FROM biblioitems WHERE biblionumber=? ");
1121     $sth->execute($biblionumber);
1122     my ($marcxml) = $sth->fetchrow;
1123     return $marcxml;
1124 }
1125
1126 =head2 GetCOinSBiblio
1127
1128 =over 4
1129
1130 my $coins = GetCOinSBiblio($biblionumber);
1131
1132 Returns the COinS(a span) which can be included in a biblio record
1133
1134 =back
1135
1136 =cut
1137
1138 sub GetCOinSBiblio {
1139     my ( $biblionumber ) = @_;
1140     my $record = GetMarcBiblio($biblionumber);
1141     my $coins_value;
1142     if (defined $record){
1143     # get the coin format
1144     my $pos7 = substr $record->leader(), 7,1;
1145     my $pos6 = substr $record->leader(), 6,1;
1146     my $mtx;
1147     my $genre;
1148     my ($aulast, $aufirst) = ('','');
1149     my $oauthors  = '';
1150     my $title     = '';
1151     my $subtitle  = '';
1152     my $pubyear   = '';
1153     my $isbn      = '';
1154     my $issn      = '';
1155     my $publisher = '';
1156
1157     if ( C4::Context->preference("marcflavour") eq "UNIMARC" ){
1158         my $fmts6;
1159         my $fmts7;
1160         %$fmts6 = (
1161                     'a' => 'book',
1162                     'b' => 'manuscript',
1163                     'c' => 'book',
1164                     'd' => 'manuscript',
1165                     'e' => 'map',
1166                     'f' => 'map',
1167                     'g' => 'film',
1168                     'i' => 'audioRecording',
1169                     'j' => 'audioRecording',
1170                     'k' => 'artwork',
1171                     'l' => 'document',
1172                     'm' => 'computerProgram',
1173                     'r' => 'document',
1174
1175                 );
1176         %$fmts7 = (
1177                     'a' => 'journalArticle',
1178                     's' => 'journal',
1179                 );
1180
1181         $genre =  $fmts6->{$pos6} ? $fmts6->{$pos6} : 'book' ;
1182
1183         if( $genre eq 'book' ){
1184             $genre =  $fmts7->{$pos7} if $fmts7->{$pos7};
1185         }
1186
1187         ##### We must transform mtx to a valable mtx and document type ####
1188         if( $genre eq 'book' ){
1189             $mtx = 'book';
1190         }elsif( $genre eq 'journal' ){
1191             $mtx = 'journal';
1192         }elsif( $genre eq 'journalArticle' ){
1193             $mtx = 'journal';
1194             $genre = 'article';
1195         }else{
1196             $mtx = 'dc';
1197         }
1198
1199         $genre = ($mtx eq 'dc') ? "&rft.type=$genre" : "&rft.genre=$genre";
1200
1201         # Setting datas
1202         $aulast     = $record->subfield('700','a');
1203         $aufirst    = $record->subfield('700','b');
1204         $oauthors   = "&rft.au=$aufirst $aulast";
1205         # others authors
1206         if($record->field('200')){
1207             for my $au ($record->field('200')->subfield('g')){
1208                 $oauthors .= "&rft.au=$au";
1209             }
1210         }
1211         $title      = ( $mtx eq 'dc' ) ? "&rft.title=".$record->subfield('200','a') :
1212                                          "&rft.title=".$record->subfield('200','a')."&rft.btitle=".$record->subfield('200','a');
1213         $pubyear    = $record->subfield('210','d');
1214         $publisher  = $record->subfield('210','c');
1215         $isbn       = $record->subfield('010','a');
1216         $issn       = $record->subfield('011','a');
1217     }else{
1218         # MARC21 need some improve
1219         my $fmts;
1220         $mtx = 'book';
1221         $genre = "&rft.genre=book";
1222
1223         # Setting datas
1224         if ($record->field('100')) {
1225             $oauthors .= "&amp;rft.au=".$record->subfield('100','a');
1226         }
1227         # others authors
1228         if($record->field('700')){
1229             for my $au ($record->field('700')->subfield('a')){
1230                 $oauthors .= "&rft.au=$au";
1231             }
1232         }
1233         $title      = "&amp;rft.btitle=".$record->subfield('245','a');
1234         $subtitle   = $record->subfield('245', 'b') || '';
1235         $title .= $subtitle;
1236         $pubyear    = $record->subfield('260', 'c') || '';
1237         $publisher  = $record->subfield('260', 'b') || '';
1238         $isbn       = $record->subfield('020', 'a') || '';
1239         $issn       = $record->subfield('022', 'a') || '';
1240
1241     }
1242     $coins_value = "ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3A$mtx$genre$title&rft.isbn=$isbn&rft.issn=$issn&rft.aulast=$aulast&rft.aufirst=$aufirst$oauthors&rft.pub=$publisher&rft.date=$pubyear";
1243     $coins_value =~ s/\ /\+/g;
1244     #<!-- TMPL_VAR NAME="ocoins_format" -->&amp;rft.au=<!-- TMPL_VAR NAME="author" -->&amp;rft.btitle=<!-- TMPL_VAR NAME="title" -->&amp;rft.date=<!-- TMPL_VAR NAME="publicationyear" -->&amp;rft.pages=<!-- TMPL_VAR NAME="pages" -->&amp;rft.isbn=<!-- TMPL_VAR NAME=amazonisbn -->&amp;rft.aucorp=&amp;rft.place=<!-- TMPL_VAR NAME="place" -->&amp;rft.pub=<!-- TMPL_VAR NAME="publishercode" -->&amp;rft.edition=<!-- TMPL_VAR NAME="edition" -->&amp;rft.series=<!-- TMPL_VAR NAME="series" -->&amp;rft.genre="
1245     }
1246     return $coins_value;
1247 }
1248
1249 =head2 GetAuthorisedValueDesc
1250
1251 =over 4
1252
1253 my $subfieldvalue =get_authorised_value_desc(
1254     $tag, $subf[$i][0],$subf[$i][1], '', $taglib, $category);
1255 Retrieve the complete description for a given authorised value.
1256
1257 Now takes $category and $value pair too.
1258 my $auth_value_desc =GetAuthorisedValueDesc(
1259     '','', 'DVD' ,'','','CCODE');
1260
1261 =back
1262
1263 =cut
1264
1265 sub GetAuthorisedValueDesc {
1266     my ( $tag, $subfield, $value, $framework, $tagslib, $category ) = @_;
1267     my $dbh = C4::Context->dbh;
1268
1269     if (!$category) {
1270
1271         return $value unless defined $tagslib->{$tag}->{$subfield}->{'authorised_value'};
1272
1273 #---- branch
1274         if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
1275             return C4::Branch::GetBranchName($value);
1276         }
1277
1278 #---- itemtypes
1279         if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "itemtypes" ) {
1280             return getitemtypeinfo($value)->{description};
1281         }
1282
1283 #---- "true" authorized value
1284         $category = $tagslib->{$tag}->{$subfield}->{'authorised_value'}
1285     }
1286
1287     if ( $category ne "" ) {
1288         my $sth =
1289             $dbh->prepare(
1290                     "SELECT lib FROM authorised_values WHERE category = ? AND authorised_value = ?"
1291                     );
1292         $sth->execute( $category, $value );
1293         my $data = $sth->fetchrow_hashref;
1294         return $data->{'lib'};
1295     }
1296     else {
1297         return $value;    # if nothing is found return the original value
1298     }
1299 }
1300
1301 =head2 GetMarcNotes
1302
1303 =over 4
1304
1305 $marcnotesarray = GetMarcNotes( $record, $marcflavour );
1306 Get all notes from the MARC record and returns them in an array.
1307 The note are stored in differents places depending on MARC flavour
1308
1309 =back
1310
1311 =cut
1312
1313 sub GetMarcNotes {
1314     my ( $record, $marcflavour ) = @_;
1315     my $scope;
1316     if ( $marcflavour eq "MARC21" ) {
1317         $scope = '5..';
1318     }
1319     else {    # assume unimarc if not marc21
1320         $scope = '3..';
1321     }
1322     my @marcnotes;
1323     my $note = "";
1324     my $tag  = "";
1325     my $marcnote;
1326     foreach my $field ( $record->field($scope) ) {
1327         my $value = $field->as_string();
1328         $value =~ s/\n/<br \/>/g ;
1329
1330         if ( $note ne "" ) {
1331             $marcnote = { marcnote => $note, };
1332             push @marcnotes, $marcnote;
1333             $note = $value;
1334         }
1335         if ( $note ne $value ) {
1336             $note = $note . " " . $value;
1337         }
1338     }
1339
1340     if ( $note ) {
1341         $marcnote = { marcnote => $note };
1342         push @marcnotes, $marcnote;    #load last tag into array
1343     }
1344     return \@marcnotes;
1345 }    # end GetMarcNotes
1346
1347 =head2 GetMarcSubjects
1348
1349 =over 4
1350
1351 $marcsubjcts = GetMarcSubjects($record,$marcflavour);
1352 Get all subjects from the MARC record and returns them in an array.
1353 The subjects are stored in differents places depending on MARC flavour
1354
1355 =back
1356
1357 =cut
1358
1359 sub GetMarcSubjects {
1360     my ( $record, $marcflavour ) = @_;
1361     my ( $mintag, $maxtag );
1362     if ( $marcflavour eq "MARC21" ) {
1363         $mintag = "600";
1364         $maxtag = "699";
1365     }
1366     else {    # assume unimarc if not marc21
1367         $mintag = "600";
1368         $maxtag = "611";
1369     }
1370     
1371     my @marcsubjects;
1372     my $subject = "";
1373     my $subfield = "";
1374     my $marcsubject;
1375
1376     foreach my $field ( $record->field('6..' )) {
1377         next unless $field->tag() >= $mintag && $field->tag() <= $maxtag;
1378         my @subfields_loop;
1379         my @subfields = $field->subfields();
1380         my $counter = 0;
1381         my @link_loop;
1382         # if there is an authority link, build the link with an= subfield9
1383         my $subfield9 = $field->subfield('9');
1384         for my $subject_subfield (@subfields ) {
1385             # don't load unimarc subfields 3,4,5
1386             next if (($marcflavour eq "UNIMARC") and ($subject_subfield->[0] =~ /3|4|5/ ) );
1387             # don't load MARC21 subfields 2 (FIXME: any more subfields??)
1388             next if (($marcflavour eq "MARC21")  and ($subject_subfield->[0] =~ /2/ ) );
1389             my $code = $subject_subfield->[0];
1390             my $value = $subject_subfield->[1];
1391             my $linkvalue = $value;
1392             $linkvalue =~ s/(\(|\))//g;
1393             my $operator = " and " unless $counter==0;
1394             if ($subfield9) {
1395                 @link_loop = ({'limit' => 'an' ,link => "$subfield9" });
1396             } else {
1397                 push @link_loop, {'limit' => 'su', link => $linkvalue, operator => $operator };
1398             }
1399             my $separator = C4::Context->preference("authoritysep") unless $counter==0;
1400             # ignore $9
1401             my @this_link_loop = @link_loop;
1402             push @subfields_loop, {code => $code, value => $value, link_loop => \@this_link_loop, separator => $separator} unless ($subject_subfield->[0] eq 9 );
1403             $counter++;
1404         }
1405                 
1406         push @marcsubjects, { MARCSUBJECT_SUBFIELDS_LOOP => \@subfields_loop };
1407         
1408     }
1409         return \@marcsubjects;
1410 }  #end getMARCsubjects
1411
1412 =head2 GetMarcAuthors
1413
1414 =over 4
1415
1416 authors = GetMarcAuthors($record,$marcflavour);
1417 Get all authors from the MARC record and returns them in an array.
1418 The authors are stored in differents places depending on MARC flavour
1419
1420 =back
1421
1422 =cut
1423
1424 sub GetMarcAuthors {
1425     my ( $record, $marcflavour ) = @_;
1426     my ( $mintag, $maxtag );
1427     # tagslib useful for UNIMARC author reponsabilities
1428     my $tagslib = &GetMarcStructure( 1, '' ); # FIXME : we don't have the framework available, we take the default framework. May be buggy on some setups, will be usually correct.
1429     if ( $marcflavour eq "MARC21" ) {
1430         $mintag = "700";
1431         $maxtag = "720"; 
1432     }
1433     elsif ( $marcflavour eq "UNIMARC" ) {    # assume unimarc if not marc21
1434         $mintag = "700";
1435         $maxtag = "712";
1436     }
1437     else {
1438         return;
1439     }
1440     my @marcauthors;
1441
1442     foreach my $field ( $record->fields ) {
1443         next unless $field->tag() >= $mintag && $field->tag() <= $maxtag;
1444         my @subfields_loop;
1445         my @link_loop;
1446         my @subfields = $field->subfields();
1447         my $count_auth = 0;
1448         # if there is an authority link, build the link with Koha-Auth-Number: subfield9
1449         my $subfield9 = $field->subfield('9');
1450         for my $authors_subfield (@subfields) {
1451             # don't load unimarc subfields 3, 5
1452             next if ($marcflavour eq 'UNIMARC' and ($authors_subfield->[0] =~ /3|5/ ) );
1453             my $subfieldcode = $authors_subfield->[0];
1454             my $value = $authors_subfield->[1];
1455             my $linkvalue = $value;
1456             $linkvalue =~ s/(\(|\))//g;
1457             my $operator = " and " unless $count_auth==0;
1458             # if we have an authority link, use that as the link, otherwise use standard searching
1459             if ($subfield9) {
1460                 @link_loop = ({'limit' => 'an' ,link => "$subfield9" });
1461             }
1462             else {
1463                 # reset $linkvalue if UNIMARC author responsibility
1464                 if ( $marcflavour eq 'UNIMARC' and ($authors_subfield->[0] eq "4")) {
1465                     $linkvalue = "(".GetAuthorisedValueDesc( $field->tag(), $authors_subfield->[0], $authors_subfield->[1], '', $tagslib ).")";
1466                 }
1467                 push @link_loop, {'limit' => 'au', link => $linkvalue, operator => $operator };
1468             }
1469             $value = GetAuthorisedValueDesc( $field->tag(), $authors_subfield->[0], $authors_subfield->[1], '', $tagslib ) if ( $marcflavour eq 'UNIMARC' and ($authors_subfield->[0] =~/4/));
1470             my @this_link_loop = @link_loop;
1471             my $separator = C4::Context->preference("authoritysep") unless $count_auth==0;
1472             push @subfields_loop, {code => $subfieldcode, value => $value, link_loop => \@this_link_loop, separator => $separator} unless ($authors_subfield->[0] eq '9' );
1473             $count_auth++;
1474         }
1475         push @marcauthors, { MARCAUTHOR_SUBFIELDS_LOOP => \@subfields_loop };
1476     }
1477     return \@marcauthors;
1478 }
1479
1480 =head2 GetMarcUrls
1481
1482 =over 4
1483
1484 $marcurls = GetMarcUrls($record,$marcflavour);
1485 Returns arrayref of URLs from MARC data, suitable to pass to tmpl loop.
1486 Assumes web resources (not uncommon in MARC21 to omit resource type ind) 
1487
1488 =back
1489
1490 =cut
1491
1492 sub GetMarcUrls {
1493     my ( $record, $marcflavour ) = @_;
1494
1495     my @marcurls;
1496     for my $field ( $record->field('856') ) {
1497         my $marcurl;
1498         my @notes;
1499         for my $note ( $field->subfield('z') ) {
1500             push @notes, { note => $note };
1501         }
1502         my @urls = $field->subfield('u');
1503         foreach my $url (@urls) {
1504             if ( $marcflavour eq 'MARC21' ) {
1505                 my $s3   = $field->subfield('3');
1506                 my $link = $field->subfield('y');
1507                 unless ( $url =~ /^\w+:/ ) {
1508                     if ( $field->indicator(1) eq '7' ) {
1509                         $url = $field->subfield('2') . "://" . $url;
1510                     } elsif ( $field->indicator(1) eq '1' ) {
1511                         $url = 'ftp://' . $url;
1512                     } else {
1513                         #  properly, this should be if ind1=4,
1514                         #  however we will assume http protocol since we're building a link.
1515                         $url = 'http://' . $url;
1516                     }
1517                 }
1518                 # TODO handle ind 2 (relationship)
1519                 $marcurl = {
1520                     MARCURL => $url,
1521                     notes   => \@notes,
1522                 };
1523                 $marcurl->{'linktext'} = $link || $s3 || C4::Context->preference('URLLinkText') || $url;
1524                 $marcurl->{'part'} = $s3 if ($link);
1525                 $marcurl->{'toc'} = 1 if ( defined($s3) && $s3 =~ /^table/i );
1526             } else {
1527                 $marcurl->{'linktext'} = $field->subfield('2') || C4::Context->preference('URLLinkText') || $url;
1528                 $marcurl->{'MARCURL'} = $url;
1529             }
1530             push @marcurls, $marcurl;
1531         }
1532     }
1533     return \@marcurls;
1534 }
1535
1536 =head2 GetMarcSeries
1537
1538 =over 4
1539
1540 $marcseriesarray = GetMarcSeries($record,$marcflavour);
1541 Get all series from the MARC record and returns them in an array.
1542 The series are stored in differents places depending on MARC flavour
1543
1544 =back
1545
1546 =cut
1547
1548 sub GetMarcSeries {
1549     my ($record, $marcflavour) = @_;
1550     my ($mintag, $maxtag);
1551     if ($marcflavour eq "MARC21") {
1552         $mintag = "440";
1553         $maxtag = "490";
1554     } else {           # assume unimarc if not marc21
1555         $mintag = "600";
1556         $maxtag = "619";
1557     }
1558
1559     my @marcseries;
1560     my $subjct = "";
1561     my $subfield = "";
1562     my $marcsubjct;
1563
1564     foreach my $field ($record->field('440'), $record->field('490')) {
1565         my @subfields_loop;
1566         #my $value = $field->subfield('a');
1567         #$marcsubjct = {MARCSUBJCT => $value,};
1568         my @subfields = $field->subfields();
1569         #warn "subfields:".join " ", @$subfields;
1570         my $counter = 0;
1571         my @link_loop;
1572         for my $series_subfield (@subfields) {
1573             my $volume_number;
1574             undef $volume_number;
1575             # see if this is an instance of a volume
1576             if ($series_subfield->[0] eq 'v') {
1577                 $volume_number=1;
1578             }
1579
1580             my $code = $series_subfield->[0];
1581             my $value = $series_subfield->[1];
1582             my $linkvalue = $value;
1583             $linkvalue =~ s/(\(|\))//g;
1584             my $operator = " and " unless $counter==0;
1585             push @link_loop, {link => $linkvalue, operator => $operator };
1586             my $separator = C4::Context->preference("authoritysep") unless $counter==0;
1587             if ($volume_number) {
1588             push @subfields_loop, {volumenum => $value};
1589             }
1590             else {
1591             push @subfields_loop, {code => $code, value => $value, link_loop => \@link_loop, separator => $separator, volumenum => $volume_number};
1592             }
1593             $counter++;
1594         }
1595         push @marcseries, { MARCSERIES_SUBFIELDS_LOOP => \@subfields_loop };
1596         #$marcsubjct = {MARCSUBJCT => $field->as_string(),};
1597         #push @marcsubjcts, $marcsubjct;
1598         #$subjct = $value;
1599
1600     }
1601     my $marcseriessarray=\@marcseries;
1602     return $marcseriessarray;
1603 }  #end getMARCseriess
1604
1605 =head2 GetFrameworkCode
1606
1607 =over 4
1608
1609     $frameworkcode = GetFrameworkCode( $biblionumber )
1610
1611 =back
1612
1613 =cut
1614
1615 sub GetFrameworkCode {
1616     my ( $biblionumber ) = @_;
1617     my $dbh = C4::Context->dbh;
1618     my $sth = $dbh->prepare("SELECT frameworkcode FROM biblio WHERE biblionumber=?");
1619     $sth->execute($biblionumber);
1620     my ($frameworkcode) = $sth->fetchrow;
1621     return $frameworkcode;
1622 }
1623
1624 =head2 GetPublisherNameFromIsbn
1625
1626     $name = GetPublishercodeFromIsbn($isbn);
1627     if(defined $name){
1628         ...
1629     }
1630
1631 =cut
1632
1633 sub GetPublisherNameFromIsbn($){
1634     my $isbn = shift;
1635     $isbn =~ s/[- _]//g;
1636     $isbn =~ s/^0*//;
1637     my @codes = (split '-', DisplayISBN($isbn));
1638     my $code = $codes[0].$codes[1].$codes[2];
1639     my $dbh  = C4::Context->dbh;
1640     my $query = qq{
1641         SELECT distinct publishercode
1642         FROM   biblioitems
1643         WHERE  isbn LIKE ?
1644         AND    publishercode IS NOT NULL
1645         LIMIT 1
1646     };
1647     my $sth = $dbh->prepare($query);
1648     $sth->execute("$code%");
1649     my $name = $sth->fetchrow;
1650     return $name if length $name;
1651     return undef;
1652 }
1653
1654 =head2 TransformKohaToMarc
1655
1656 =over 4
1657
1658     $record = TransformKohaToMarc( $hash )
1659     This function builds partial MARC::Record from a hash
1660     Hash entries can be from biblio or biblioitems.
1661     This function is called in acquisition module, to create a basic catalogue entry from user entry
1662
1663 =back
1664
1665 =cut
1666
1667 sub TransformKohaToMarc {
1668     my ( $hash ) = @_;
1669     my $sth = C4::Context->dbh->prepare(
1670         "SELECT tagfield,tagsubfield FROM marc_subfield_structure WHERE frameworkcode=? AND kohafield=?"
1671     );
1672     my $record = MARC::Record->new();
1673     SetMarcUnicodeFlag($record, C4::Context->preference("marcflavour"));
1674     foreach (keys %{$hash}) {
1675         &TransformKohaToMarcOneField( $sth, $record, $_, $hash->{$_}, '' );
1676     }
1677     return $record;
1678 }
1679
1680 =head2 TransformKohaToMarcOneField
1681
1682 =over 4
1683
1684     $record = TransformKohaToMarcOneField( $sth, $record, $kohafieldname, $value, $frameworkcode );
1685
1686 =back
1687
1688 =cut
1689
1690 sub TransformKohaToMarcOneField {
1691     my ( $sth, $record, $kohafieldname, $value, $frameworkcode ) = @_;
1692     $frameworkcode='' unless $frameworkcode;
1693     my $tagfield;
1694     my $tagsubfield;
1695
1696     if ( !defined $sth ) {
1697         my $dbh = C4::Context->dbh;
1698         $sth = $dbh->prepare(
1699             "SELECT tagfield,tagsubfield FROM marc_subfield_structure WHERE frameworkcode=? AND kohafield=?"
1700         );
1701     }
1702     $sth->execute( $frameworkcode, $kohafieldname );
1703     if ( ( $tagfield, $tagsubfield ) = $sth->fetchrow ) {
1704         my $tag = $record->field($tagfield);
1705         if ($tag) {
1706             $tag->update( $tagsubfield => $value );
1707             $record->delete_field($tag);
1708             $record->insert_fields_ordered($tag);
1709         }
1710         else {
1711             $record->add_fields( $tagfield, " ", " ", $tagsubfield => $value );
1712         }
1713     }
1714     return $record;
1715 }
1716
1717 =head2 TransformHtmlToXml
1718
1719 =over 4
1720
1721 $xml = TransformHtmlToXml( $tags, $subfields, $values, $indicator, $ind_tag, $auth_type )
1722
1723 $auth_type contains :
1724 - nothing : rebuild a biblio, un UNIMARC the encoding is in 100$a pos 26/27
1725 - UNIMARCAUTH : rebuild an authority. In UNIMARC, the encoding is in 100$a pos 13/14
1726 - ITEM : rebuild an item : in UNIMARC, 100$a, it's in the biblio ! (otherwise, we would get 2 100 fields !)
1727
1728 =back
1729
1730 =cut
1731
1732 sub TransformHtmlToXml {
1733     my ( $tags, $subfields, $values, $indicator, $ind_tag, $auth_type ) = @_;
1734     my $xml = MARC::File::XML::header('UTF-8');
1735     $xml .= "<record>\n";
1736     $auth_type = C4::Context->preference('marcflavour') unless $auth_type;
1737     MARC::File::XML->default_record_format($auth_type);
1738     # in UNIMARC, field 100 contains the encoding
1739     # check that there is one, otherwise the 
1740     # MARC::Record->new_from_xml will fail (and Koha will die)
1741     my $unimarc_and_100_exist=0;
1742     $unimarc_and_100_exist=1 if $auth_type eq 'ITEM'; # if we rebuild an item, no need of a 100 field
1743     my $prevvalue;
1744     my $prevtag = -1;
1745     my $first   = 1;
1746     my $j       = -1;
1747         @$indicator=map{sprintf("%2s",$_) unless ( length($_)<2)}@$indicator;
1748     for ( my $i = 0 ; $i < @$tags ; $i++ ) {
1749         if (C4::Context->preference('marcflavour') eq 'UNIMARC' and @$tags[$i] eq "100" and @$subfields[$i] eq "a") {
1750             # if we have a 100 field and it's values are not correct, skip them.
1751             # if we don't have any valid 100 field, we will create a default one at the end
1752             my $enc = substr( @$values[$i], 26, 2 );
1753             if ($enc eq '01' or $enc eq '50' or $enc eq '03') {
1754                 $unimarc_and_100_exist=1;
1755             } else {
1756                 next;
1757             }
1758         }
1759         @$values[$i] =~ s/&/&amp;/g;
1760         @$values[$i] =~ s/</&lt;/g;
1761         @$values[$i] =~ s/>/&gt;/g;
1762         @$values[$i] =~ s/"/&quot;/g;
1763         @$values[$i] =~ s/'/&apos;/g;
1764 #         if ( !utf8::is_utf8( @$values[$i] ) ) {
1765 #             utf8::decode( @$values[$i] );
1766 #         }
1767         if ( ( @$tags[$i] ne $prevtag ) ) {
1768             $j++ unless ( @$tags[$i] eq "" );
1769             if ( !$first ) {
1770                 $xml .= "</datafield>\n";
1771                 if (   ( @$tags[$i] && @$tags[$i] > 10 )
1772                     && ( @$values[$i] ne "" ) )
1773                 {
1774                     my $ind1 = _default_ind_to_space(substr( @$indicator[$j], 0, 1 ));
1775                     my $ind2;
1776                     if ( @$indicator[$j] ) {
1777                         $ind2 = _default_ind_to_space(substr( @$indicator[$j], 1, 1 ));
1778                     }
1779                     else {
1780                         warn "Indicator in @$tags[$i] is empty";
1781                         $ind2 = " ";
1782                     }
1783                     $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
1784                     $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
1785                     $first = 0;
1786                 }
1787                 else {
1788                     $first = 1;
1789                 }
1790             }
1791             else {
1792                 if ( @$values[$i] ne "" ) {
1793
1794                     # leader
1795                     if ( @$tags[$i] eq "000" ) {
1796                         $xml .= "<leader>@$values[$i]</leader>\n";
1797                         $first = 1;
1798
1799                         # rest of the fixed fields
1800                     }
1801                     elsif ( @$tags[$i] < 10 ) {
1802                         $xml .= "<controlfield tag=\"@$tags[$i]\">@$values[$i]</controlfield>\n";
1803                         $first = 1;
1804                     }
1805                     else {
1806                         my $ind1 = _default_ind_to_space( substr( @$indicator[$j], 0, 1 ) );
1807                         my $ind2 = _default_ind_to_space( substr( @$indicator[$j], 1, 1 ) );
1808                         $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
1809                         $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
1810                         $first = 0;
1811                     }
1812                 }
1813             }
1814         }
1815         else {    # @$tags[$i] eq $prevtag
1816             if ( @$values[$i] eq "" ) {
1817             }
1818             else {
1819                 if ($first) {
1820                     my $ind1 = _default_ind_to_space( substr( @$indicator[$j], 0, 1 ) );
1821                     my $ind2 = _default_ind_to_space( substr( @$indicator[$j], 1, 1 ) );
1822                     $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
1823                     $first = 0;
1824                 }
1825                 $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
1826             }
1827         }
1828         $prevtag = @$tags[$i];
1829     }
1830     $xml .= "</datafield>\n" if @$tags > 0;
1831     if (C4::Context->preference('marcflavour') eq 'UNIMARC' and !$unimarc_and_100_exist) {
1832 #     warn "SETTING 100 for $auth_type";
1833         my $string = strftime( "%Y%m%d", localtime(time) );
1834         # set 50 to position 26 is biblios, 13 if authorities
1835         my $pos=26;
1836         $pos=13 if $auth_type eq 'UNIMARCAUTH';
1837         $string = sprintf( "%-*s", 35, $string );
1838         substr( $string, $pos , 6, "50" );
1839         $xml .= "<datafield tag=\"100\" ind1=\"\" ind2=\"\">\n";
1840         $xml .= "<subfield code=\"a\">$string</subfield>\n";
1841         $xml .= "</datafield>\n";
1842     }
1843     $xml .= "</record>\n";
1844     $xml .= MARC::File::XML::footer();
1845     return $xml;
1846 }
1847
1848 =head2 _default_ind_to_space
1849
1850 Passed what should be an indicator returns a space
1851 if its undefined or zero length
1852
1853 =cut
1854
1855 sub _default_ind_to_space {
1856     my $s = shift;
1857     if (!defined $s || $s eq q{}) {
1858         return ' ';
1859     }
1860     return $s;
1861 }
1862
1863 =head2 TransformHtmlToMarc
1864
1865     L<$record> = TransformHtmlToMarc(L<$params>,L<$cgi>)
1866     L<$params> is a ref to an array as below:
1867     {
1868         'tag_010_indicator1_531951' ,
1869         'tag_010_indicator2_531951' ,
1870         'tag_010_code_a_531951_145735' ,
1871         'tag_010_subfield_a_531951_145735' ,
1872         'tag_200_indicator1_873510' ,
1873         'tag_200_indicator2_873510' ,
1874         'tag_200_code_a_873510_673465' ,
1875         'tag_200_subfield_a_873510_673465' ,
1876         'tag_200_code_b_873510_704318' ,
1877         'tag_200_subfield_b_873510_704318' ,
1878         'tag_200_code_e_873510_280822' ,
1879         'tag_200_subfield_e_873510_280822' ,
1880         'tag_200_code_f_873510_110730' ,
1881         'tag_200_subfield_f_873510_110730' ,
1882     }
1883     L<$cgi> is the CGI object which containts the value.
1884     L<$record> is the MARC::Record object.
1885
1886 =cut
1887
1888 sub TransformHtmlToMarc {
1889     my $params = shift;
1890     my $cgi    = shift;
1891
1892     # explicitly turn on the UTF-8 flag for all
1893     # 'tag_' parameters to avoid incorrect character
1894     # conversion later on
1895     my $cgi_params = $cgi->Vars;
1896     foreach my $param_name (keys %$cgi_params) {
1897         if ($param_name =~ /^tag_/) {
1898             my $param_value = $cgi_params->{$param_name};
1899             if (utf8::decode($param_value)) {
1900                 $cgi_params->{$param_name} = $param_value;
1901             } 
1902             # FIXME - need to do something if string is not valid UTF-8
1903         }
1904     }
1905    
1906     # creating a new record
1907     my $record  = MARC::Record->new();
1908     my $i=0;
1909     my @fields;
1910     while ($params->[$i]){ # browse all CGI params
1911         my $param = $params->[$i];
1912         my $newfield=0;
1913         # if we are on biblionumber, store it in the MARC::Record (it may not be in the edited fields)
1914         if ($param eq 'biblionumber') {
1915             my ( $biblionumbertagfield, $biblionumbertagsubfield ) =
1916                 &GetMarcFromKohaField( "biblio.biblionumber", '' );
1917             if ($biblionumbertagfield < 10) {
1918                 $newfield = MARC::Field->new(
1919                     $biblionumbertagfield,
1920                     $cgi->param($param),
1921                 );
1922             } else {
1923                 $newfield = MARC::Field->new(
1924                     $biblionumbertagfield,
1925                     '',
1926                     '',
1927                     "$biblionumbertagsubfield" => $cgi->param($param),
1928                 );
1929             }
1930             push @fields,$newfield if($newfield);
1931         } 
1932         elsif ($param =~ /^tag_(\d*)_indicator1_/){ # new field start when having 'input name="..._indicator1_..."
1933             my $tag  = $1;
1934             
1935             my $ind1 = _default_ind_to_space(substr($cgi->param($param),          0, 1));
1936             my $ind2 = _default_ind_to_space(substr($cgi->param($params->[$i+1]), 0, 1));
1937             $newfield=0;
1938             my $j=$i+2;
1939             
1940             if($tag < 10){ # no code for theses fields
1941     # in MARC editor, 000 contains the leader.
1942                 if ($tag eq '000' ) {
1943                     $record->leader($cgi->param($params->[$j+1])) if length($cgi->param($params->[$j+1]))==24;
1944     # between 001 and 009 (included)
1945                 } elsif ($cgi->param($params->[$j+1]) ne '') {
1946                     $newfield = MARC::Field->new(
1947                         $tag,
1948                         $cgi->param($params->[$j+1]),
1949                     );
1950                 }
1951     # > 009, deal with subfields
1952             } else {
1953                 while(defined $params->[$j] && $params->[$j] =~ /_code_/){ # browse all it's subfield
1954                     my $inner_param = $params->[$j];
1955                     if ($newfield){
1956                         if($cgi->param($params->[$j+1]) ne ''){  # only if there is a value (code => value)
1957                             $newfield->add_subfields(
1958                                 $cgi->param($inner_param) => $cgi->param($params->[$j+1])
1959                             );
1960                         }
1961                     } else {
1962                         if ( $cgi->param($params->[$j+1]) ne '' ) { # creating only if there is a value (code => value)
1963                             $newfield = MARC::Field->new(
1964                                 $tag,
1965                                 $ind1,
1966                                 $ind2,
1967                                 $cgi->param($inner_param) => $cgi->param($params->[$j+1]),
1968                             );
1969                         }
1970                     }
1971                     $j+=2;
1972                 }
1973             }
1974             push @fields,$newfield if($newfield);
1975         }
1976         $i++;
1977     }
1978     
1979     $record->append_fields(@fields);
1980     return $record;
1981 }
1982
1983 # cache inverted MARC field map
1984 our $inverted_field_map;
1985
1986 =head2 TransformMarcToKoha
1987
1988 =over 4
1989
1990     $result = TransformMarcToKoha( $dbh, $record, $frameworkcode )
1991
1992 =back
1993
1994 Extract data from a MARC bib record into a hashref representing
1995 Koha biblio, biblioitems, and items fields. 
1996
1997 =cut
1998 sub TransformMarcToKoha {
1999     my ( $dbh, $record, $frameworkcode, $limit_table ) = @_;
2000
2001     my $result;
2002     $limit_table=$limit_table||0;
2003     $frameworkcode = '' unless defined $frameworkcode;
2004     
2005     unless (defined $inverted_field_map) {
2006         $inverted_field_map = _get_inverted_marc_field_map();
2007     }
2008
2009     my %tables = ();
2010     if ( defined $limit_table && $limit_table eq 'items') {
2011         $tables{'items'} = 1;
2012     } else {
2013         $tables{'items'} = 1;
2014         $tables{'biblio'} = 1;
2015         $tables{'biblioitems'} = 1;
2016     }
2017
2018     # traverse through record
2019     MARCFIELD: foreach my $field ($record->fields()) {
2020         my $tag = $field->tag();
2021         next MARCFIELD unless exists $inverted_field_map->{$frameworkcode}->{$tag};
2022         if ($field->is_control_field()) {
2023             my $kohafields = $inverted_field_map->{$frameworkcode}->{$tag}->{list};
2024             ENTRY: foreach my $entry (@{ $kohafields }) {
2025                 my ($subfield, $table, $column) = @{ $entry };
2026                 next ENTRY unless exists $tables{$table};
2027                 my $key = _disambiguate($table, $column);
2028                 if ($result->{$key}) {
2029                     unless (($key eq "biblionumber" or $key eq "biblioitemnumber") and ($field->data() eq "")) {
2030                         $result->{$key} .= " | " . $field->data();
2031                     }
2032                 } else {
2033                     $result->{$key} = $field->data();
2034                 }
2035             }
2036         } else {
2037             # deal with subfields
2038             MARCSUBFIELD: foreach my $sf ($field->subfields()) {
2039                 my $code = $sf->[0];
2040                 next MARCSUBFIELD unless exists $inverted_field_map->{$frameworkcode}->{$tag}->{sfs}->{$code};
2041                 my $value = $sf->[1];
2042                 SFENTRY: foreach my $entry (@{ $inverted_field_map->{$frameworkcode}->{$tag}->{sfs}->{$code} }) {
2043                     my ($table, $column) = @{ $entry };
2044                     next SFENTRY unless exists $tables{$table};
2045                     my $key = _disambiguate($table, $column);
2046                     if ($result->{$key}) {
2047                         unless (($key eq "biblionumber" or $key eq "biblioitemnumber") and ($value eq "")) {
2048                             $result->{$key} .= " | " . $value;
2049                         }
2050                     } else {
2051                         $result->{$key} = $value;
2052                     }
2053                 }
2054             }
2055         }
2056     }
2057
2058     # modify copyrightdate to keep only the 1st year found
2059     if (exists $result->{'copyrightdate'}) {
2060         my $temp = $result->{'copyrightdate'};
2061         $temp =~ m/c(\d\d\d\d)/;
2062         if ( $temp =~ m/c(\d\d\d\d)/ and $1 > 0 ) { # search cYYYY first
2063             $result->{'copyrightdate'} = $1;
2064         }
2065         else {                      # if no cYYYY, get the 1st date.
2066             $temp =~ m/(\d\d\d\d)/;
2067             $result->{'copyrightdate'} = $1;
2068         }
2069     }
2070
2071     # modify publicationyear to keep only the 1st year found
2072     if (exists $result->{'publicationyear'}) {
2073         my $temp = $result->{'publicationyear'};
2074         if ( $temp =~ m/c(\d\d\d\d)/ and $1 > 0 ) { # search cYYYY first
2075             $result->{'publicationyear'} = $1;
2076         }
2077         else {                      # if no cYYYY, get the 1st date.
2078             $temp =~ m/(\d\d\d\d)/;
2079             $result->{'publicationyear'} = $1;
2080         }
2081     }
2082
2083     return $result;
2084 }
2085
2086 sub _get_inverted_marc_field_map {
2087     my $field_map = {};
2088     my $relations = C4::Context->marcfromkohafield;
2089
2090     foreach my $frameworkcode (keys %{ $relations }) {
2091         foreach my $kohafield (keys %{ $relations->{$frameworkcode} }) {
2092             next unless @{ $relations->{$frameworkcode}->{$kohafield} }; # not all columns are mapped to MARC tag & subfield
2093             my $tag = $relations->{$frameworkcode}->{$kohafield}->[0];
2094             my $subfield = $relations->{$frameworkcode}->{$kohafield}->[1];
2095             my ($table, $column) = split /[.]/, $kohafield, 2;
2096             push @{ $field_map->{$frameworkcode}->{$tag}->{list} }, [ $subfield, $table, $column ];
2097             push @{ $field_map->{$frameworkcode}->{$tag}->{sfs}->{$subfield} }, [ $table, $column ];
2098         }
2099     }
2100     return $field_map;
2101 }
2102
2103 =head2 _disambiguate
2104
2105 =over 4
2106
2107 $newkey = _disambiguate($table, $field);
2108
2109 This is a temporary hack to distinguish between the
2110 following sets of columns when using TransformMarcToKoha.
2111
2112 items.cn_source & biblioitems.cn_source
2113 items.cn_sort & biblioitems.cn_sort
2114
2115 Columns that are currently NOT distinguished (FIXME
2116 due to lack of time to fully test) are:
2117
2118 biblio.notes and biblioitems.notes
2119 biblionumber
2120 timestamp
2121 biblioitemnumber
2122
2123 FIXME - this is necessary because prefixing each column
2124 name with the table name would require changing lots
2125 of code and templates, and exposing more of the DB
2126 structure than is good to the UI templates, particularly
2127 since biblio and bibloitems may well merge in a future
2128 version.  In the future, it would also be good to 
2129 separate DB access and UI presentation field names
2130 more.
2131
2132 =back
2133
2134 =cut
2135
2136 sub CountItemsIssued {
2137   my ( $biblionumber )  = @_;
2138   my $dbh = C4::Context->dbh;
2139   my $sth = $dbh->prepare('SELECT COUNT(*) as issuedCount FROM items, issues WHERE items.itemnumber = issues.itemnumber AND items.biblionumber = ?');
2140   $sth->execute( $biblionumber );
2141   my $row = $sth->fetchrow_hashref();
2142   return $row->{'issuedCount'};
2143 }
2144
2145 sub _disambiguate {
2146     my ($table, $column) = @_;
2147     if ($column eq "cn_sort" or $column eq "cn_source") {
2148         return $table . '.' . $column;
2149     } else {
2150         return $column;
2151     }
2152
2153 }
2154
2155 =head2 get_koha_field_from_marc
2156
2157 =over 4
2158
2159 $result->{_disambiguate($table, $field)} = get_koha_field_from_marc($table,$field,$record,$frameworkcode);
2160
2161 Internal function to map data from the MARC record to a specific non-MARC field.
2162 FIXME: this is meant to replace TransformMarcToKohaOneField after more testing.
2163
2164 =back
2165
2166 =cut
2167
2168 sub get_koha_field_from_marc {
2169     my ($koha_table,$koha_column,$record,$frameworkcode) = @_;
2170     my ( $tagfield, $subfield ) = GetMarcFromKohaField( $koha_table.'.'.$koha_column, $frameworkcode );  
2171     my $kohafield;
2172     foreach my $field ( $record->field($tagfield) ) {
2173         if ( $field->tag() < 10 ) {
2174             if ( $kohafield ) {
2175                 $kohafield .= " | " . $field->data();
2176             }
2177             else {
2178                 $kohafield = $field->data();
2179             }
2180         }
2181         else {
2182             if ( $field->subfields ) {
2183                 my @subfields = $field->subfields();
2184                 foreach my $subfieldcount ( 0 .. $#subfields ) {
2185                     if ( $subfields[$subfieldcount][0] eq $subfield ) {
2186                         if ( $kohafield ) {
2187                             $kohafield .=
2188                               " | " . $subfields[$subfieldcount][1];
2189                         }
2190                         else {
2191                             $kohafield =
2192                               $subfields[$subfieldcount][1];
2193                         }
2194                     }
2195                 }
2196             }
2197         }
2198     }
2199     return $kohafield;
2200
2201
2202
2203 =head2 TransformMarcToKohaOneField
2204
2205 =over 4
2206
2207 $result = TransformMarcToKohaOneField( $kohatable, $kohafield, $record, $result, $frameworkcode )
2208
2209 =back
2210
2211 =cut
2212
2213 sub TransformMarcToKohaOneField {
2214
2215     # FIXME ? if a field has a repeatable subfield that is used in old-db,
2216     # only the 1st will be retrieved...
2217     my ( $kohatable, $kohafield, $record, $result, $frameworkcode ) = @_;
2218     my $res = "";
2219     my ( $tagfield, $subfield ) =
2220       GetMarcFromKohaField( $kohatable . "." . $kohafield,
2221         $frameworkcode );
2222     foreach my $field ( $record->field($tagfield) ) {
2223         if ( $field->tag() < 10 ) {
2224             if ( $result->{$kohafield} ) {
2225                 $result->{$kohafield} .= " | " . $field->data();
2226             }
2227             else {
2228                 $result->{$kohafield} = $field->data();
2229             }
2230         }
2231         else {
2232             if ( $field->subfields ) {
2233                 my @subfields = $field->subfields();
2234                 foreach my $subfieldcount ( 0 .. $#subfields ) {
2235                     if ( $subfields[$subfieldcount][0] eq $subfield ) {
2236                         if ( $result->{$kohafield} ) {
2237                             $result->{$kohafield} .=
2238                               " | " . $subfields[$subfieldcount][1];
2239                         }
2240                         else {
2241                             $result->{$kohafield} =
2242                               $subfields[$subfieldcount][1];
2243                         }
2244                     }
2245                 }
2246             }
2247         }
2248     }
2249     return $result;
2250 }
2251
2252 =head1  OTHER FUNCTIONS
2253
2254
2255 =head2 PrepareItemrecordDisplay
2256
2257 =over 4
2258
2259 PrepareItemrecordDisplay($itemrecord,$bibnum,$itemumber);
2260
2261 Returns a hash with all the fields for Display a given item data in a template
2262
2263 =back
2264
2265 =cut
2266
2267 sub PrepareItemrecordDisplay {
2268
2269     my ( $bibnum, $itemnum, $defaultvalues ) = @_;
2270
2271     my $dbh = C4::Context->dbh;
2272         my $today_iso = C4::Dates->today('iso');
2273     my $frameworkcode = &GetFrameworkCode( $bibnum );
2274     my ( $itemtagfield, $itemtagsubfield ) =
2275       &GetMarcFromKohaField( "items.itemnumber", $frameworkcode );
2276     my $tagslib = &GetMarcStructure( 1, $frameworkcode );
2277     my $itemrecord = C4::Items::GetMarcItem( $bibnum, $itemnum) if ($itemnum);
2278     my @loop_data;
2279     my $authorised_values_sth =
2280       $dbh->prepare(
2281 "SELECT authorised_value,lib FROM authorised_values WHERE category=? ORDER BY lib"
2282       );
2283     foreach my $tag ( sort keys %{$tagslib} ) {
2284         my $previous_tag = '';
2285         if ( $tag ne '' ) {
2286             # loop through each subfield
2287             my $cntsubf;
2288             foreach my $subfield ( sort keys %{ $tagslib->{$tag} } ) {
2289                 next if ( subfield_is_koha_internal_p($subfield) );
2290                 next if ( $tagslib->{$tag}->{$subfield}->{'tab'} ne "10" );
2291                 my %subfield_data;
2292                 $subfield_data{tag}           = $tag;
2293                 $subfield_data{subfield}      = $subfield;
2294                 $subfield_data{countsubfield} = $cntsubf++;
2295                 $subfield_data{kohafield}     =
2296                   $tagslib->{$tag}->{$subfield}->{'kohafield'};
2297
2298          #        $subfield_data{marc_lib}=$tagslib->{$tag}->{$subfield}->{lib};
2299                 $subfield_data{marc_lib} = $tagslib->{$tag}->{$subfield}->{lib};
2300                 $subfield_data{mandatory} =
2301                   $tagslib->{$tag}->{$subfield}->{mandatory};
2302                 $subfield_data{repeatable} =
2303                   $tagslib->{$tag}->{$subfield}->{repeatable};
2304                 $subfield_data{hidden} = "display:none"
2305                   if $tagslib->{$tag}->{$subfield}->{hidden};
2306                   my ( $x, $value );
2307                   if ($itemrecord) {
2308                       ( $x, $value ) = _find_value( $tag, $subfield, $itemrecord );
2309                   }
2310                                   unless ($value) {
2311                                                 $value   = $tagslib->{$tag}->{$subfield}->{defaultvalue};
2312                                                 $value ||= $defaultvalues->{$tagslib->{$tag}->{$subfield}->{'kohafield'}};
2313                                                 # get today date & replace YYYY, MM, DD if provided in the default value
2314                                                 my ( $year, $month, $day ) = split ',', $today_iso;     # FIXME: iso dates don't have commas!
2315                                                 $value =~ s/YYYY/$year/g;
2316                                                 $value =~ s/MM/$month/g;
2317                                                 $value =~ s/DD/$day/g;
2318                                   }
2319                   $value =~ s/"/&quot;/g;
2320
2321                 # search for itemcallnumber if applicable
2322                 if ( $tagslib->{$tag}->{$subfield}->{kohafield} eq
2323                     'items.itemcallnumber'
2324                     && C4::Context->preference('itemcallnumber') )
2325                 {
2326                     my $CNtag =
2327                       substr( C4::Context->preference('itemcallnumber'), 0, 3 );
2328                     my $CNsubfield =
2329                       substr( C4::Context->preference('itemcallnumber'), 3, 1 );
2330                     my $temp = $itemrecord->field($CNtag) if ($itemrecord);
2331                     if ($temp) {
2332                         $value = $temp->subfield($CNsubfield);
2333                     }
2334                 }
2335                 if ( $tagslib->{$tag}->{$subfield}->{kohafield} eq
2336                     'items.itemcallnumber'
2337                     && $defaultvalues->{'callnumber'} )
2338                 {
2339                     my $temp = $itemrecord->field($subfield) if ($itemrecord);
2340                     unless ($temp) {
2341                         $value = $defaultvalues->{'callnumber'};
2342                     }
2343                 }
2344                 if ( ($tagslib->{$tag}->{$subfield}->{kohafield} eq
2345                     'items.holdingbranch' ||
2346                     $tagslib->{$tag}->{$subfield}->{kohafield} eq
2347                     'items.homebranch')          
2348                     && $defaultvalues->{'branchcode'} )
2349                 {
2350                     my $temp = $itemrecord->field($subfield) if ($itemrecord);
2351                     unless ($temp) {
2352                         $value = $defaultvalues->{branchcode};
2353                     }
2354                 }
2355                 if ( $tagslib->{$tag}->{$subfield}->{authorised_value} ) {
2356                     my @authorised_values;
2357                     my %authorised_lib;
2358
2359                     # builds list, depending on authorised value...
2360                     #---- branch
2361                     if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq
2362                         "branches" )
2363                     {
2364                         if ( ( C4::Context->preference("IndependantBranches") )
2365                             && ( C4::Context->userenv->{flags} != 1 ) )
2366                         {
2367                             my $sth =
2368                               $dbh->prepare(
2369                                 "SELECT branchcode,branchname FROM branches WHERE branchcode = ? ORDER BY branchname"
2370                               );
2371                             $sth->execute( C4::Context->userenv->{branch} );
2372                             push @authorised_values, ""
2373                               unless (
2374                                 $tagslib->{$tag}->{$subfield}->{mandatory} );
2375                             while ( my ( $branchcode, $branchname ) =
2376                                 $sth->fetchrow_array )
2377                             {
2378                                 push @authorised_values, $branchcode;
2379                                 $authorised_lib{$branchcode} = $branchname;
2380                             }
2381                         }
2382                         else {
2383                             my $sth =
2384                               $dbh->prepare(
2385                                 "SELECT branchcode,branchname FROM branches ORDER BY branchname"
2386                               );
2387                             $sth->execute;
2388                             push @authorised_values, ""
2389                               unless (
2390                                 $tagslib->{$tag}->{$subfield}->{mandatory} );
2391                             while ( my ( $branchcode, $branchname ) =
2392                                 $sth->fetchrow_array )
2393                             {
2394                                 push @authorised_values, $branchcode;
2395                                 $authorised_lib{$branchcode} = $branchname;
2396                             }
2397                         }
2398
2399                         #----- itemtypes
2400                     }
2401                     elsif ( $tagslib->{$tag}->{$subfield}->{authorised_value} eq
2402                         "itemtypes" )
2403                     {
2404                         my $sth =
2405                           $dbh->prepare(
2406                             "SELECT itemtype,description FROM itemtypes ORDER BY description"
2407                           );
2408                         $sth->execute;
2409                         push @authorised_values, ""
2410                           unless ( $tagslib->{$tag}->{$subfield}->{mandatory} );
2411                         while ( my ( $itemtype, $description ) =
2412                             $sth->fetchrow_array )
2413                         {
2414                             push @authorised_values, $itemtype;
2415                             $authorised_lib{$itemtype} = $description;
2416                         }
2417
2418                         #---- "true" authorised value
2419                     }
2420                     else {
2421                         $authorised_values_sth->execute(
2422                             $tagslib->{$tag}->{$subfield}->{authorised_value} );
2423                         push @authorised_values, ""
2424                           unless ( $tagslib->{$tag}->{$subfield}->{mandatory} );
2425                         while ( my ( $value, $lib ) =
2426                             $authorised_values_sth->fetchrow_array )
2427                         {
2428                             push @authorised_values, $value;
2429                             $authorised_lib{$value} = $lib;
2430                         }
2431                     }
2432                     $subfield_data{marc_value} = CGI::scrolling_list(
2433                         -name     => 'field_value',
2434                         -values   => \@authorised_values,
2435                         -default  => "$value",
2436                         -labels   => \%authorised_lib,
2437                         -size     => 1,
2438                         -tabindex => '',
2439                         -multiple => 0,
2440                     );
2441                 }
2442                 else {
2443                     $subfield_data{marc_value} =
2444 "<input type=\"text\" name=\"field_value\" value=\"$value\" size=\"50\" maxlength=\"255\" />";
2445                 }
2446                 push( @loop_data, \%subfield_data );
2447             }
2448         }
2449     }
2450     my $itemnumber = $itemrecord->subfield( $itemtagfield, $itemtagsubfield )
2451       if ( $itemrecord && $itemrecord->field($itemtagfield) );
2452     return {
2453         'itemtagfield'    => $itemtagfield,
2454         'itemtagsubfield' => $itemtagsubfield,
2455         'itemnumber'      => $itemnumber,
2456         'iteminformation' => \@loop_data
2457     };
2458 }
2459 #"
2460
2461 #
2462 # true ModZebra commented until indexdata fixes zebraDB crashes (it seems they occur on multiple updates
2463 # at the same time
2464 # replaced by a zebraqueue table, that is filled with ModZebra to run.
2465 # the table is emptied by misc/cronjobs/zebraqueue_start.pl script
2466 # =head2 ModZebrafiles
2467
2468 # &ModZebrafiles( $dbh, $biblionumber, $record, $folder, $server );
2469
2470 # =cut
2471
2472 # sub ModZebrafiles {
2473
2474 #     my ( $dbh, $biblionumber, $record, $folder, $server ) = @_;
2475
2476 #     my $op;
2477 #     my $zebradir =
2478 #       C4::Context->zebraconfig($server)->{directory} . "/" . $folder . "/";
2479 #     unless ( opendir( DIR, "$zebradir" ) ) {
2480 #         warn "$zebradir not found";
2481 #         return;
2482 #     }
2483 #     closedir DIR;
2484 #     my $filename = $zebradir . $biblionumber;
2485
2486 #     if ($record) {
2487 #         open( OUTPUT, ">", $filename . ".xml" );
2488 #         print OUTPUT $record;
2489 #         close OUTPUT;
2490 #     }
2491 # }
2492
2493 =head2 ModZebra
2494
2495 =over 4
2496
2497 ModZebra( $biblionumber, $op, $server, $oldRecord, $newRecord );
2498
2499     $biblionumber is the biblionumber we want to index
2500     $op is specialUpdate or delete, and is used to know what we want to do
2501     $server is the server that we want to update
2502     $oldRecord is the MARC::Record containing the previous version of the record.  This is used only when 
2503       NoZebra=1, as NoZebra indexing needs to know the previous version of a record in order to
2504       do an update.
2505     $newRecord is the MARC::Record containing the new record. It is usefull only when NoZebra=1, and is used to know what to add to the nozebra database. (the record in mySQL being, if it exist, the previous record, the one just before the modif. We need both : the previous and the new one.
2506     
2507 =back
2508
2509 =cut
2510
2511 sub ModZebra {
2512 ###Accepts a $server variable thus we can use it for biblios authorities or other zebra dbs
2513     my ( $biblionumber, $op, $server, $oldRecord, $newRecord ) = @_;
2514     my $dbh=C4::Context->dbh;
2515
2516     # true ModZebra commented until indexdata fixes zebraDB crashes (it seems they occur on multiple updates
2517     # at the same time
2518     # replaced by a zebraqueue table, that is filled with ModZebra to run.
2519     # the table is emptied by misc/cronjobs/zebraqueue_start.pl script
2520
2521     if (C4::Context->preference("NoZebra")) {
2522         # lock the nozebra table : we will read index lines, update them in Perl process
2523         # and write everything in 1 transaction.
2524         # lock the table to avoid someone else overwriting what we are doing
2525         $dbh->do('LOCK TABLES nozebra WRITE,biblio WRITE,biblioitems WRITE, systempreferences WRITE, auth_types WRITE, auth_header WRITE, auth_subfield_structure READ');
2526         my %result; # the result hash that will be built by deletion / add, and written on mySQL at the end, to improve speed
2527         if ($op eq 'specialUpdate') {
2528             # OK, we have to add or update the record
2529             # 1st delete (virtually, in indexes), if record actually exists
2530             if ($oldRecord) { 
2531                 %result = _DelBiblioNoZebra($biblionumber,$oldRecord,$server);
2532             }
2533             # ... add the record
2534             %result=_AddBiblioNoZebra($biblionumber,$newRecord, $server, %result);
2535         } else {
2536             # it's a deletion, delete the record...
2537             # warn "DELETE the record $biblionumber on $server".$record->as_formatted;
2538             %result=_DelBiblioNoZebra($biblionumber,$oldRecord,$server);
2539         }
2540         # ok, now update the database...
2541         my $sth = $dbh->prepare("UPDATE nozebra SET biblionumbers=? WHERE server=? AND indexname=? AND value=?");
2542         foreach my $key (keys %result) {
2543             foreach my $index (keys %{$result{$key}}) {
2544                 $sth->execute($result{$key}->{$index}, $server, $key, $index);
2545             }
2546         }
2547         $dbh->do('UNLOCK TABLES');
2548     } else {
2549         #
2550         # we use zebra, just fill zebraqueue table
2551         #
2552         my $check_sql = "SELECT COUNT(*) FROM zebraqueue 
2553                          WHERE server = ?
2554                          AND   biblio_auth_number = ?
2555                          AND   operation = ?
2556                          AND   done = 0";
2557         my $check_sth = $dbh->prepare_cached($check_sql);
2558         $check_sth->execute($server, $biblionumber, $op);
2559         my ($count) = $check_sth->fetchrow_array;
2560         $check_sth->finish();
2561         if ($count == 0) {
2562             my $sth=$dbh->prepare("INSERT INTO zebraqueue  (biblio_auth_number,server,operation) VALUES(?,?,?)");
2563             $sth->execute($biblionumber,$server,$op);
2564             $sth->finish;
2565         }
2566     }
2567 }
2568
2569 =head2 GetNoZebraIndexes
2570
2571     %indexes = GetNoZebraIndexes;
2572     
2573     return the data from NoZebraIndexes syspref.
2574
2575 =cut
2576
2577 sub GetNoZebraIndexes {
2578     my $no_zebra_indexes = C4::Context->preference('NoZebraIndexes');
2579     my %indexes;
2580     INDEX: foreach my $line (split /['"],[\n\r]*/,$no_zebra_indexes) {
2581         $line =~ /(.*)=>(.*)/;
2582         my $index = $1; # initial ' or " is removed afterwards
2583         my $fields = $2;
2584         $index =~ s/'|"|\s//g;
2585         $fields =~ s/'|"|\s//g;
2586         $indexes{$index}=$fields;
2587     }
2588     return %indexes;
2589 }
2590
2591 =head1 INTERNAL FUNCTIONS
2592
2593 =head2 _DelBiblioNoZebra($biblionumber,$record,$server);
2594
2595     function to delete a biblio in NoZebra indexes
2596     This function does NOT delete anything in database : it reads all the indexes entries
2597     that have to be deleted & delete them in the hash
2598     The SQL part is done either :
2599     - after the Add if we are modifying a biblio (delete + add again)
2600     - immediatly after this sub if we are doing a true deletion.
2601     $server can be 'biblioserver' or 'authorityserver' : it indexes biblios or authorities (in the same table, $server being part of the table itself
2602
2603 =cut
2604
2605
2606 sub _DelBiblioNoZebra {
2607     my ($biblionumber, $record, $server)=@_;
2608     
2609     # Get the indexes
2610     my $dbh = C4::Context->dbh;
2611     # Get the indexes
2612     my %index;
2613     my $title;
2614     if ($server eq 'biblioserver') {
2615         %index=GetNoZebraIndexes;
2616         # get title of the record (to store the 10 first letters with the index)
2617         my ($titletag,$titlesubfield) = GetMarcFromKohaField('biblio.title','');
2618         $title = lc($record->subfield($titletag,$titlesubfield));
2619     } else {
2620         # for authorities, the "title" is the $a mainentry
2621         my ($auth_type_tag, $auth_type_sf) = C4::AuthoritiesMarc::get_auth_type_location();
2622         my $authref = C4::AuthoritiesMarc::GetAuthType($record->subfield($auth_type_tag, $auth_type_sf));
2623         warn "ERROR : authtype undefined for ".$record->as_formatted unless $authref;
2624         $title = $record->subfield($authref->{auth_tag_to_report},'a');
2625         $index{'mainmainentry'}= $authref->{'auth_tag_to_report'}.'a';
2626         $index{'mainentry'}    = $authref->{'auth_tag_to_report'}.'*';
2627         $index{'auth_type'}    = "${auth_type_tag}${auth_type_sf}";
2628     }
2629     
2630     my %result;
2631     # remove blancks comma (that could cause problem when decoding the string for CQL retrieval) and regexp specific values
2632     $title =~ s/ |,|;|\[|\]|\(|\)|\*|-|'|=//g;
2633     # limit to 10 char, should be enough, and limit the DB size
2634     $title = substr($title,0,10);
2635     #parse each field
2636     my $sth2=$dbh->prepare('SELECT biblionumbers FROM nozebra WHERE server=? AND indexname=? AND value=?');
2637     foreach my $field ($record->fields()) {
2638         #parse each subfield
2639         next if $field->tag <10;
2640         foreach my $subfield ($field->subfields()) {
2641             my $tag = $field->tag();
2642             my $subfieldcode = $subfield->[0];
2643             my $indexed=0;
2644             # check each index to see if the subfield is stored somewhere
2645             # otherwise, store it in __RAW__ index
2646             foreach my $key (keys %index) {
2647 #                 warn "examining $key index : ".$index{$key}." for $tag $subfieldcode";
2648                 if ($index{$key} =~ /$tag\*/ or $index{$key} =~ /$tag$subfieldcode/) {
2649                     $indexed=1;
2650                     my $line= lc $subfield->[1];
2651                     # remove meaningless value in the field...
2652                     $line =~ s/-|\.|\?|,|;|!|'|\(|\)|\[|\]|{|}|"|<|>|&|\+|\*|\/|=|:/ /g;
2653                     # ... and split in words
2654                     foreach (split / /,$line) {
2655                         next unless $_; # skip  empty values (multiple spaces)
2656                         # if the entry is already here, do nothing, the biblionumber has already be removed
2657                         unless ( defined( $result{$key}->{$_} ) && ( $result{$key}->{$_} =~ /$biblionumber,$title\-(\d);/) ) {
2658                             # get the index value if it exist in the nozebra table and remove the entry, otherwise, do nothing
2659                             $sth2->execute($server,$key,$_);
2660                             my $existing_biblionumbers = $sth2->fetchrow;
2661                             # it exists
2662                             if ($existing_biblionumbers) {
2663 #                                 warn " existing for $key $_: $existing_biblionumbers";
2664                                 $result{$key}->{$_} =$existing_biblionumbers;
2665                                 $result{$key}->{$_} =~ s/$biblionumber,$title\-(\d);//;
2666                             }
2667                         }
2668                     }
2669                 }
2670             }
2671             # the subfield is not indexed, store it in __RAW__ index anyway
2672             unless ($indexed) {
2673                 my $line= lc $subfield->[1];
2674                 $line =~ s/-|\.|\?|,|;|!|'|\(|\)|\[|\]|{|}|"|<|>|&|\+|\*|\/|=|:/ /g;
2675                 # ... and split in words
2676                 foreach (split / /,$line) {
2677                     next unless $_; # skip  empty values (multiple spaces)
2678                     # if the entry is already here, do nothing, the biblionumber has already be removed
2679                     unless ($result{'__RAW__'}->{$_} =~ /$biblionumber,$title\-(\d);/) {
2680                         # get the index value if it exist in the nozebra table and remove the entry, otherwise, do nothing
2681                         $sth2->execute($server,'__RAW__',$_);
2682                         my $existing_biblionumbers = $sth2->fetchrow;
2683                         # it exists
2684                         if ($existing_biblionumbers) {
2685                             $result{'__RAW__'}->{$_} =$existing_biblionumbers;
2686                             $result{'__RAW__'}->{$_} =~ s/$biblionumber,$title\-(\d);//;
2687                         }
2688                     }
2689                 }
2690             }
2691         }
2692     }
2693     return %result;
2694 }
2695
2696 =head2 _AddBiblioNoZebra($biblionumber, $record, $server, %result);
2697
2698     function to add a biblio in NoZebra indexes
2699
2700 =cut
2701
2702 sub _AddBiblioNoZebra {
2703     my ($biblionumber, $record, $server, %result)=@_;
2704     my $dbh = C4::Context->dbh;
2705     # Get the indexes
2706     my %index;
2707     my $title;
2708     if ($server eq 'biblioserver') {
2709         %index=GetNoZebraIndexes;
2710         # get title of the record (to store the 10 first letters with the index)
2711         my ($titletag,$titlesubfield) = GetMarcFromKohaField('biblio.title','');
2712         $title = lc($record->subfield($titletag,$titlesubfield));
2713     } else {
2714         # warn "server : $server";
2715         # for authorities, the "title" is the $a mainentry
2716         my ($auth_type_tag, $auth_type_sf) = C4::AuthoritiesMarc::get_auth_type_location();
2717         my $authref = C4::AuthoritiesMarc::GetAuthType($record->subfield($auth_type_tag, $auth_type_sf));
2718         warn "ERROR : authtype undefined for ".$record->as_formatted unless $authref;
2719         $title = $record->subfield($authref->{auth_tag_to_report},'a');
2720         $index{'mainmainentry'} = $authref->{auth_tag_to_report}.'a';
2721         $index{'mainentry'}     = $authref->{auth_tag_to_report}.'*';
2722         $index{'auth_type'}    = "${auth_type_tag}${auth_type_sf}";
2723     }
2724
2725     # remove blancks comma (that could cause problem when decoding the string for CQL retrieval) and regexp specific values
2726     $title =~ s/ |\.|,|;|\[|\]|\(|\)|\*|-|'|:|=|\r|\n//g;
2727     # limit to 10 char, should be enough, and limit the DB size
2728     $title = substr($title,0,10);
2729     #parse each field
2730     my $sth2=$dbh->prepare('SELECT biblionumbers FROM nozebra WHERE server=? AND indexname=? AND value=?');
2731     foreach my $field ($record->fields()) {
2732         #parse each subfield
2733         ###FIXME: impossible to index a 001-009 value with NoZebra
2734         next if $field->tag <10;
2735         foreach my $subfield ($field->subfields()) {
2736             my $tag = $field->tag();
2737             my $subfieldcode = $subfield->[0];
2738             my $indexed=0;
2739 #             warn "INDEXING :".$subfield->[1];
2740             # check each index to see if the subfield is stored somewhere
2741             # otherwise, store it in __RAW__ index
2742             foreach my $key (keys %index) {
2743 #                 warn "examining $key index : ".$index{$key}." for $tag $subfieldcode";
2744                 if ($index{$key} =~ /$tag\*/ or $index{$key} =~ /$tag$subfieldcode/) {
2745                     $indexed=1;
2746                     my $line= lc $subfield->[1];
2747                     # remove meaningless value in the field...
2748                     $line =~ s/-|\.|\?|,|;|!|'|\(|\)|\[|\]|{|}|"|<|>|&|\+|\*|\/|=|:|\r|\n/ /g;
2749                     # ... and split in words
2750                     foreach (split / /,$line) {
2751                         next unless $_; # skip  empty values (multiple spaces)
2752                         # if the entry is already here, improve weight
2753 #                         warn "managing $_";
2754                         if ( exists $result{$key}->{$_} && $result{$key}->{"$_"} =~ /$biblionumber,\Q$title\E\-(\d+);/) {
2755                             my $weight = $1 + 1;
2756                             $result{$key}->{"$_"} =~ s/$biblionumber,\Q$title\E\-(\d+);//g;
2757                             $result{$key}->{"$_"} .= "$biblionumber,$title-$weight;";
2758                         } else {
2759                             # get the value if it exist in the nozebra table, otherwise, create it
2760                             $sth2->execute($server,$key,$_);
2761                             my $existing_biblionumbers = $sth2->fetchrow;
2762                             # it exists
2763                             if ($existing_biblionumbers) {
2764                                 $result{$key}->{"$_"} =$existing_biblionumbers;
2765                                 my $weight = defined $1 ? $1 + 1 : 1;
2766                                 $result{$key}->{"$_"} =~ s/$biblionumber,\Q$title\E\-(\d+);//g;
2767                                 $result{$key}->{"$_"} .= "$biblionumber,$title-$weight;";
2768                             # create a new ligne for this entry
2769                             } else {
2770 #                             warn "INSERT : $server / $key / $_";
2771                                 $dbh->do('INSERT INTO nozebra SET server='.$dbh->quote($server).', indexname='.$dbh->quote($key).',value='.$dbh->quote($_));
2772                                 $result{$key}->{"$_"}.="$biblionumber,$title-1;";
2773                             }
2774                         }
2775                     }
2776                 }
2777             }
2778             # the subfield is not indexed, store it in __RAW__ index anyway
2779             unless ($indexed) {
2780                 my $line= lc $subfield->[1];
2781                 $line =~ s/-|\.|\?|,|;|!|'|\(|\)|\[|\]|{|}|"|<|>|&|\+|\*|\/|=|:|\r|\n/ /g;
2782                 # ... and split in words
2783                 foreach (split / /,$line) {
2784                     next unless $_; # skip  empty values (multiple spaces)
2785                     # if the entry is already here, improve weight
2786                     my $tmpstr = $result{'__RAW__'}->{"$_"} || "";
2787                     if ($tmpstr =~ /$biblionumber,\Q$title\E\-(\d+);/) {
2788                         my $weight=$1+1;
2789                         $result{'__RAW__'}->{"$_"} =~ s/$biblionumber,\Q$title\E\-(\d+);//;
2790                         $result{'__RAW__'}->{"$_"} .= "$biblionumber,$title-$weight;";
2791                     } else {
2792                         # get the value if it exist in the nozebra table, otherwise, create it
2793                         $sth2->execute($server,'__RAW__',$_);
2794                         my $existing_biblionumbers = $sth2->fetchrow;
2795                         # it exists
2796                         if ($existing_biblionumbers) {
2797                             $result{'__RAW__'}->{"$_"} =$existing_biblionumbers;
2798                             my $weight = ($1 ? $1 : 0) + 1;
2799                             $result{'__RAW__'}->{"$_"} =~ s/$biblionumber,\Q$title\E\-(\d+);//;
2800                             $result{'__RAW__'}->{"$_"} .= "$biblionumber,$title-$weight;";
2801                         # create a new ligne for this entry
2802                         } else {
2803                             $dbh->do('INSERT INTO nozebra SET server='.$dbh->quote($server).',  indexname="__RAW__",value='.$dbh->quote($_));
2804                             $result{'__RAW__'}->{"$_"}.="$biblionumber,$title-1;";
2805                         }
2806                     }
2807                 }
2808             }
2809         }
2810     }
2811     return %result;
2812 }
2813
2814
2815 =head2 _find_value
2816
2817 =over 4
2818
2819 ($indicators, $value) = _find_value($tag, $subfield, $record,$encoding);
2820
2821 Find the given $subfield in the given $tag in the given
2822 MARC::Record $record.  If the subfield is found, returns
2823 the (indicators, value) pair; otherwise, (undef, undef) is
2824 returned.
2825
2826 PROPOSITION :
2827 Such a function is used in addbiblio AND additem and serial-edit and maybe could be used in Authorities.
2828 I suggest we export it from this module.
2829
2830 =back
2831
2832 =cut
2833
2834 sub _find_value {
2835     my ( $tagfield, $insubfield, $record, $encoding ) = @_;
2836     my @result;
2837     my $indicator;
2838     if ( $tagfield < 10 ) {
2839         if ( $record->field($tagfield) ) {
2840             push @result, $record->field($tagfield)->data();
2841         }
2842         else {
2843             push @result, "";
2844         }
2845     }
2846     else {
2847         foreach my $field ( $record->field($tagfield) ) {
2848             my @subfields = $field->subfields();
2849             foreach my $subfield (@subfields) {
2850                 if ( @$subfield[0] eq $insubfield ) {
2851                     push @result, @$subfield[1];
2852                     $indicator = $field->indicator(1) . $field->indicator(2);
2853                 }
2854             }
2855         }
2856     }
2857     return ( $indicator, @result );
2858 }
2859
2860 =head2 _koha_marc_update_bib_ids
2861
2862 =over 4
2863
2864 _koha_marc_update_bib_ids($record, $frameworkcode, $biblionumber, $biblioitemnumber);
2865
2866 Internal function to add or update biblionumber and biblioitemnumber to
2867 the MARC XML.
2868
2869 =back
2870
2871 =cut
2872
2873 sub _koha_marc_update_bib_ids {
2874     my ($record, $frameworkcode, $biblionumber, $biblioitemnumber) = @_;
2875
2876     # we must add bibnum and bibitemnum in MARC::Record...
2877     # we build the new field with biblionumber and biblioitemnumber
2878     # we drop the original field
2879     # we add the new builded field.
2880     my ($biblio_tag, $biblio_subfield ) = GetMarcFromKohaField("biblio.biblionumber",$frameworkcode);
2881     my ($biblioitem_tag, $biblioitem_subfield ) = GetMarcFromKohaField("biblioitems.biblioitemnumber",$frameworkcode);
2882
2883     if ($biblio_tag != $biblioitem_tag) {
2884         # biblionumber & biblioitemnumber are in different fields
2885
2886         # deal with biblionumber
2887         my ($new_field, $old_field);
2888         if ($biblio_tag < 10) {
2889             $new_field = MARC::Field->new( $biblio_tag, $biblionumber );
2890         } else {
2891             $new_field =
2892               MARC::Field->new( $biblio_tag, '', '',
2893                 "$biblio_subfield" => $biblionumber );
2894         }
2895
2896         # drop old field and create new one...
2897         $old_field = $record->field($biblio_tag);
2898         $record->delete_field($old_field) if $old_field;
2899         $record->append_fields($new_field);
2900
2901         # deal with biblioitemnumber
2902         if ($biblioitem_tag < 10) {
2903             $new_field = MARC::Field->new( $biblioitem_tag, $biblioitemnumber, );
2904         } else {
2905             $new_field =
2906               MARC::Field->new( $biblioitem_tag, '', '',
2907                 "$biblioitem_subfield" => $biblioitemnumber, );
2908         }
2909         # drop old field and create new one...
2910         $old_field = $record->field($biblioitem_tag);
2911         $record->delete_field($old_field) if $old_field;
2912         $record->insert_fields_ordered($new_field);
2913
2914     } else {
2915         # biblionumber & biblioitemnumber are in the same field (can't be <10 as fields <10 have only 1 value)
2916         my $new_field = MARC::Field->new(
2917             $biblio_tag, '', '',
2918             "$biblio_subfield" => $biblionumber,
2919             "$biblioitem_subfield" => $biblioitemnumber
2920         );
2921
2922         # drop old field and create new one...
2923         my $old_field = $record->field($biblio_tag);
2924         $record->delete_field($old_field) if $old_field;
2925         $record->insert_fields_ordered($new_field);
2926     }
2927 }
2928
2929 =head2 _koha_marc_update_biblioitem_cn_sort
2930
2931 =over 4
2932
2933 _koha_marc_update_biblioitem_cn_sort($marc, $biblioitem, $frameworkcode);
2934
2935 =back
2936
2937 Given a MARC bib record and the biblioitem hash, update the
2938 subfield that contains a copy of the value of biblioitems.cn_sort.
2939
2940 =cut
2941
2942 sub _koha_marc_update_biblioitem_cn_sort {
2943     my $marc = shift;
2944     my $biblioitem = shift;
2945     my $frameworkcode= shift;
2946
2947     my ($biblioitem_tag, $biblioitem_subfield ) = GetMarcFromKohaField("biblioitems.cn_sort",$frameworkcode);
2948     return unless $biblioitem_tag;
2949
2950     my ($cn_sort) = GetClassSort($biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
2951
2952     if (my $field = $marc->field($biblioitem_tag)) {
2953         $field->delete_subfield(code => $biblioitem_subfield);
2954         if ($cn_sort ne '') {
2955             $field->add_subfields($biblioitem_subfield => $cn_sort);
2956         }
2957     } else {
2958         # if we get here, no biblioitem tag is present in the MARC record, so
2959         # we'll create it if $cn_sort is not empty -- this would be
2960         # an odd combination of events, however
2961         if ($cn_sort) {
2962             $marc->insert_grouped_field(MARC::Field->new($biblioitem_tag, ' ', ' ', $biblioitem_subfield => $cn_sort));
2963         }
2964     }
2965 }
2966
2967 =head2 _koha_add_biblio
2968
2969 =over 4
2970
2971 my ($biblionumber,$error) = _koha_add_biblio($dbh,$biblioitem);
2972
2973 Internal function to add a biblio ($biblio is a hash with the values)
2974
2975 =back
2976
2977 =cut
2978
2979 sub _koha_add_biblio {
2980     my ( $dbh, $biblio, $frameworkcode ) = @_;
2981
2982     my $error;
2983
2984     # set the series flag
2985     my $serial = 0;
2986     if ( $biblio->{'seriestitle'} ) { $serial = 1 };
2987
2988     my $query = 
2989         "INSERT INTO biblio
2990         SET frameworkcode = ?,
2991             author = ?,
2992             title = ?,
2993             unititle =?,
2994             notes = ?,
2995             serial = ?,
2996             seriestitle = ?,
2997             copyrightdate = ?,
2998             datecreated=NOW(),
2999             abstract = ?
3000         ";
3001     my $sth = $dbh->prepare($query);
3002     $sth->execute(
3003         $frameworkcode,
3004         $biblio->{'author'},
3005         $biblio->{'title'},
3006         $biblio->{'unititle'},
3007         $biblio->{'notes'},
3008         $serial,
3009         $biblio->{'seriestitle'},
3010         $biblio->{'copyrightdate'},
3011         $biblio->{'abstract'}
3012     );
3013
3014     my $biblionumber = $dbh->{'mysql_insertid'};
3015     if ( $dbh->errstr ) {
3016         $error.="ERROR in _koha_add_biblio $query".$dbh->errstr;
3017         warn $error;
3018     }
3019
3020     $sth->finish();
3021     #warn "LEAVING _koha_add_biblio: ".$biblionumber."\n";
3022     return ($biblionumber,$error);
3023 }
3024
3025 =head2 _koha_modify_biblio
3026
3027 =over 4
3028
3029 my ($biblionumber,$error) == _koha_modify_biblio($dbh,$biblio,$frameworkcode);
3030
3031 Internal function for updating the biblio table
3032
3033 =back
3034
3035 =cut
3036
3037 sub _koha_modify_biblio {
3038     my ( $dbh, $biblio, $frameworkcode ) = @_;
3039     my $error;
3040
3041     my $query = "
3042         UPDATE biblio
3043         SET    frameworkcode = ?,
3044                author = ?,
3045                title = ?,
3046                unititle = ?,
3047                notes = ?,
3048                serial = ?,
3049                seriestitle = ?,
3050                copyrightdate = ?,
3051                abstract = ?
3052         WHERE  biblionumber = ?
3053         "
3054     ;
3055     my $sth = $dbh->prepare($query);
3056     
3057     $sth->execute(
3058         $frameworkcode,
3059         $biblio->{'author'},
3060         $biblio->{'title'},
3061         $biblio->{'unititle'},
3062         $biblio->{'notes'},
3063         $biblio->{'serial'},
3064         $biblio->{'seriestitle'},
3065         $biblio->{'copyrightdate'},
3066         $biblio->{'abstract'},
3067         $biblio->{'biblionumber'}
3068     ) if $biblio->{'biblionumber'};
3069
3070     if ( $dbh->errstr || !$biblio->{'biblionumber'} ) {
3071         $error.="ERROR in _koha_modify_biblio $query".$dbh->errstr;
3072         warn $error;
3073     }
3074     return ( $biblio->{'biblionumber'},$error );
3075 }
3076
3077 =head2 _koha_modify_biblioitem_nonmarc
3078
3079 =over 4
3080
3081 my ($biblioitemnumber,$error) = _koha_modify_biblioitem_nonmarc( $dbh, $biblioitem );
3082
3083 Updates biblioitems row except for marc and marcxml, which should be changed
3084 via ModBiblioMarc
3085
3086 =back
3087
3088 =cut
3089
3090 sub _koha_modify_biblioitem_nonmarc {
3091     my ( $dbh, $biblioitem ) = @_;
3092     my $error;
3093
3094     # re-calculate the cn_sort, it may have changed
3095     my ($cn_sort) = GetClassSort($biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
3096
3097     my $query = 
3098     "UPDATE biblioitems 
3099     SET biblionumber    = ?,
3100         volume          = ?,
3101         number          = ?,
3102         itemtype        = ?,
3103         isbn            = ?,
3104         issn            = ?,
3105         publicationyear = ?,
3106         publishercode   = ?,
3107         volumedate      = ?,
3108         volumedesc      = ?,
3109         collectiontitle = ?,
3110         collectionissn  = ?,
3111         collectionvolume= ?,
3112         editionstatement= ?,
3113         editionresponsibility = ?,
3114         illus           = ?,
3115         pages           = ?,
3116         notes           = ?,
3117         size            = ?,
3118         place           = ?,
3119         lccn            = ?,
3120         url             = ?,
3121         cn_source       = ?,
3122         cn_class        = ?,
3123         cn_item         = ?,
3124         cn_suffix       = ?,
3125         cn_sort         = ?,
3126         totalissues     = ?
3127         where biblioitemnumber = ?
3128         ";
3129     my $sth = $dbh->prepare($query);
3130     $sth->execute(
3131         $biblioitem->{'biblionumber'},
3132         $biblioitem->{'volume'},
3133         $biblioitem->{'number'},
3134         $biblioitem->{'itemtype'},
3135         $biblioitem->{'isbn'},
3136         $biblioitem->{'issn'},
3137         $biblioitem->{'publicationyear'},
3138         $biblioitem->{'publishercode'},
3139         $biblioitem->{'volumedate'},
3140         $biblioitem->{'volumedesc'},
3141         $biblioitem->{'collectiontitle'},
3142         $biblioitem->{'collectionissn'},
3143         $biblioitem->{'collectionvolume'},
3144         $biblioitem->{'editionstatement'},
3145         $biblioitem->{'editionresponsibility'},
3146         $biblioitem->{'illus'},
3147         $biblioitem->{'pages'},
3148         $biblioitem->{'bnotes'},
3149         $biblioitem->{'size'},
3150         $biblioitem->{'place'},
3151         $biblioitem->{'lccn'},
3152         $biblioitem->{'url'},
3153         $biblioitem->{'biblioitems.cn_source'},
3154         $biblioitem->{'cn_class'},
3155         $biblioitem->{'cn_item'},
3156         $biblioitem->{'cn_suffix'},
3157         $cn_sort,
3158         $biblioitem->{'totalissues'},
3159         $biblioitem->{'biblioitemnumber'}
3160     );
3161     if ( $dbh->errstr ) {
3162         $error.="ERROR in _koha_modify_biblioitem_nonmarc $query".$dbh->errstr;
3163         warn $error;
3164     }
3165     return ($biblioitem->{'biblioitemnumber'},$error);
3166 }
3167
3168 =head2 _koha_add_biblioitem
3169
3170 =over 4
3171
3172 my ($biblioitemnumber,$error) = _koha_add_biblioitem( $dbh, $biblioitem );
3173
3174 Internal function to add a biblioitem
3175
3176 =back
3177
3178 =cut
3179
3180 sub _koha_add_biblioitem {
3181     my ( $dbh, $biblioitem ) = @_;
3182     my $error;
3183
3184     my ($cn_sort) = GetClassSort($biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
3185     my $query =
3186     "INSERT INTO biblioitems SET
3187         biblionumber    = ?,
3188         volume          = ?,
3189         number          = ?,
3190         itemtype        = ?,
3191         isbn            = ?,
3192         issn            = ?,
3193         publicationyear = ?,
3194         publishercode   = ?,
3195         volumedate      = ?,
3196         volumedesc      = ?,
3197         collectiontitle = ?,
3198         collectionissn  = ?,
3199         collectionvolume= ?,
3200         editionstatement= ?,
3201         editionresponsibility = ?,
3202         illus           = ?,
3203         pages           = ?,
3204         notes           = ?,
3205         size            = ?,
3206         place           = ?,
3207         lccn            = ?,
3208         marc            = ?,
3209         url             = ?,
3210         cn_source       = ?,
3211         cn_class        = ?,
3212         cn_item         = ?,
3213         cn_suffix       = ?,
3214         cn_sort         = ?,
3215         totalissues     = ?
3216         ";
3217     my $sth = $dbh->prepare($query);
3218     $sth->execute(
3219         $biblioitem->{'biblionumber'},
3220         $biblioitem->{'volume'},
3221         $biblioitem->{'number'},
3222         $biblioitem->{'itemtype'},
3223         $biblioitem->{'isbn'},
3224         $biblioitem->{'issn'},
3225         $biblioitem->{'publicationyear'},
3226         $biblioitem->{'publishercode'},
3227         $biblioitem->{'volumedate'},
3228         $biblioitem->{'volumedesc'},
3229         $biblioitem->{'collectiontitle'},
3230         $biblioitem->{'collectionissn'},
3231         $biblioitem->{'collectionvolume'},
3232         $biblioitem->{'editionstatement'},
3233         $biblioitem->{'editionresponsibility'},
3234         $biblioitem->{'illus'},
3235         $biblioitem->{'pages'},
3236         $biblioitem->{'bnotes'},
3237         $biblioitem->{'size'},
3238         $biblioitem->{'place'},
3239         $biblioitem->{'lccn'},
3240         $biblioitem->{'marc'},
3241         $biblioitem->{'url'},
3242         $biblioitem->{'biblioitems.cn_source'},
3243         $biblioitem->{'cn_class'},
3244         $biblioitem->{'cn_item'},
3245         $biblioitem->{'cn_suffix'},
3246         $cn_sort,
3247         $biblioitem->{'totalissues'}
3248     );
3249     my $bibitemnum = $dbh->{'mysql_insertid'};
3250     if ( $dbh->errstr ) {
3251         $error.="ERROR in _koha_add_biblioitem $query".$dbh->errstr;
3252         warn $error;
3253     }
3254     $sth->finish();
3255     return ($bibitemnum,$error);
3256 }
3257
3258 =head2 _koha_delete_biblio
3259
3260 =over 4
3261
3262 $error = _koha_delete_biblio($dbh,$biblionumber);
3263
3264 Internal sub for deleting from biblio table -- also saves to deletedbiblio
3265
3266 C<$dbh> - the database handle
3267 C<$biblionumber> - the biblionumber of the biblio to be deleted
3268
3269 =back
3270
3271 =cut
3272
3273 # FIXME: add error handling
3274
3275 sub _koha_delete_biblio {
3276     my ( $dbh, $biblionumber ) = @_;
3277
3278     # get all the data for this biblio
3279     my $sth = $dbh->prepare("SELECT * FROM biblio WHERE biblionumber=?");
3280     $sth->execute($biblionumber);
3281
3282     if ( my $data = $sth->fetchrow_hashref ) {
3283
3284         # save the record in deletedbiblio
3285         # find the fields to save
3286         my $query = "INSERT INTO deletedbiblio SET ";
3287         my @bind  = ();
3288         foreach my $temp ( keys %$data ) {
3289             $query .= "$temp = ?,";
3290             push( @bind, $data->{$temp} );
3291         }
3292
3293         # replace the last , by ",?)"
3294         $query =~ s/\,$//;
3295         my $bkup_sth = $dbh->prepare($query);
3296         $bkup_sth->execute(@bind);
3297         $bkup_sth->finish;
3298
3299         # delete the biblio
3300         my $del_sth = $dbh->prepare("DELETE FROM biblio WHERE biblionumber=?");
3301         $del_sth->execute($biblionumber);
3302         $del_sth->finish;
3303     }
3304     $sth->finish;
3305     return undef;
3306 }
3307
3308 =head2 _koha_delete_biblioitems
3309
3310 =over 4
3311
3312 $error = _koha_delete_biblioitems($dbh,$biblioitemnumber);
3313
3314 Internal sub for deleting from biblioitems table -- also saves to deletedbiblioitems
3315
3316 C<$dbh> - the database handle
3317 C<$biblionumber> - the biblioitemnumber of the biblioitem to be deleted
3318
3319 =back
3320
3321 =cut
3322
3323 # FIXME: add error handling
3324
3325 sub _koha_delete_biblioitems {
3326     my ( $dbh, $biblioitemnumber ) = @_;
3327
3328     # get all the data for this biblioitem
3329     my $sth =
3330       $dbh->prepare("SELECT * FROM biblioitems WHERE biblioitemnumber=?");
3331     $sth->execute($biblioitemnumber);
3332
3333     if ( my $data = $sth->fetchrow_hashref ) {
3334
3335         # save the record in deletedbiblioitems
3336         # find the fields to save
3337         my $query = "INSERT INTO deletedbiblioitems SET ";
3338         my @bind  = ();
3339         foreach my $temp ( keys %$data ) {
3340             $query .= "$temp = ?,";
3341             push( @bind, $data->{$temp} );
3342         }
3343
3344         # replace the last , by ",?)"
3345         $query =~ s/\,$//;
3346         my $bkup_sth = $dbh->prepare($query);
3347         $bkup_sth->execute(@bind);
3348         $bkup_sth->finish;
3349
3350         # delete the biblioitem
3351         my $del_sth =
3352           $dbh->prepare("DELETE FROM biblioitems WHERE biblioitemnumber=?");
3353         $del_sth->execute($biblioitemnumber);
3354         $del_sth->finish;
3355     }
3356     $sth->finish;
3357     return undef;
3358 }
3359
3360 =head1 UNEXPORTED FUNCTIONS
3361
3362 =head2 ModBiblioMarc
3363
3364     &ModBiblioMarc($newrec,$biblionumber,$frameworkcode);
3365     
3366     Add MARC data for a biblio to koha 
3367     
3368     Function exported, but should NOT be used, unless you really know what you're doing
3369
3370 =cut
3371
3372 sub ModBiblioMarc {
3373     
3374 # pass the MARC::Record to this function, and it will create the records in the marc field
3375     my ( $record, $biblionumber, $frameworkcode ) = @_;
3376     my $dbh = C4::Context->dbh;
3377     my @fields = $record->fields();
3378     if ( !$frameworkcode ) {
3379         $frameworkcode = "";
3380     }
3381     my $sth =
3382       $dbh->prepare("UPDATE biblio SET frameworkcode=? WHERE biblionumber=?");
3383     $sth->execute( $frameworkcode, $biblionumber );
3384     $sth->finish;
3385     my $encoding = C4::Context->preference("marcflavour");
3386
3387     # deal with UNIMARC field 100 (encoding) : create it if needed & set encoding to unicode
3388     if ( $encoding eq "UNIMARC" ) {
3389         my $string = $record->subfield( 100, "a" );
3390         if ( ($string) && ( length($record->subfield( 100, "a" )) == 35 ) ) {
3391             my $f100 = $record->field(100);
3392             $record->delete_field($f100);
3393         }
3394         else {
3395             $string = POSIX::strftime( "%Y%m%d", localtime );
3396             $string =~ s/\-//g;
3397             $string = sprintf( "%-*s", 35, $string );
3398         }
3399         substr( $string, 22, 6, "frey50" );
3400         unless ( $record->subfield( 100, "a" ) ) {
3401             $record->insert_grouped_field(
3402                 MARC::Field->new( 100, "", "", "a" => $string ) );
3403         }
3404     }
3405     my $oldRecord;
3406     if (C4::Context->preference("NoZebra")) {
3407         # only NoZebra indexing needs to have
3408         # the previous version of the record
3409         $oldRecord = GetMarcBiblio($biblionumber);
3410     }
3411     $sth =
3412       $dbh->prepare(
3413         "UPDATE biblioitems SET marc=?,marcxml=? WHERE biblionumber=?");
3414     $sth->execute( $record->as_usmarc(), $record->as_xml_record($encoding),
3415         $biblionumber );
3416     $sth->finish;
3417     ModZebra($biblionumber,"specialUpdate","biblioserver",$oldRecord,$record);
3418     return $biblionumber;
3419 }
3420
3421 =head2 z3950_extended_services
3422
3423 z3950_extended_services($serviceType,$serviceOptions,$record);
3424
3425     z3950_extended_services is used to handle all interactions with Zebra's extended serices package, which is employed to perform all management of the MARC data stored in Zebra.
3426
3427 C<$serviceType> one of: itemorder,create,drop,commit,update,xmlupdate
3428
3429 C<$serviceOptions> a has of key/value pairs. For instance, if service_type is 'update', $service_options should contain:
3430
3431     action => update action, one of specialUpdate, recordInsert, recordReplace, recordDelete, elementUpdate.
3432
3433 and maybe
3434
3435     recordidOpaque => Opaque Record ID (user supplied) or recordidNumber => Record ID number (system number).
3436     syntax => the record syntax (transfer syntax)
3437     databaseName = Database from connection object
3438
3439     To set serviceOptions, call set_service_options($serviceType)
3440
3441 C<$record> the record, if one is needed for the service type
3442
3443     A record should be in XML. You can convert it to XML from MARC by running it through marc2xml().
3444
3445 =cut
3446
3447 sub z3950_extended_services {
3448     my ( $server, $serviceType, $action, $serviceOptions ) = @_;
3449
3450     # get our connection object
3451     my $Zconn = C4::Context->Zconn( $server, 0, 1 );
3452
3453     # create a new package object
3454     my $Zpackage = $Zconn->package();
3455
3456     # set our options
3457     $Zpackage->option( action => $action );
3458
3459     if ( $serviceOptions->{'databaseName'} ) {
3460         $Zpackage->option( databaseName => $serviceOptions->{'databaseName'} );
3461     }
3462     if ( $serviceOptions->{'recordIdNumber'} ) {
3463         $Zpackage->option(
3464             recordIdNumber => $serviceOptions->{'recordIdNumber'} );
3465     }
3466     if ( $serviceOptions->{'recordIdOpaque'} ) {
3467         $Zpackage->option(
3468             recordIdOpaque => $serviceOptions->{'recordIdOpaque'} );
3469     }
3470
3471  # this is an ILL request (Zebra doesn't support it, but Koha could eventually)
3472  #if ($serviceType eq 'itemorder') {
3473  #   $Zpackage->option('contact-name' => $serviceOptions->{'contact-name'});
3474  #   $Zpackage->option('contact-phone' => $serviceOptions->{'contact-phone'});
3475  #   $Zpackage->option('contact-email' => $serviceOptions->{'contact-email'});
3476  #   $Zpackage->option('itemorder-item' => $serviceOptions->{'itemorder-item'});
3477  #}
3478
3479     if ( $serviceOptions->{record} ) {
3480         $Zpackage->option( record => $serviceOptions->{record} );
3481
3482         # can be xml or marc
3483         if ( $serviceOptions->{'syntax'} ) {
3484             $Zpackage->option( syntax => $serviceOptions->{'syntax'} );
3485         }
3486     }
3487
3488     # send the request, handle any exception encountered
3489     eval { $Zpackage->send($serviceType) };
3490     if ( $@ && $@->isa("ZOOM::Exception") ) {
3491         return "error:  " . $@->code() . " " . $@->message() . "\n";
3492     }
3493
3494     # free up package resources
3495     $Zpackage->destroy();
3496 }
3497
3498 =head2 set_service_options
3499
3500 my $serviceOptions = set_service_options($serviceType);
3501
3502 C<$serviceType> itemorder,create,drop,commit,update,xmlupdate
3503
3504 Currently, we only support 'create', 'commit', and 'update'. 'drop' support will be added as soon as Zebra supports it.
3505
3506 =cut
3507
3508 sub set_service_options {
3509     my ($serviceType) = @_;
3510     my $serviceOptions;
3511
3512 # FIXME: This needs to be an OID ... if we ever need 'syntax' this sub will need to change
3513 #   $serviceOptions->{ 'syntax' } = ''; #zebra doesn't support syntaxes other than xml
3514
3515     if ( $serviceType eq 'commit' ) {
3516
3517         # nothing to do
3518     }
3519     if ( $serviceType eq 'create' ) {
3520
3521         # nothing to do
3522     }
3523     if ( $serviceType eq 'drop' ) {
3524         die "ERROR: 'drop' not currently supported (by Zebra)";
3525     }
3526     return $serviceOptions;
3527 }
3528
3529 =head3 get_biblio_authorised_values
3530
3531   find the types and values for all authorised values assigned to this biblio.
3532
3533   parameters:
3534     biblionumber
3535     MARC::Record of the bib
3536
3537   returns: a hashref mapping the authorised value to the value set for this biblionumber
3538
3539       $authorised_values = {
3540                              'Scent'     => 'flowery',
3541                              'Audience'  => 'Young Adult',
3542                              'itemtypes' => 'SER',
3543                            };
3544
3545   Notes: forlibrarian should probably be passed in, and called something different.
3546
3547
3548 =cut
3549
3550 sub get_biblio_authorised_values {
3551     my $biblionumber = shift;
3552     my $record       = shift;
3553     
3554     my $forlibrarian = 1; # are we in staff or opac?
3555     my $frameworkcode = GetFrameworkCode( $biblionumber );
3556
3557     my $authorised_values;
3558
3559     my $tagslib = GetMarcStructure( $forlibrarian, $frameworkcode )
3560       or return $authorised_values;
3561
3562     # assume that these entries in the authorised_value table are bibliolevel.
3563     # ones that start with 'item%' are item level.
3564     my $query = q(SELECT distinct authorised_value, kohafield
3565                     FROM marc_subfield_structure
3566                     WHERE authorised_value !=''
3567                       AND (kohafield like 'biblio%'
3568                        OR  kohafield like '') );
3569     my $bibliolevel_authorised_values = C4::Context->dbh->selectall_hashref( $query, 'authorised_value' );
3570     
3571     foreach my $tag ( keys( %$tagslib ) ) {
3572         foreach my $subfield ( keys( %{$tagslib->{ $tag }} ) ) {
3573             # warn "checking $subfield. type is: " . ref $tagslib->{ $tag }{ $subfield };
3574             if ( 'HASH' eq ref $tagslib->{ $tag }{ $subfield } ) {
3575                 if ( defined $tagslib->{ $tag }{ $subfield }{'authorised_value'} && exists $bibliolevel_authorised_values->{ $tagslib->{ $tag }{ $subfield }{'authorised_value'} } ) {
3576                     if ( defined $record->field( $tag ) ) {
3577                         my $this_subfield_value = $record->field( $tag )->subfield( $subfield );
3578                         if ( defined $this_subfield_value ) {
3579                             $authorised_values->{ $tagslib->{ $tag }{ $subfield }{'authorised_value'} } = $this_subfield_value;
3580                         }
3581                     }
3582                 }
3583             }
3584         }
3585     }
3586     # warn ( Data::Dumper->Dump( [ $authorised_values ], [ 'authorised_values' ] ) );
3587     return $authorised_values;
3588 }
3589
3590
3591 1;
3592
3593 __END__
3594
3595 =head1 AUTHOR
3596
3597 Koha Developement team <info@koha.org>
3598
3599 Paul POULAIN paul.poulain@free.fr
3600
3601 Joshua Ferraro jmf@liblime.com
3602
3603 =cut