AuthoritiesMarc.pm Improvements
[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     for ( my $i = 0 ; $i < @$tags ; $i++ ) {
1748         if (C4::Context->preference('marcflavour') eq 'UNIMARC' and @$tags[$i] eq "100" and @$subfields[$i] eq "a") {
1749             # if we have a 100 field and it's values are not correct, skip them.
1750             # if we don't have any valid 100 field, we will create a default one at the end
1751             my $enc = substr( @$values[$i], 26, 2 );
1752             if ($enc eq '01' or $enc eq '50' or $enc eq '03') {
1753                 $unimarc_and_100_exist=1;
1754             } else {
1755                 next;
1756             }
1757         }
1758         @$values[$i] =~ s/&/&amp;/g;
1759         @$values[$i] =~ s/</&lt;/g;
1760         @$values[$i] =~ s/>/&gt;/g;
1761         @$values[$i] =~ s/"/&quot;/g;
1762         @$values[$i] =~ s/'/&apos;/g;
1763 #         if ( !utf8::is_utf8( @$values[$i] ) ) {
1764 #             utf8::decode( @$values[$i] );
1765 #         }
1766         if ( ( @$tags[$i] ne $prevtag ) ) {
1767             $j++ unless ( @$tags[$i] eq "" );
1768             if ( !$first ) {
1769                 $xml .= "</datafield>\n";
1770                 if (   ( @$tags[$i] && @$tags[$i] > 10 )
1771                     && ( @$values[$i] ne "" ) )
1772                 {
1773                     my $ind1 = _default_ind_to_space(substr( @$indicator[$j], 0, 1 ));
1774                     my $ind2;
1775                     if ( @$indicator[$j] ) {
1776                         $ind2 = _default_ind_to_space(substr( @$indicator[$j], 1, 1 ));
1777                     }
1778                     else {
1779                         warn "Indicator in @$tags[$i] is empty";
1780                         $ind2 = " ";
1781                     }
1782                     $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
1783                     $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
1784                     $first = 0;
1785                 }
1786                 else {
1787                     $first = 1;
1788                 }
1789             }
1790             else {
1791                 if ( @$values[$i] ne "" ) {
1792
1793                     # leader
1794                     if ( @$tags[$i] eq "000" ) {
1795                         $xml .= "<leader>@$values[$i]</leader>\n";
1796                         $first = 1;
1797
1798                         # rest of the fixed fields
1799                     }
1800                     elsif ( @$tags[$i] < 10 ) {
1801                         $xml .= "<controlfield tag=\"@$tags[$i]\">@$values[$i]</controlfield>\n";
1802                         $first = 1;
1803                     }
1804                     else {
1805                         my $ind1 = _default_ind_to_space( substr( @$indicator[$j], 0, 1 ) );
1806                         my $ind2 = _default_ind_to_space( substr( @$indicator[$j], 1, 1 ) );
1807                         $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
1808                         $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
1809                         $first = 0;
1810                     }
1811                 }
1812             }
1813         }
1814         else {    # @$tags[$i] eq $prevtag
1815             if ( @$values[$i] eq "" ) {
1816             }
1817             else {
1818                 if ($first) {
1819                     my $ind1 = _default_ind_to_space( substr( @$indicator[$j], 0, 1 ) );
1820                     my $ind2 = _default_ind_to_space( substr( @$indicator[$j], 1, 1 ) );
1821                     $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
1822                     $first = 0;
1823                 }
1824                 $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
1825             }
1826         }
1827         $prevtag = @$tags[$i];
1828     }
1829     $xml .= "</datafield>\n" if @$tags > 0;
1830     if (C4::Context->preference('marcflavour') eq 'UNIMARC' and !$unimarc_and_100_exist) {
1831 #     warn "SETTING 100 for $auth_type";
1832         my $string = strftime( "%Y%m%d", localtime(time) );
1833         # set 50 to position 26 is biblios, 13 if authorities
1834         my $pos=26;
1835         $pos=13 if $auth_type eq 'UNIMARCAUTH';
1836         $string = sprintf( "%-*s", 35, $string );
1837         substr( $string, $pos , 6, "50" );
1838         $xml .= "<datafield tag=\"100\" ind1=\"\" ind2=\"\">\n";
1839         $xml .= "<subfield code=\"a\">$string</subfield>\n";
1840         $xml .= "</datafield>\n";
1841     }
1842     $xml .= "</record>\n";
1843     $xml .= MARC::File::XML::footer();
1844     return $xml;
1845 }
1846
1847 =head2 _default_ind_to_space
1848
1849 Passed what should be an indicator returns a space
1850 if its undefined or zero length
1851
1852 =cut
1853
1854 sub _default_ind_to_space {
1855     my $s = shift;
1856     if (!defined $s || $s eq q{}) {
1857         return ' ';
1858     }
1859     return $s;
1860 }
1861
1862 =head2 TransformHtmlToMarc
1863
1864     L<$record> = TransformHtmlToMarc(L<$params>,L<$cgi>)
1865     L<$params> is a ref to an array as below:
1866     {
1867         'tag_010_indicator1_531951' ,
1868         'tag_010_indicator2_531951' ,
1869         'tag_010_code_a_531951_145735' ,
1870         'tag_010_subfield_a_531951_145735' ,
1871         'tag_200_indicator1_873510' ,
1872         'tag_200_indicator2_873510' ,
1873         'tag_200_code_a_873510_673465' ,
1874         'tag_200_subfield_a_873510_673465' ,
1875         'tag_200_code_b_873510_704318' ,
1876         'tag_200_subfield_b_873510_704318' ,
1877         'tag_200_code_e_873510_280822' ,
1878         'tag_200_subfield_e_873510_280822' ,
1879         'tag_200_code_f_873510_110730' ,
1880         'tag_200_subfield_f_873510_110730' ,
1881     }
1882     L<$cgi> is the CGI object which containts the value.
1883     L<$record> is the MARC::Record object.
1884
1885 =cut
1886
1887 sub TransformHtmlToMarc {
1888     my $params = shift;
1889     my $cgi    = shift;
1890
1891     # explicitly turn on the UTF-8 flag for all
1892     # 'tag_' parameters to avoid incorrect character
1893     # conversion later on
1894     my $cgi_params = $cgi->Vars;
1895     foreach my $param_name (keys %$cgi_params) {
1896         if ($param_name =~ /^tag_/) {
1897             my $param_value = $cgi_params->{$param_name};
1898             if (utf8::decode($param_value)) {
1899                 $cgi_params->{$param_name} = $param_value;
1900             } 
1901             # FIXME - need to do something if string is not valid UTF-8
1902         }
1903     }
1904    
1905     # creating a new record
1906     my $record  = MARC::Record->new();
1907     my $i=0;
1908     my @fields;
1909     while ($params->[$i]){ # browse all CGI params
1910         my $param = $params->[$i];
1911         my $newfield=0;
1912         # if we are on biblionumber, store it in the MARC::Record (it may not be in the edited fields)
1913         if ($param eq 'biblionumber') {
1914             my ( $biblionumbertagfield, $biblionumbertagsubfield ) =
1915                 &GetMarcFromKohaField( "biblio.biblionumber", '' );
1916             if ($biblionumbertagfield < 10) {
1917                 $newfield = MARC::Field->new(
1918                     $biblionumbertagfield,
1919                     $cgi->param($param),
1920                 );
1921             } else {
1922                 $newfield = MARC::Field->new(
1923                     $biblionumbertagfield,
1924                     '',
1925                     '',
1926                     "$biblionumbertagsubfield" => $cgi->param($param),
1927                 );
1928             }
1929             push @fields,$newfield if($newfield);
1930         } 
1931         elsif ($param =~ /^tag_(\d*)_indicator1_/){ # new field start when having 'input name="..._indicator1_..."
1932             my $tag  = $1;
1933             
1934             my $ind1 = _default_ind_to_space(substr($cgi->param($param),          0, 1));
1935             my $ind2 = _default_ind_to_space(substr($cgi->param($params->[$i+1]), 0, 1));
1936             $newfield=0;
1937             my $j=$i+2;
1938             
1939             if($tag < 10){ # no code for theses fields
1940     # in MARC editor, 000 contains the leader.
1941                 if ($tag eq '000' ) {
1942                     $record->leader($cgi->param($params->[$j+1])) if length($cgi->param($params->[$j+1]))==24;
1943     # between 001 and 009 (included)
1944                 } elsif ($cgi->param($params->[$j+1]) ne '') {
1945                     $newfield = MARC::Field->new(
1946                         $tag,
1947                         $cgi->param($params->[$j+1]),
1948                     );
1949                 }
1950     # > 009, deal with subfields
1951             } else {
1952                 while(defined $params->[$j] && $params->[$j] =~ /_code_/){ # browse all it's subfield
1953                     my $inner_param = $params->[$j];
1954                     if ($newfield){
1955                         if($cgi->param($params->[$j+1]) ne ''){  # only if there is a value (code => value)
1956                             $newfield->add_subfields(
1957                                 $cgi->param($inner_param) => $cgi->param($params->[$j+1])
1958                             );
1959                         }
1960                     } else {
1961                         if ( $cgi->param($params->[$j+1]) ne '' ) { # creating only if there is a value (code => value)
1962                             $newfield = MARC::Field->new(
1963                                 $tag,
1964                                 $ind1,
1965                                 $ind2,
1966                                 $cgi->param($inner_param) => $cgi->param($params->[$j+1]),
1967                             );
1968                         }
1969                     }
1970                     $j+=2;
1971                 }
1972             }
1973             push @fields,$newfield if($newfield);
1974         }
1975         $i++;
1976     }
1977     
1978     $record->append_fields(@fields);
1979     return $record;
1980 }
1981
1982 # cache inverted MARC field map
1983 our $inverted_field_map;
1984
1985 =head2 TransformMarcToKoha
1986
1987 =over 4
1988
1989     $result = TransformMarcToKoha( $dbh, $record, $frameworkcode )
1990
1991 =back
1992
1993 Extract data from a MARC bib record into a hashref representing
1994 Koha biblio, biblioitems, and items fields. 
1995
1996 =cut
1997 sub TransformMarcToKoha {
1998     my ( $dbh, $record, $frameworkcode, $limit_table ) = @_;
1999
2000     my $result;
2001     $limit_table=$limit_table||0;
2002     $frameworkcode = '' unless defined $frameworkcode;
2003     
2004     unless (defined $inverted_field_map) {
2005         $inverted_field_map = _get_inverted_marc_field_map();
2006     }
2007
2008     my %tables = ();
2009     if ( defined $limit_table && $limit_table eq 'items') {
2010         $tables{'items'} = 1;
2011     } else {
2012         $tables{'items'} = 1;
2013         $tables{'biblio'} = 1;
2014         $tables{'biblioitems'} = 1;
2015     }
2016
2017     # traverse through record
2018     MARCFIELD: foreach my $field ($record->fields()) {
2019         my $tag = $field->tag();
2020         next MARCFIELD unless exists $inverted_field_map->{$frameworkcode}->{$tag};
2021         if ($field->is_control_field()) {
2022             my $kohafields = $inverted_field_map->{$frameworkcode}->{$tag}->{list};
2023             ENTRY: foreach my $entry (@{ $kohafields }) {
2024                 my ($subfield, $table, $column) = @{ $entry };
2025                 next ENTRY unless exists $tables{$table};
2026                 my $key = _disambiguate($table, $column);
2027                 if ($result->{$key}) {
2028                     unless (($key eq "biblionumber" or $key eq "biblioitemnumber") and ($field->data() eq "")) {
2029                         $result->{$key} .= " | " . $field->data();
2030                     }
2031                 } else {
2032                     $result->{$key} = $field->data();
2033                 }
2034             }
2035         } else {
2036             # deal with subfields
2037             MARCSUBFIELD: foreach my $sf ($field->subfields()) {
2038                 my $code = $sf->[0];
2039                 next MARCSUBFIELD unless exists $inverted_field_map->{$frameworkcode}->{$tag}->{sfs}->{$code};
2040                 my $value = $sf->[1];
2041                 SFENTRY: foreach my $entry (@{ $inverted_field_map->{$frameworkcode}->{$tag}->{sfs}->{$code} }) {
2042                     my ($table, $column) = @{ $entry };
2043                     next SFENTRY unless exists $tables{$table};
2044                     my $key = _disambiguate($table, $column);
2045                     if ($result->{$key}) {
2046                         unless (($key eq "biblionumber" or $key eq "biblioitemnumber") and ($value eq "")) {
2047                             $result->{$key} .= " | " . $value;
2048                         }
2049                     } else {
2050                         $result->{$key} = $value;
2051                     }
2052                 }
2053             }
2054         }
2055     }
2056
2057     # modify copyrightdate to keep only the 1st year found
2058     if (exists $result->{'copyrightdate'}) {
2059         my $temp = $result->{'copyrightdate'};
2060         $temp =~ m/c(\d\d\d\d)/;
2061         if ( $temp =~ m/c(\d\d\d\d)/ and $1 > 0 ) { # search cYYYY first
2062             $result->{'copyrightdate'} = $1;
2063         }
2064         else {                      # if no cYYYY, get the 1st date.
2065             $temp =~ m/(\d\d\d\d)/;
2066             $result->{'copyrightdate'} = $1;
2067         }
2068     }
2069
2070     # modify publicationyear to keep only the 1st year found
2071     if (exists $result->{'publicationyear'}) {
2072         my $temp = $result->{'publicationyear'};
2073         if ( $temp =~ m/c(\d\d\d\d)/ and $1 > 0 ) { # search cYYYY first
2074             $result->{'publicationyear'} = $1;
2075         }
2076         else {                      # if no cYYYY, get the 1st date.
2077             $temp =~ m/(\d\d\d\d)/;
2078             $result->{'publicationyear'} = $1;
2079         }
2080     }
2081
2082     return $result;
2083 }
2084
2085 sub _get_inverted_marc_field_map {
2086     my $field_map = {};
2087     my $relations = C4::Context->marcfromkohafield;
2088
2089     foreach my $frameworkcode (keys %{ $relations }) {
2090         foreach my $kohafield (keys %{ $relations->{$frameworkcode} }) {
2091             next unless @{ $relations->{$frameworkcode}->{$kohafield} }; # not all columns are mapped to MARC tag & subfield
2092             my $tag = $relations->{$frameworkcode}->{$kohafield}->[0];
2093             my $subfield = $relations->{$frameworkcode}->{$kohafield}->[1];
2094             my ($table, $column) = split /[.]/, $kohafield, 2;
2095             push @{ $field_map->{$frameworkcode}->{$tag}->{list} }, [ $subfield, $table, $column ];
2096             push @{ $field_map->{$frameworkcode}->{$tag}->{sfs}->{$subfield} }, [ $table, $column ];
2097         }
2098     }
2099     return $field_map;
2100 }
2101
2102 =head2 _disambiguate
2103
2104 =over 4
2105
2106 $newkey = _disambiguate($table, $field);
2107
2108 This is a temporary hack to distinguish between the
2109 following sets of columns when using TransformMarcToKoha.
2110
2111 items.cn_source & biblioitems.cn_source
2112 items.cn_sort & biblioitems.cn_sort
2113
2114 Columns that are currently NOT distinguished (FIXME
2115 due to lack of time to fully test) are:
2116
2117 biblio.notes and biblioitems.notes
2118 biblionumber
2119 timestamp
2120 biblioitemnumber
2121
2122 FIXME - this is necessary because prefixing each column
2123 name with the table name would require changing lots
2124 of code and templates, and exposing more of the DB
2125 structure than is good to the UI templates, particularly
2126 since biblio and bibloitems may well merge in a future
2127 version.  In the future, it would also be good to 
2128 separate DB access and UI presentation field names
2129 more.
2130
2131 =back
2132
2133 =cut
2134
2135 sub CountItemsIssued {
2136   my ( $biblionumber )  = @_;
2137   my $dbh = C4::Context->dbh;
2138   my $sth = $dbh->prepare('SELECT COUNT(*) as issuedCount FROM items, issues WHERE items.itemnumber = issues.itemnumber AND items.biblionumber = ?');
2139   $sth->execute( $biblionumber );
2140   my $row = $sth->fetchrow_hashref();
2141   return $row->{'issuedCount'};
2142 }
2143
2144 sub _disambiguate {
2145     my ($table, $column) = @_;
2146     if ($column eq "cn_sort" or $column eq "cn_source") {
2147         return $table . '.' . $column;
2148     } else {
2149         return $column;
2150     }
2151
2152 }
2153
2154 =head2 get_koha_field_from_marc
2155
2156 =over 4
2157
2158 $result->{_disambiguate($table, $field)} = get_koha_field_from_marc($table,$field,$record,$frameworkcode);
2159
2160 Internal function to map data from the MARC record to a specific non-MARC field.
2161 FIXME: this is meant to replace TransformMarcToKohaOneField after more testing.
2162
2163 =back
2164
2165 =cut
2166
2167 sub get_koha_field_from_marc {
2168     my ($koha_table,$koha_column,$record,$frameworkcode) = @_;
2169     my ( $tagfield, $subfield ) = GetMarcFromKohaField( $koha_table.'.'.$koha_column, $frameworkcode );  
2170     my $kohafield;
2171     foreach my $field ( $record->field($tagfield) ) {
2172         if ( $field->tag() < 10 ) {
2173             if ( $kohafield ) {
2174                 $kohafield .= " | " . $field->data();
2175             }
2176             else {
2177                 $kohafield = $field->data();
2178             }
2179         }
2180         else {
2181             if ( $field->subfields ) {
2182                 my @subfields = $field->subfields();
2183                 foreach my $subfieldcount ( 0 .. $#subfields ) {
2184                     if ( $subfields[$subfieldcount][0] eq $subfield ) {
2185                         if ( $kohafield ) {
2186                             $kohafield .=
2187                               " | " . $subfields[$subfieldcount][1];
2188                         }
2189                         else {
2190                             $kohafield =
2191                               $subfields[$subfieldcount][1];
2192                         }
2193                     }
2194                 }
2195             }
2196         }
2197     }
2198     return $kohafield;
2199
2200
2201
2202 =head2 TransformMarcToKohaOneField
2203
2204 =over 4
2205
2206 $result = TransformMarcToKohaOneField( $kohatable, $kohafield, $record, $result, $frameworkcode )
2207
2208 =back
2209
2210 =cut
2211
2212 sub TransformMarcToKohaOneField {
2213
2214     # FIXME ? if a field has a repeatable subfield that is used in old-db,
2215     # only the 1st will be retrieved...
2216     my ( $kohatable, $kohafield, $record, $result, $frameworkcode ) = @_;
2217     my $res = "";
2218     my ( $tagfield, $subfield ) =
2219       GetMarcFromKohaField( $kohatable . "." . $kohafield,
2220         $frameworkcode );
2221     foreach my $field ( $record->field($tagfield) ) {
2222         if ( $field->tag() < 10 ) {
2223             if ( $result->{$kohafield} ) {
2224                 $result->{$kohafield} .= " | " . $field->data();
2225             }
2226             else {
2227                 $result->{$kohafield} = $field->data();
2228             }
2229         }
2230         else {
2231             if ( $field->subfields ) {
2232                 my @subfields = $field->subfields();
2233                 foreach my $subfieldcount ( 0 .. $#subfields ) {
2234                     if ( $subfields[$subfieldcount][0] eq $subfield ) {
2235                         if ( $result->{$kohafield} ) {
2236                             $result->{$kohafield} .=
2237                               " | " . $subfields[$subfieldcount][1];
2238                         }
2239                         else {
2240                             $result->{$kohafield} =
2241                               $subfields[$subfieldcount][1];
2242                         }
2243                     }
2244                 }
2245             }
2246         }
2247     }
2248     return $result;
2249 }
2250
2251 =head1  OTHER FUNCTIONS
2252
2253
2254 =head2 PrepareItemrecordDisplay
2255
2256 =over 4
2257
2258 PrepareItemrecordDisplay($itemrecord,$bibnum,$itemumber);
2259
2260 Returns a hash with all the fields for Display a given item data in a template
2261
2262 =back
2263
2264 =cut
2265
2266 sub PrepareItemrecordDisplay {
2267
2268     my ( $bibnum, $itemnum, $defaultvalues ) = @_;
2269
2270     my $dbh = C4::Context->dbh;
2271     my $frameworkcode = &GetFrameworkCode( $bibnum );
2272     my ( $itemtagfield, $itemtagsubfield ) =
2273       &GetMarcFromKohaField( "items.itemnumber", $frameworkcode );
2274     my $tagslib = &GetMarcStructure( 1, $frameworkcode );
2275     my $itemrecord = C4::Items::GetMarcItem( $bibnum, $itemnum) if ($itemnum);
2276     my @loop_data;
2277     my $authorised_values_sth =
2278       $dbh->prepare(
2279 "SELECT authorised_value,lib FROM authorised_values WHERE category=? ORDER BY lib"
2280       );
2281     foreach my $tag ( sort keys %{$tagslib} ) {
2282         my $previous_tag = '';
2283         if ( $tag ne '' ) {
2284             # loop through each subfield
2285             my $cntsubf;
2286             foreach my $subfield ( sort keys %{ $tagslib->{$tag} } ) {
2287                 next if ( subfield_is_koha_internal_p($subfield) );
2288                 next if ( $tagslib->{$tag}->{$subfield}->{'tab'} ne "10" );
2289                 my %subfield_data;
2290                 $subfield_data{tag}           = $tag;
2291                 $subfield_data{subfield}      = $subfield;
2292                 $subfield_data{countsubfield} = $cntsubf++;
2293                 $subfield_data{kohafield}     =
2294                   $tagslib->{$tag}->{$subfield}->{'kohafield'};
2295
2296          #        $subfield_data{marc_lib}=$tagslib->{$tag}->{$subfield}->{lib};
2297                 $subfield_data{marc_lib} = $tagslib->{$tag}->{$subfield}->{lib};
2298                 $subfield_data{mandatory} =
2299                   $tagslib->{$tag}->{$subfield}->{mandatory};
2300                 $subfield_data{repeatable} =
2301                   $tagslib->{$tag}->{$subfield}->{repeatable};
2302                 $subfield_data{hidden} = "display:none"
2303                   if $tagslib->{$tag}->{$subfield}->{hidden};
2304                   my ( $x, $value );
2305                   if ($itemrecord) {
2306                       ( $x, $value ) = _find_value( $tag, $subfield, $itemrecord );
2307                   }
2308                   if (!defined $value) {
2309                       $value = q||;
2310                   }
2311                   $value =~ s/"/&quot;/g;
2312
2313                 # search for itemcallnumber if applicable
2314                 if ( $tagslib->{$tag}->{$subfield}->{kohafield} eq
2315                     'items.itemcallnumber'
2316                     && C4::Context->preference('itemcallnumber') )
2317                 {
2318                     my $CNtag =
2319                       substr( C4::Context->preference('itemcallnumber'), 0, 3 );
2320                     my $CNsubfield =
2321                       substr( C4::Context->preference('itemcallnumber'), 3, 1 );
2322                     my $temp = $itemrecord->field($CNtag) if ($itemrecord);
2323                     if ($temp) {
2324                         $value = $temp->subfield($CNsubfield);
2325                     }
2326                 }
2327                 if ( $tagslib->{$tag}->{$subfield}->{kohafield} eq
2328                     'items.itemcallnumber'
2329                     && $defaultvalues->{'callnumber'} )
2330                 {
2331                     my $temp = $itemrecord->field($subfield) if ($itemrecord);
2332                     unless ($temp) {
2333                         $value = $defaultvalues->{'callnumber'};
2334                     }
2335                 }
2336                 if ( ($tagslib->{$tag}->{$subfield}->{kohafield} eq
2337                     'items.holdingbranch' ||
2338                     $tagslib->{$tag}->{$subfield}->{kohafield} eq
2339                     'items.homebranch')          
2340                     && $defaultvalues->{'branchcode'} )
2341                 {
2342                     my $temp = $itemrecord->field($subfield) if ($itemrecord);
2343                     unless ($temp) {
2344                         $value = $defaultvalues->{branchcode};
2345                     }
2346                 }
2347                 if ( $tagslib->{$tag}->{$subfield}->{authorised_value} ) {
2348                     my @authorised_values;
2349                     my %authorised_lib;
2350
2351                     # builds list, depending on authorised value...
2352                     #---- branch
2353                     if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq
2354                         "branches" )
2355                     {
2356                         if ( ( C4::Context->preference("IndependantBranches") )
2357                             && ( C4::Context->userenv->{flags} != 1 ) )
2358                         {
2359                             my $sth =
2360                               $dbh->prepare(
2361                                 "SELECT branchcode,branchname FROM branches WHERE branchcode = ? ORDER BY branchname"
2362                               );
2363                             $sth->execute( C4::Context->userenv->{branch} );
2364                             push @authorised_values, ""
2365                               unless (
2366                                 $tagslib->{$tag}->{$subfield}->{mandatory} );
2367                             while ( my ( $branchcode, $branchname ) =
2368                                 $sth->fetchrow_array )
2369                             {
2370                                 push @authorised_values, $branchcode;
2371                                 $authorised_lib{$branchcode} = $branchname;
2372                             }
2373                         }
2374                         else {
2375                             my $sth =
2376                               $dbh->prepare(
2377                                 "SELECT branchcode,branchname FROM branches ORDER BY branchname"
2378                               );
2379                             $sth->execute;
2380                             push @authorised_values, ""
2381                               unless (
2382                                 $tagslib->{$tag}->{$subfield}->{mandatory} );
2383                             while ( my ( $branchcode, $branchname ) =
2384                                 $sth->fetchrow_array )
2385                             {
2386                                 push @authorised_values, $branchcode;
2387                                 $authorised_lib{$branchcode} = $branchname;
2388                             }
2389                         }
2390
2391                         #----- itemtypes
2392                     }
2393                     elsif ( $tagslib->{$tag}->{$subfield}->{authorised_value} eq
2394                         "itemtypes" )
2395                     {
2396                         my $sth =
2397                           $dbh->prepare(
2398                             "SELECT itemtype,description FROM itemtypes ORDER BY description"
2399                           );
2400                         $sth->execute;
2401                         push @authorised_values, ""
2402                           unless ( $tagslib->{$tag}->{$subfield}->{mandatory} );
2403                         while ( my ( $itemtype, $description ) =
2404                             $sth->fetchrow_array )
2405                         {
2406                             push @authorised_values, $itemtype;
2407                             $authorised_lib{$itemtype} = $description;
2408                         }
2409
2410                         #---- "true" authorised value
2411                     }
2412                     else {
2413                         $authorised_values_sth->execute(
2414                             $tagslib->{$tag}->{$subfield}->{authorised_value} );
2415                         push @authorised_values, ""
2416                           unless ( $tagslib->{$tag}->{$subfield}->{mandatory} );
2417                         while ( my ( $value, $lib ) =
2418                             $authorised_values_sth->fetchrow_array )
2419                         {
2420                             push @authorised_values, $value;
2421                             $authorised_lib{$value} = $lib;
2422                         }
2423                     }
2424                     $subfield_data{marc_value} = CGI::scrolling_list(
2425                         -name     => 'field_value',
2426                         -values   => \@authorised_values,
2427                         -default  => "$value",
2428                         -labels   => \%authorised_lib,
2429                         -size     => 1,
2430                         -tabindex => '',
2431                         -multiple => 0,
2432                     );
2433                 }
2434                 else {
2435                     $subfield_data{marc_value} =
2436 "<input type=\"text\" name=\"field_value\" value=\"$value\" size=\"50\" maxlength=\"255\" />";
2437                 }
2438                 push( @loop_data, \%subfield_data );
2439             }
2440         }
2441     }
2442     my $itemnumber = $itemrecord->subfield( $itemtagfield, $itemtagsubfield )
2443       if ( $itemrecord && $itemrecord->field($itemtagfield) );
2444     return {
2445         'itemtagfield'    => $itemtagfield,
2446         'itemtagsubfield' => $itemtagsubfield,
2447         'itemnumber'      => $itemnumber,
2448         'iteminformation' => \@loop_data
2449     };
2450 }
2451 #"
2452
2453 #
2454 # true ModZebra commented until indexdata fixes zebraDB crashes (it seems they occur on multiple updates
2455 # at the same time
2456 # replaced by a zebraqueue table, that is filled with ModZebra to run.
2457 # the table is emptied by misc/cronjobs/zebraqueue_start.pl script
2458 # =head2 ModZebrafiles
2459
2460 # &ModZebrafiles( $dbh, $biblionumber, $record, $folder, $server );
2461
2462 # =cut
2463
2464 # sub ModZebrafiles {
2465
2466 #     my ( $dbh, $biblionumber, $record, $folder, $server ) = @_;
2467
2468 #     my $op;
2469 #     my $zebradir =
2470 #       C4::Context->zebraconfig($server)->{directory} . "/" . $folder . "/";
2471 #     unless ( opendir( DIR, "$zebradir" ) ) {
2472 #         warn "$zebradir not found";
2473 #         return;
2474 #     }
2475 #     closedir DIR;
2476 #     my $filename = $zebradir . $biblionumber;
2477
2478 #     if ($record) {
2479 #         open( OUTPUT, ">", $filename . ".xml" );
2480 #         print OUTPUT $record;
2481 #         close OUTPUT;
2482 #     }
2483 # }
2484
2485 =head2 ModZebra
2486
2487 =over 4
2488
2489 ModZebra( $biblionumber, $op, $server, $oldRecord, $newRecord );
2490
2491     $biblionumber is the biblionumber we want to index
2492     $op is specialUpdate or delete, and is used to know what we want to do
2493     $server is the server that we want to update
2494     $oldRecord is the MARC::Record containing the previous version of the record.  This is used only when 
2495       NoZebra=1, as NoZebra indexing needs to know the previous version of a record in order to
2496       do an update.
2497     $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.
2498     
2499 =back
2500
2501 =cut
2502
2503 sub ModZebra {
2504 ###Accepts a $server variable thus we can use it for biblios authorities or other zebra dbs
2505     my ( $biblionumber, $op, $server, $oldRecord, $newRecord ) = @_;
2506     my $dbh=C4::Context->dbh;
2507
2508     # true ModZebra commented until indexdata fixes zebraDB crashes (it seems they occur on multiple updates
2509     # at the same time
2510     # replaced by a zebraqueue table, that is filled with ModZebra to run.
2511     # the table is emptied by misc/cronjobs/zebraqueue_start.pl script
2512
2513     if (C4::Context->preference("NoZebra")) {
2514         # lock the nozebra table : we will read index lines, update them in Perl process
2515         # and write everything in 1 transaction.
2516         # lock the table to avoid someone else overwriting what we are doing
2517         $dbh->do('LOCK TABLES nozebra WRITE,biblio WRITE,biblioitems WRITE, systempreferences WRITE, auth_types WRITE, auth_header WRITE, auth_subfield_structure READ');
2518         my %result; # the result hash that will be built by deletion / add, and written on mySQL at the end, to improve speed
2519         if ($op eq 'specialUpdate') {
2520             # OK, we have to add or update the record
2521             # 1st delete (virtually, in indexes), if record actually exists
2522             if ($oldRecord) { 
2523                 %result = _DelBiblioNoZebra($biblionumber,$oldRecord,$server);
2524             }
2525             # ... add the record
2526             %result=_AddBiblioNoZebra($biblionumber,$newRecord, $server, %result);
2527         } else {
2528             # it's a deletion, delete the record...
2529             # warn "DELETE the record $biblionumber on $server".$record->as_formatted;
2530             %result=_DelBiblioNoZebra($biblionumber,$oldRecord,$server);
2531         }
2532         # ok, now update the database...
2533         my $sth = $dbh->prepare("UPDATE nozebra SET biblionumbers=? WHERE server=? AND indexname=? AND value=?");
2534         foreach my $key (keys %result) {
2535             foreach my $index (keys %{$result{$key}}) {
2536                 $sth->execute($result{$key}->{$index}, $server, $key, $index);
2537             }
2538         }
2539         $dbh->do('UNLOCK TABLES');
2540     } else {
2541         #
2542         # we use zebra, just fill zebraqueue table
2543         #
2544         my $check_sql = "SELECT COUNT(*) FROM zebraqueue 
2545                          WHERE server = ?
2546                          AND   biblio_auth_number = ?
2547                          AND   operation = ?
2548                          AND   done = 0";
2549         my $check_sth = $dbh->prepare_cached($check_sql);
2550         $check_sth->execute($server, $biblionumber, $op);
2551         my ($count) = $check_sth->fetchrow_array;
2552         $check_sth->finish();
2553         if ($count == 0) {
2554             my $sth=$dbh->prepare("INSERT INTO zebraqueue  (biblio_auth_number,server,operation) VALUES(?,?,?)");
2555             $sth->execute($biblionumber,$server,$op);
2556             $sth->finish;
2557         }
2558     }
2559 }
2560
2561 =head2 GetNoZebraIndexes
2562
2563     %indexes = GetNoZebraIndexes;
2564     
2565     return the data from NoZebraIndexes syspref.
2566
2567 =cut
2568
2569 sub GetNoZebraIndexes {
2570     my $no_zebra_indexes = C4::Context->preference('NoZebraIndexes');
2571     my %indexes;
2572     INDEX: foreach my $line (split /['"],[\n\r]*/,$no_zebra_indexes) {
2573         $line =~ /(.*)=>(.*)/;
2574         my $index = $1; # initial ' or " is removed afterwards
2575         my $fields = $2;
2576         $index =~ s/'|"|\s//g;
2577         $fields =~ s/'|"|\s//g;
2578         $indexes{$index}=$fields;
2579     }
2580     return %indexes;
2581 }
2582
2583 =head1 INTERNAL FUNCTIONS
2584
2585 =head2 _DelBiblioNoZebra($biblionumber,$record,$server);
2586
2587     function to delete a biblio in NoZebra indexes
2588     This function does NOT delete anything in database : it reads all the indexes entries
2589     that have to be deleted & delete them in the hash
2590     The SQL part is done either :
2591     - after the Add if we are modifying a biblio (delete + add again)
2592     - immediatly after this sub if we are doing a true deletion.
2593     $server can be 'biblioserver' or 'authorityserver' : it indexes biblios or authorities (in the same table, $server being part of the table itself
2594
2595 =cut
2596
2597
2598 sub _DelBiblioNoZebra {
2599     my ($biblionumber, $record, $server)=@_;
2600     
2601     # Get the indexes
2602     my $dbh = C4::Context->dbh;
2603     # Get the indexes
2604     my %index;
2605     my $title;
2606     if ($server eq 'biblioserver') {
2607         %index=GetNoZebraIndexes;
2608         # get title of the record (to store the 10 first letters with the index)
2609         my ($titletag,$titlesubfield) = GetMarcFromKohaField('biblio.title','');
2610         $title = lc($record->subfield($titletag,$titlesubfield));
2611     } else {
2612         # for authorities, the "title" is the $a mainentry
2613         my ($auth_type_tag, $auth_type_sf) = C4::AuthoritiesMarc::get_auth_type_location();
2614         my $authref = C4::AuthoritiesMarc::GetAuthType($record->subfield($auth_type_tag, $auth_type_sf));
2615         warn "ERROR : authtype undefined for ".$record->as_formatted unless $authref;
2616         $title = $record->subfield($authref->{auth_tag_to_report},'a');
2617         $index{'mainmainentry'}= $authref->{'auth_tag_to_report'}.'a';
2618         $index{'mainentry'}    = $authref->{'auth_tag_to_report'}.'*';
2619         $index{'auth_type'}    = "${auth_type_tag}${auth_type_sf}";
2620     }
2621     
2622     my %result;
2623     # remove blancks comma (that could cause problem when decoding the string for CQL retrieval) and regexp specific values
2624     $title =~ s/ |,|;|\[|\]|\(|\)|\*|-|'|=//g;
2625     # limit to 10 char, should be enough, and limit the DB size
2626     $title = substr($title,0,10);
2627     #parse each field
2628     my $sth2=$dbh->prepare('SELECT biblionumbers FROM nozebra WHERE server=? AND indexname=? AND value=?');
2629     foreach my $field ($record->fields()) {
2630         #parse each subfield
2631         next if $field->tag <10;
2632         foreach my $subfield ($field->subfields()) {
2633             my $tag = $field->tag();
2634             my $subfieldcode = $subfield->[0];
2635             my $indexed=0;
2636             # check each index to see if the subfield is stored somewhere
2637             # otherwise, store it in __RAW__ index
2638             foreach my $key (keys %index) {
2639 #                 warn "examining $key index : ".$index{$key}." for $tag $subfieldcode";
2640                 if ($index{$key} =~ /$tag\*/ or $index{$key} =~ /$tag$subfieldcode/) {
2641                     $indexed=1;
2642                     my $line= lc $subfield->[1];
2643                     # remove meaningless value in the field...
2644                     $line =~ s/-|\.|\?|,|;|!|'|\(|\)|\[|\]|{|}|"|<|>|&|\+|\*|\/|=|:/ /g;
2645                     # ... and split in words
2646                     foreach (split / /,$line) {
2647                         next unless $_; # skip  empty values (multiple spaces)
2648                         # if the entry is already here, do nothing, the biblionumber has already be removed
2649                         unless ( defined( $result{$key}->{$_} ) && ( $result{$key}->{$_} =~ /$biblionumber,$title\-(\d);/) ) {
2650                             # get the index value if it exist in the nozebra table and remove the entry, otherwise, do nothing
2651                             $sth2->execute($server,$key,$_);
2652                             my $existing_biblionumbers = $sth2->fetchrow;
2653                             # it exists
2654                             if ($existing_biblionumbers) {
2655 #                                 warn " existing for $key $_: $existing_biblionumbers";
2656                                 $result{$key}->{$_} =$existing_biblionumbers;
2657                                 $result{$key}->{$_} =~ s/$biblionumber,$title\-(\d);//;
2658                             }
2659                         }
2660                     }
2661                 }
2662             }
2663             # the subfield is not indexed, store it in __RAW__ index anyway
2664             unless ($indexed) {
2665                 my $line= lc $subfield->[1];
2666                 $line =~ s/-|\.|\?|,|;|!|'|\(|\)|\[|\]|{|}|"|<|>|&|\+|\*|\/|=|:/ /g;
2667                 # ... and split in words
2668                 foreach (split / /,$line) {
2669                     next unless $_; # skip  empty values (multiple spaces)
2670                     # if the entry is already here, do nothing, the biblionumber has already be removed
2671                     unless ($result{'__RAW__'}->{$_} =~ /$biblionumber,$title\-(\d);/) {
2672                         # get the index value if it exist in the nozebra table and remove the entry, otherwise, do nothing
2673                         $sth2->execute($server,'__RAW__',$_);
2674                         my $existing_biblionumbers = $sth2->fetchrow;
2675                         # it exists
2676                         if ($existing_biblionumbers) {
2677                             $result{'__RAW__'}->{$_} =$existing_biblionumbers;
2678                             $result{'__RAW__'}->{$_} =~ s/$biblionumber,$title\-(\d);//;
2679                         }
2680                     }
2681                 }
2682             }
2683         }
2684     }
2685     return %result;
2686 }
2687
2688 =head2 _AddBiblioNoZebra($biblionumber, $record, $server, %result);
2689
2690     function to add a biblio in NoZebra indexes
2691
2692 =cut
2693
2694 sub _AddBiblioNoZebra {
2695     my ($biblionumber, $record, $server, %result)=@_;
2696     my $dbh = C4::Context->dbh;
2697     # Get the indexes
2698     my %index;
2699     my $title;
2700     if ($server eq 'biblioserver') {
2701         %index=GetNoZebraIndexes;
2702         # get title of the record (to store the 10 first letters with the index)
2703         my ($titletag,$titlesubfield) = GetMarcFromKohaField('biblio.title','');
2704         $title = lc($record->subfield($titletag,$titlesubfield));
2705     } else {
2706         # warn "server : $server";
2707         # for authorities, the "title" is the $a mainentry
2708         my ($auth_type_tag, $auth_type_sf) = C4::AuthoritiesMarc::get_auth_type_location();
2709         my $authref = C4::AuthoritiesMarc::GetAuthType($record->subfield($auth_type_tag, $auth_type_sf));
2710         warn "ERROR : authtype undefined for ".$record->as_formatted unless $authref;
2711         $title = $record->subfield($authref->{auth_tag_to_report},'a');
2712         $index{'mainmainentry'} = $authref->{auth_tag_to_report}.'a';
2713         $index{'mainentry'}     = $authref->{auth_tag_to_report}.'*';
2714         $index{'auth_type'}    = "${auth_type_tag}${auth_type_sf}";
2715     }
2716
2717     # remove blancks comma (that could cause problem when decoding the string for CQL retrieval) and regexp specific values
2718     $title =~ s/ |\.|,|;|\[|\]|\(|\)|\*|-|'|:|=|\r|\n//g;
2719     # limit to 10 char, should be enough, and limit the DB size
2720     $title = substr($title,0,10);
2721     #parse each field
2722     my $sth2=$dbh->prepare('SELECT biblionumbers FROM nozebra WHERE server=? AND indexname=? AND value=?');
2723     foreach my $field ($record->fields()) {
2724         #parse each subfield
2725         ###FIXME: impossible to index a 001-009 value with NoZebra
2726         next if $field->tag <10;
2727         foreach my $subfield ($field->subfields()) {
2728             my $tag = $field->tag();
2729             my $subfieldcode = $subfield->[0];
2730             my $indexed=0;
2731 #             warn "INDEXING :".$subfield->[1];
2732             # check each index to see if the subfield is stored somewhere
2733             # otherwise, store it in __RAW__ index
2734             foreach my $key (keys %index) {
2735 #                 warn "examining $key index : ".$index{$key}." for $tag $subfieldcode";
2736                 if ($index{$key} =~ /$tag\*/ or $index{$key} =~ /$tag$subfieldcode/) {
2737                     $indexed=1;
2738                     my $line= lc $subfield->[1];
2739                     # remove meaningless value in the field...
2740                     $line =~ s/-|\.|\?|,|;|!|'|\(|\)|\[|\]|{|}|"|<|>|&|\+|\*|\/|=|:|\r|\n/ /g;
2741                     # ... and split in words
2742                     foreach (split / /,$line) {
2743                         next unless $_; # skip  empty values (multiple spaces)
2744                         # if the entry is already here, improve weight
2745 #                         warn "managing $_";
2746                         if ( exists $result{$key}->{$_} && $result{$key}->{"$_"} =~ /$biblionumber,\Q$title\E\-(\d+);/) {
2747                             my $weight = $1 + 1;
2748                             $result{$key}->{"$_"} =~ s/$biblionumber,\Q$title\E\-(\d+);//g;
2749                             $result{$key}->{"$_"} .= "$biblionumber,$title-$weight;";
2750                         } else {
2751                             # get the value if it exist in the nozebra table, otherwise, create it
2752                             $sth2->execute($server,$key,$_);
2753                             my $existing_biblionumbers = $sth2->fetchrow;
2754                             # it exists
2755                             if ($existing_biblionumbers) {
2756                                 $result{$key}->{"$_"} =$existing_biblionumbers;
2757                                 my $weight = defined $1 ? $1 + 1 : 1;
2758                                 $result{$key}->{"$_"} =~ s/$biblionumber,\Q$title\E\-(\d+);//g;
2759                                 $result{$key}->{"$_"} .= "$biblionumber,$title-$weight;";
2760                             # create a new ligne for this entry
2761                             } else {
2762 #                             warn "INSERT : $server / $key / $_";
2763                                 $dbh->do('INSERT INTO nozebra SET server='.$dbh->quote($server).', indexname='.$dbh->quote($key).',value='.$dbh->quote($_));
2764                                 $result{$key}->{"$_"}.="$biblionumber,$title-1;";
2765                             }
2766                         }
2767                     }
2768                 }
2769             }
2770             # the subfield is not indexed, store it in __RAW__ index anyway
2771             unless ($indexed) {
2772                 my $line= lc $subfield->[1];
2773                 $line =~ s/-|\.|\?|,|;|!|'|\(|\)|\[|\]|{|}|"|<|>|&|\+|\*|\/|=|:|\r|\n/ /g;
2774                 # ... and split in words
2775                 foreach (split / /,$line) {
2776                     next unless $_; # skip  empty values (multiple spaces)
2777                     # if the entry is already here, improve weight
2778                     my $tmpstr = $result{'__RAW__'}->{"$_"} || "";
2779                     if ($tmpstr =~ /$biblionumber,\Q$title\E\-(\d+);/) {
2780                         my $weight=$1+1;
2781                         $result{'__RAW__'}->{"$_"} =~ s/$biblionumber,\Q$title\E\-(\d+);//;
2782                         $result{'__RAW__'}->{"$_"} .= "$biblionumber,$title-$weight;";
2783                     } else {
2784                         # get the value if it exist in the nozebra table, otherwise, create it
2785                         $sth2->execute($server,'__RAW__',$_);
2786                         my $existing_biblionumbers = $sth2->fetchrow;
2787                         # it exists
2788                         if ($existing_biblionumbers) {
2789                             $result{'__RAW__'}->{"$_"} =$existing_biblionumbers;
2790                             my $weight = ($1 ? $1 : 0) + 1;
2791                             $result{'__RAW__'}->{"$_"} =~ s/$biblionumber,\Q$title\E\-(\d+);//;
2792                             $result{'__RAW__'}->{"$_"} .= "$biblionumber,$title-$weight;";
2793                         # create a new ligne for this entry
2794                         } else {
2795                             $dbh->do('INSERT INTO nozebra SET server='.$dbh->quote($server).',  indexname="__RAW__",value='.$dbh->quote($_));
2796                             $result{'__RAW__'}->{"$_"}.="$biblionumber,$title-1;";
2797                         }
2798                     }
2799                 }
2800             }
2801         }
2802     }
2803     return %result;
2804 }
2805
2806
2807 =head2 _find_value
2808
2809 =over 4
2810
2811 ($indicators, $value) = _find_value($tag, $subfield, $record,$encoding);
2812
2813 Find the given $subfield in the given $tag in the given
2814 MARC::Record $record.  If the subfield is found, returns
2815 the (indicators, value) pair; otherwise, (undef, undef) is
2816 returned.
2817
2818 PROPOSITION :
2819 Such a function is used in addbiblio AND additem and serial-edit and maybe could be used in Authorities.
2820 I suggest we export it from this module.
2821
2822 =back
2823
2824 =cut
2825
2826 sub _find_value {
2827     my ( $tagfield, $insubfield, $record, $encoding ) = @_;
2828     my @result;
2829     my $indicator;
2830     if ( $tagfield < 10 ) {
2831         if ( $record->field($tagfield) ) {
2832             push @result, $record->field($tagfield)->data();
2833         }
2834         else {
2835             push @result, "";
2836         }
2837     }
2838     else {
2839         foreach my $field ( $record->field($tagfield) ) {
2840             my @subfields = $field->subfields();
2841             foreach my $subfield (@subfields) {
2842                 if ( @$subfield[0] eq $insubfield ) {
2843                     push @result, @$subfield[1];
2844                     $indicator = $field->indicator(1) . $field->indicator(2);
2845                 }
2846             }
2847         }
2848     }
2849     return ( $indicator, @result );
2850 }
2851
2852 =head2 _koha_marc_update_bib_ids
2853
2854 =over 4
2855
2856 _koha_marc_update_bib_ids($record, $frameworkcode, $biblionumber, $biblioitemnumber);
2857
2858 Internal function to add or update biblionumber and biblioitemnumber to
2859 the MARC XML.
2860
2861 =back
2862
2863 =cut
2864
2865 sub _koha_marc_update_bib_ids {
2866     my ($record, $frameworkcode, $biblionumber, $biblioitemnumber) = @_;
2867
2868     # we must add bibnum and bibitemnum in MARC::Record...
2869     # we build the new field with biblionumber and biblioitemnumber
2870     # we drop the original field
2871     # we add the new builded field.
2872     my ($biblio_tag, $biblio_subfield ) = GetMarcFromKohaField("biblio.biblionumber",$frameworkcode);
2873     my ($biblioitem_tag, $biblioitem_subfield ) = GetMarcFromKohaField("biblioitems.biblioitemnumber",$frameworkcode);
2874
2875     if ($biblio_tag != $biblioitem_tag) {
2876         # biblionumber & biblioitemnumber are in different fields
2877
2878         # deal with biblionumber
2879         my ($new_field, $old_field);
2880         if ($biblio_tag < 10) {
2881             $new_field = MARC::Field->new( $biblio_tag, $biblionumber );
2882         } else {
2883             $new_field =
2884               MARC::Field->new( $biblio_tag, '', '',
2885                 "$biblio_subfield" => $biblionumber );
2886         }
2887
2888         # drop old field and create new one...
2889         $old_field = $record->field($biblio_tag);
2890         $record->delete_field($old_field) if $old_field;
2891         $record->append_fields($new_field);
2892
2893         # deal with biblioitemnumber
2894         if ($biblioitem_tag < 10) {
2895             $new_field = MARC::Field->new( $biblioitem_tag, $biblioitemnumber, );
2896         } else {
2897             $new_field =
2898               MARC::Field->new( $biblioitem_tag, '', '',
2899                 "$biblioitem_subfield" => $biblioitemnumber, );
2900         }
2901         # drop old field and create new one...
2902         $old_field = $record->field($biblioitem_tag);
2903         $record->delete_field($old_field) if $old_field;
2904         $record->insert_fields_ordered($new_field);
2905
2906     } else {
2907         # biblionumber & biblioitemnumber are in the same field (can't be <10 as fields <10 have only 1 value)
2908         my $new_field = MARC::Field->new(
2909             $biblio_tag, '', '',
2910             "$biblio_subfield" => $biblionumber,
2911             "$biblioitem_subfield" => $biblioitemnumber
2912         );
2913
2914         # drop old field and create new one...
2915         my $old_field = $record->field($biblio_tag);
2916         $record->delete_field($old_field) if $old_field;
2917         $record->insert_fields_ordered($new_field);
2918     }
2919 }
2920
2921 =head2 _koha_marc_update_biblioitem_cn_sort
2922
2923 =over 4
2924
2925 _koha_marc_update_biblioitem_cn_sort($marc, $biblioitem, $frameworkcode);
2926
2927 =back
2928
2929 Given a MARC bib record and the biblioitem hash, update the
2930 subfield that contains a copy of the value of biblioitems.cn_sort.
2931
2932 =cut
2933
2934 sub _koha_marc_update_biblioitem_cn_sort {
2935     my $marc = shift;
2936     my $biblioitem = shift;
2937     my $frameworkcode= shift;
2938
2939     my ($biblioitem_tag, $biblioitem_subfield ) = GetMarcFromKohaField("biblioitems.cn_sort",$frameworkcode);
2940     return unless $biblioitem_tag;
2941
2942     my ($cn_sort) = GetClassSort($biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
2943
2944     if (my $field = $marc->field($biblioitem_tag)) {
2945         $field->delete_subfield(code => $biblioitem_subfield);
2946         if ($cn_sort ne '') {
2947             $field->add_subfields($biblioitem_subfield => $cn_sort);
2948         }
2949     } else {
2950         # if we get here, no biblioitem tag is present in the MARC record, so
2951         # we'll create it if $cn_sort is not empty -- this would be
2952         # an odd combination of events, however
2953         if ($cn_sort) {
2954             $marc->insert_grouped_field(MARC::Field->new($biblioitem_tag, ' ', ' ', $biblioitem_subfield => $cn_sort));
2955         }
2956     }
2957 }
2958
2959 =head2 _koha_add_biblio
2960
2961 =over 4
2962
2963 my ($biblionumber,$error) = _koha_add_biblio($dbh,$biblioitem);
2964
2965 Internal function to add a biblio ($biblio is a hash with the values)
2966
2967 =back
2968
2969 =cut
2970
2971 sub _koha_add_biblio {
2972     my ( $dbh, $biblio, $frameworkcode ) = @_;
2973
2974     my $error;
2975
2976     # set the series flag
2977     my $serial = 0;
2978     if ( $biblio->{'seriestitle'} ) { $serial = 1 };
2979
2980     my $query = 
2981         "INSERT INTO biblio
2982         SET frameworkcode = ?,
2983             author = ?,
2984             title = ?,
2985             unititle =?,
2986             notes = ?,
2987             serial = ?,
2988             seriestitle = ?,
2989             copyrightdate = ?,
2990             datecreated=NOW(),
2991             abstract = ?
2992         ";
2993     my $sth = $dbh->prepare($query);
2994     $sth->execute(
2995         $frameworkcode,
2996         $biblio->{'author'},
2997         $biblio->{'title'},
2998         $biblio->{'unititle'},
2999         $biblio->{'notes'},
3000         $serial,
3001         $biblio->{'seriestitle'},
3002         $biblio->{'copyrightdate'},
3003         $biblio->{'abstract'}
3004     );
3005
3006     my $biblionumber = $dbh->{'mysql_insertid'};
3007     if ( $dbh->errstr ) {
3008         $error.="ERROR in _koha_add_biblio $query".$dbh->errstr;
3009         warn $error;
3010     }
3011
3012     $sth->finish();
3013     #warn "LEAVING _koha_add_biblio: ".$biblionumber."\n";
3014     return ($biblionumber,$error);
3015 }
3016
3017 =head2 _koha_modify_biblio
3018
3019 =over 4
3020
3021 my ($biblionumber,$error) == _koha_modify_biblio($dbh,$biblio,$frameworkcode);
3022
3023 Internal function for updating the biblio table
3024
3025 =back
3026
3027 =cut
3028
3029 sub _koha_modify_biblio {
3030     my ( $dbh, $biblio, $frameworkcode ) = @_;
3031     my $error;
3032
3033     my $query = "
3034         UPDATE biblio
3035         SET    frameworkcode = ?,
3036                author = ?,
3037                title = ?,
3038                unititle = ?,
3039                notes = ?,
3040                serial = ?,
3041                seriestitle = ?,
3042                copyrightdate = ?,
3043                abstract = ?
3044         WHERE  biblionumber = ?
3045         "
3046     ;
3047     my $sth = $dbh->prepare($query);
3048     
3049     $sth->execute(
3050         $frameworkcode,
3051         $biblio->{'author'},
3052         $biblio->{'title'},
3053         $biblio->{'unititle'},
3054         $biblio->{'notes'},
3055         $biblio->{'serial'},
3056         $biblio->{'seriestitle'},
3057         $biblio->{'copyrightdate'},
3058         $biblio->{'abstract'},
3059         $biblio->{'biblionumber'}
3060     ) if $biblio->{'biblionumber'};
3061
3062     if ( $dbh->errstr || !$biblio->{'biblionumber'} ) {
3063         $error.="ERROR in _koha_modify_biblio $query".$dbh->errstr;
3064         warn $error;
3065     }
3066     return ( $biblio->{'biblionumber'},$error );
3067 }
3068
3069 =head2 _koha_modify_biblioitem_nonmarc
3070
3071 =over 4
3072
3073 my ($biblioitemnumber,$error) = _koha_modify_biblioitem_nonmarc( $dbh, $biblioitem );
3074
3075 Updates biblioitems row except for marc and marcxml, which should be changed
3076 via ModBiblioMarc
3077
3078 =back
3079
3080 =cut
3081
3082 sub _koha_modify_biblioitem_nonmarc {
3083     my ( $dbh, $biblioitem ) = @_;
3084     my $error;
3085
3086     # re-calculate the cn_sort, it may have changed
3087     my ($cn_sort) = GetClassSort($biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
3088
3089     my $query = 
3090     "UPDATE biblioitems 
3091     SET biblionumber    = ?,
3092         volume          = ?,
3093         number          = ?,
3094         itemtype        = ?,
3095         isbn            = ?,
3096         issn            = ?,
3097         publicationyear = ?,
3098         publishercode   = ?,
3099         volumedate      = ?,
3100         volumedesc      = ?,
3101         collectiontitle = ?,
3102         collectionissn  = ?,
3103         collectionvolume= ?,
3104         editionstatement= ?,
3105         editionresponsibility = ?,
3106         illus           = ?,
3107         pages           = ?,
3108         notes           = ?,
3109         size            = ?,
3110         place           = ?,
3111         lccn            = ?,
3112         url             = ?,
3113         cn_source       = ?,
3114         cn_class        = ?,
3115         cn_item         = ?,
3116         cn_suffix       = ?,
3117         cn_sort         = ?,
3118         totalissues     = ?
3119         where biblioitemnumber = ?
3120         ";
3121     my $sth = $dbh->prepare($query);
3122     $sth->execute(
3123         $biblioitem->{'biblionumber'},
3124         $biblioitem->{'volume'},
3125         $biblioitem->{'number'},
3126         $biblioitem->{'itemtype'},
3127         $biblioitem->{'isbn'},
3128         $biblioitem->{'issn'},
3129         $biblioitem->{'publicationyear'},
3130         $biblioitem->{'publishercode'},
3131         $biblioitem->{'volumedate'},
3132         $biblioitem->{'volumedesc'},
3133         $biblioitem->{'collectiontitle'},
3134         $biblioitem->{'collectionissn'},
3135         $biblioitem->{'collectionvolume'},
3136         $biblioitem->{'editionstatement'},
3137         $biblioitem->{'editionresponsibility'},
3138         $biblioitem->{'illus'},
3139         $biblioitem->{'pages'},
3140         $biblioitem->{'bnotes'},
3141         $biblioitem->{'size'},
3142         $biblioitem->{'place'},
3143         $biblioitem->{'lccn'},
3144         $biblioitem->{'url'},
3145         $biblioitem->{'biblioitems.cn_source'},
3146         $biblioitem->{'cn_class'},
3147         $biblioitem->{'cn_item'},
3148         $biblioitem->{'cn_suffix'},
3149         $cn_sort,
3150         $biblioitem->{'totalissues'},
3151         $biblioitem->{'biblioitemnumber'}
3152     );
3153     if ( $dbh->errstr ) {
3154         $error.="ERROR in _koha_modify_biblioitem_nonmarc $query".$dbh->errstr;
3155         warn $error;
3156     }
3157     return ($biblioitem->{'biblioitemnumber'},$error);
3158 }
3159
3160 =head2 _koha_add_biblioitem
3161
3162 =over 4
3163
3164 my ($biblioitemnumber,$error) = _koha_add_biblioitem( $dbh, $biblioitem );
3165
3166 Internal function to add a biblioitem
3167
3168 =back
3169
3170 =cut
3171
3172 sub _koha_add_biblioitem {
3173     my ( $dbh, $biblioitem ) = @_;
3174     my $error;
3175
3176     my ($cn_sort) = GetClassSort($biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
3177     my $query =
3178     "INSERT INTO biblioitems SET
3179         biblionumber    = ?,
3180         volume          = ?,
3181         number          = ?,
3182         itemtype        = ?,
3183         isbn            = ?,
3184         issn            = ?,
3185         publicationyear = ?,
3186         publishercode   = ?,
3187         volumedate      = ?,
3188         volumedesc      = ?,
3189         collectiontitle = ?,
3190         collectionissn  = ?,
3191         collectionvolume= ?,
3192         editionstatement= ?,
3193         editionresponsibility = ?,
3194         illus           = ?,
3195         pages           = ?,
3196         notes           = ?,
3197         size            = ?,
3198         place           = ?,
3199         lccn            = ?,
3200         marc            = ?,
3201         url             = ?,
3202         cn_source       = ?,
3203         cn_class        = ?,
3204         cn_item         = ?,
3205         cn_suffix       = ?,
3206         cn_sort         = ?,
3207         totalissues     = ?
3208         ";
3209     my $sth = $dbh->prepare($query);
3210     $sth->execute(
3211         $biblioitem->{'biblionumber'},
3212         $biblioitem->{'volume'},
3213         $biblioitem->{'number'},
3214         $biblioitem->{'itemtype'},
3215         $biblioitem->{'isbn'},
3216         $biblioitem->{'issn'},
3217         $biblioitem->{'publicationyear'},
3218         $biblioitem->{'publishercode'},
3219         $biblioitem->{'volumedate'},
3220         $biblioitem->{'volumedesc'},
3221         $biblioitem->{'collectiontitle'},
3222         $biblioitem->{'collectionissn'},
3223         $biblioitem->{'collectionvolume'},
3224         $biblioitem->{'editionstatement'},
3225         $biblioitem->{'editionresponsibility'},
3226         $biblioitem->{'illus'},
3227         $biblioitem->{'pages'},
3228         $biblioitem->{'bnotes'},
3229         $biblioitem->{'size'},
3230         $biblioitem->{'place'},
3231         $biblioitem->{'lccn'},
3232         $biblioitem->{'marc'},
3233         $biblioitem->{'url'},
3234         $biblioitem->{'biblioitems.cn_source'},
3235         $biblioitem->{'cn_class'},
3236         $biblioitem->{'cn_item'},
3237         $biblioitem->{'cn_suffix'},
3238         $cn_sort,
3239         $biblioitem->{'totalissues'}
3240     );
3241     my $bibitemnum = $dbh->{'mysql_insertid'};
3242     if ( $dbh->errstr ) {
3243         $error.="ERROR in _koha_add_biblioitem $query".$dbh->errstr;
3244         warn $error;
3245     }
3246     $sth->finish();
3247     return ($bibitemnum,$error);
3248 }
3249
3250 =head2 _koha_delete_biblio
3251
3252 =over 4
3253
3254 $error = _koha_delete_biblio($dbh,$biblionumber);
3255
3256 Internal sub for deleting from biblio table -- also saves to deletedbiblio
3257
3258 C<$dbh> - the database handle
3259 C<$biblionumber> - the biblionumber of the biblio to be deleted
3260
3261 =back
3262
3263 =cut
3264
3265 # FIXME: add error handling
3266
3267 sub _koha_delete_biblio {
3268     my ( $dbh, $biblionumber ) = @_;
3269
3270     # get all the data for this biblio
3271     my $sth = $dbh->prepare("SELECT * FROM biblio WHERE biblionumber=?");
3272     $sth->execute($biblionumber);
3273
3274     if ( my $data = $sth->fetchrow_hashref ) {
3275
3276         # save the record in deletedbiblio
3277         # find the fields to save
3278         my $query = "INSERT INTO deletedbiblio SET ";
3279         my @bind  = ();
3280         foreach my $temp ( keys %$data ) {
3281             $query .= "$temp = ?,";
3282             push( @bind, $data->{$temp} );
3283         }
3284
3285         # replace the last , by ",?)"
3286         $query =~ s/\,$//;
3287         my $bkup_sth = $dbh->prepare($query);
3288         $bkup_sth->execute(@bind);
3289         $bkup_sth->finish;
3290
3291         # delete the biblio
3292         my $del_sth = $dbh->prepare("DELETE FROM biblio WHERE biblionumber=?");
3293         $del_sth->execute($biblionumber);
3294         $del_sth->finish;
3295     }
3296     $sth->finish;
3297     return undef;
3298 }
3299
3300 =head2 _koha_delete_biblioitems
3301
3302 =over 4
3303
3304 $error = _koha_delete_biblioitems($dbh,$biblioitemnumber);
3305
3306 Internal sub for deleting from biblioitems table -- also saves to deletedbiblioitems
3307
3308 C<$dbh> - the database handle
3309 C<$biblionumber> - the biblioitemnumber of the biblioitem to be deleted
3310
3311 =back
3312
3313 =cut
3314
3315 # FIXME: add error handling
3316
3317 sub _koha_delete_biblioitems {
3318     my ( $dbh, $biblioitemnumber ) = @_;
3319
3320     # get all the data for this biblioitem
3321     my $sth =
3322       $dbh->prepare("SELECT * FROM biblioitems WHERE biblioitemnumber=?");
3323     $sth->execute($biblioitemnumber);
3324
3325     if ( my $data = $sth->fetchrow_hashref ) {
3326
3327         # save the record in deletedbiblioitems
3328         # find the fields to save
3329         my $query = "INSERT INTO deletedbiblioitems SET ";
3330         my @bind  = ();
3331         foreach my $temp ( keys %$data ) {
3332             $query .= "$temp = ?,";
3333             push( @bind, $data->{$temp} );
3334         }
3335
3336         # replace the last , by ",?)"
3337         $query =~ s/\,$//;
3338         my $bkup_sth = $dbh->prepare($query);
3339         $bkup_sth->execute(@bind);
3340         $bkup_sth->finish;
3341
3342         # delete the biblioitem
3343         my $del_sth =
3344           $dbh->prepare("DELETE FROM biblioitems WHERE biblioitemnumber=?");
3345         $del_sth->execute($biblioitemnumber);
3346         $del_sth->finish;
3347     }
3348     $sth->finish;
3349     return undef;
3350 }
3351
3352 =head1 UNEXPORTED FUNCTIONS
3353
3354 =head2 ModBiblioMarc
3355
3356     &ModBiblioMarc($newrec,$biblionumber,$frameworkcode);
3357     
3358     Add MARC data for a biblio to koha 
3359     
3360     Function exported, but should NOT be used, unless you really know what you're doing
3361
3362 =cut
3363
3364 sub ModBiblioMarc {
3365     
3366 # pass the MARC::Record to this function, and it will create the records in the marc field
3367     my ( $record, $biblionumber, $frameworkcode ) = @_;
3368     my $dbh = C4::Context->dbh;
3369     my @fields = $record->fields();
3370     if ( !$frameworkcode ) {
3371         $frameworkcode = "";
3372     }
3373     my $sth =
3374       $dbh->prepare("UPDATE biblio SET frameworkcode=? WHERE biblionumber=?");
3375     $sth->execute( $frameworkcode, $biblionumber );
3376     $sth->finish;
3377     my $encoding = C4::Context->preference("marcflavour");
3378
3379     # deal with UNIMARC field 100 (encoding) : create it if needed & set encoding to unicode
3380     if ( $encoding eq "UNIMARC" ) {
3381         my $string = $record->subfield( 100, "a" );
3382         if ( ($string) && ( length($record->subfield( 100, "a" )) == 35 ) ) {
3383             my $f100 = $record->field(100);
3384             $record->delete_field($f100);
3385         }
3386         else {
3387             $string = POSIX::strftime( "%Y%m%d", localtime );
3388             $string =~ s/\-//g;
3389             $string = sprintf( "%-*s", 35, $string );
3390         }
3391         substr( $string, 22, 6, "frey50" );
3392         unless ( $record->subfield( 100, "a" ) ) {
3393             $record->insert_grouped_field(
3394                 MARC::Field->new( 100, "", "", "a" => $string ) );
3395         }
3396     }
3397     my $oldRecord;
3398     if (C4::Context->preference("NoZebra")) {
3399         # only NoZebra indexing needs to have
3400         # the previous version of the record
3401         $oldRecord = GetMarcBiblio($biblionumber);
3402     }
3403     $sth =
3404       $dbh->prepare(
3405         "UPDATE biblioitems SET marc=?,marcxml=? WHERE biblionumber=?");
3406     $sth->execute( $record->as_usmarc(), $record->as_xml_record($encoding),
3407         $biblionumber );
3408     $sth->finish;
3409     ModZebra($biblionumber,"specialUpdate","biblioserver",$oldRecord,$record);
3410     return $biblionumber;
3411 }
3412
3413 =head2 z3950_extended_services
3414
3415 z3950_extended_services($serviceType,$serviceOptions,$record);
3416
3417     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.
3418
3419 C<$serviceType> one of: itemorder,create,drop,commit,update,xmlupdate
3420
3421 C<$serviceOptions> a has of key/value pairs. For instance, if service_type is 'update', $service_options should contain:
3422
3423     action => update action, one of specialUpdate, recordInsert, recordReplace, recordDelete, elementUpdate.
3424
3425 and maybe
3426
3427     recordidOpaque => Opaque Record ID (user supplied) or recordidNumber => Record ID number (system number).
3428     syntax => the record syntax (transfer syntax)
3429     databaseName = Database from connection object
3430
3431     To set serviceOptions, call set_service_options($serviceType)
3432
3433 C<$record> the record, if one is needed for the service type
3434
3435     A record should be in XML. You can convert it to XML from MARC by running it through marc2xml().
3436
3437 =cut
3438
3439 sub z3950_extended_services {
3440     my ( $server, $serviceType, $action, $serviceOptions ) = @_;
3441
3442     # get our connection object
3443     my $Zconn = C4::Context->Zconn( $server, 0, 1 );
3444
3445     # create a new package object
3446     my $Zpackage = $Zconn->package();
3447
3448     # set our options
3449     $Zpackage->option( action => $action );
3450
3451     if ( $serviceOptions->{'databaseName'} ) {
3452         $Zpackage->option( databaseName => $serviceOptions->{'databaseName'} );
3453     }
3454     if ( $serviceOptions->{'recordIdNumber'} ) {
3455         $Zpackage->option(
3456             recordIdNumber => $serviceOptions->{'recordIdNumber'} );
3457     }
3458     if ( $serviceOptions->{'recordIdOpaque'} ) {
3459         $Zpackage->option(
3460             recordIdOpaque => $serviceOptions->{'recordIdOpaque'} );
3461     }
3462
3463  # this is an ILL request (Zebra doesn't support it, but Koha could eventually)
3464  #if ($serviceType eq 'itemorder') {
3465  #   $Zpackage->option('contact-name' => $serviceOptions->{'contact-name'});
3466  #   $Zpackage->option('contact-phone' => $serviceOptions->{'contact-phone'});
3467  #   $Zpackage->option('contact-email' => $serviceOptions->{'contact-email'});
3468  #   $Zpackage->option('itemorder-item' => $serviceOptions->{'itemorder-item'});
3469  #}
3470
3471     if ( $serviceOptions->{record} ) {
3472         $Zpackage->option( record => $serviceOptions->{record} );
3473
3474         # can be xml or marc
3475         if ( $serviceOptions->{'syntax'} ) {
3476             $Zpackage->option( syntax => $serviceOptions->{'syntax'} );
3477         }
3478     }
3479
3480     # send the request, handle any exception encountered
3481     eval { $Zpackage->send($serviceType) };
3482     if ( $@ && $@->isa("ZOOM::Exception") ) {
3483         return "error:  " . $@->code() . " " . $@->message() . "\n";
3484     }
3485
3486     # free up package resources
3487     $Zpackage->destroy();
3488 }
3489
3490 =head2 set_service_options
3491
3492 my $serviceOptions = set_service_options($serviceType);
3493
3494 C<$serviceType> itemorder,create,drop,commit,update,xmlupdate
3495
3496 Currently, we only support 'create', 'commit', and 'update'. 'drop' support will be added as soon as Zebra supports it.
3497
3498 =cut
3499
3500 sub set_service_options {
3501     my ($serviceType) = @_;
3502     my $serviceOptions;
3503
3504 # FIXME: This needs to be an OID ... if we ever need 'syntax' this sub will need to change
3505 #   $serviceOptions->{ 'syntax' } = ''; #zebra doesn't support syntaxes other than xml
3506
3507     if ( $serviceType eq 'commit' ) {
3508
3509         # nothing to do
3510     }
3511     if ( $serviceType eq 'create' ) {
3512
3513         # nothing to do
3514     }
3515     if ( $serviceType eq 'drop' ) {
3516         die "ERROR: 'drop' not currently supported (by Zebra)";
3517     }
3518     return $serviceOptions;
3519 }
3520
3521 =head3 get_biblio_authorised_values
3522
3523   find the types and values for all authorised values assigned to this biblio.
3524
3525   parameters:
3526     biblionumber
3527     MARC::Record of the bib
3528
3529   returns: a hashref mapping the authorised value to the value set for this biblionumber
3530
3531       $authorised_values = {
3532                              'Scent'     => 'flowery',
3533                              'Audience'  => 'Young Adult',
3534                              'itemtypes' => 'SER',
3535                            };
3536
3537   Notes: forlibrarian should probably be passed in, and called something different.
3538
3539
3540 =cut
3541
3542 sub get_biblio_authorised_values {
3543     my $biblionumber = shift;
3544     my $record       = shift;
3545     
3546     my $forlibrarian = 1; # are we in staff or opac?
3547     my $frameworkcode = GetFrameworkCode( $biblionumber );
3548
3549     my $authorised_values;
3550
3551     my $tagslib = GetMarcStructure( $forlibrarian, $frameworkcode )
3552       or return $authorised_values;
3553
3554     # assume that these entries in the authorised_value table are bibliolevel.
3555     # ones that start with 'item%' are item level.
3556     my $query = q(SELECT distinct authorised_value, kohafield
3557                     FROM marc_subfield_structure
3558                     WHERE authorised_value !=''
3559                       AND (kohafield like 'biblio%'
3560                        OR  kohafield like '') );
3561     my $bibliolevel_authorised_values = C4::Context->dbh->selectall_hashref( $query, 'authorised_value' );
3562     
3563     foreach my $tag ( keys( %$tagslib ) ) {
3564         foreach my $subfield ( keys( %{$tagslib->{ $tag }} ) ) {
3565             # warn "checking $subfield. type is: " . ref $tagslib->{ $tag }{ $subfield };
3566             if ( 'HASH' eq ref $tagslib->{ $tag }{ $subfield } ) {
3567                 if ( defined $tagslib->{ $tag }{ $subfield }{'authorised_value'} && exists $bibliolevel_authorised_values->{ $tagslib->{ $tag }{ $subfield }{'authorised_value'} } ) {
3568                     if ( defined $record->field( $tag ) ) {
3569                         my $this_subfield_value = $record->field( $tag )->subfield( $subfield );
3570                         if ( defined $this_subfield_value ) {
3571                             $authorised_values->{ $tagslib->{ $tag }{ $subfield }{'authorised_value'} } = $this_subfield_value;
3572                         }
3573                     }
3574                 }
3575             }
3576         }
3577     }
3578     # warn ( Data::Dumper->Dump( [ $authorised_values ], [ 'authorised_values' ] ) );
3579     return $authorised_values;
3580 }
3581
3582
3583 1;
3584
3585 __END__
3586
3587 =head1 AUTHOR
3588
3589 Koha Developement team <info@koha.org>
3590
3591 Paul POULAIN paul.poulain@free.fr
3592
3593 Joshua Ferraro jmf@liblime.com
3594
3595 =cut