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