New styles for bulk hold and bulk tag inputs on search results page.
[koha.git] / cataloguing / addbiblio.pl
1 #!/usr/bin/perl 
2
3
4 # Copyright 2000-2002 Katipo Communications
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21 use strict;
22 use CGI;
23 use C4::Output;
24 use C4::Auth;
25 use C4::Biblio;
26 use C4::Search;
27 use C4::AuthoritiesMarc;
28 use C4::Context;
29 use MARC::Record;
30 use C4::Log;
31 use C4::Koha;    # XXX subfield_is_koha_internal_p
32 use C4::Branch;    # XXX subfield_is_koha_internal_p
33 use C4::ClassSource;
34 use C4::ImportBatch;
35 use C4::Charset;
36
37 use Date::Calc qw(Today);
38 use MARC::File::USMARC;
39 use MARC::File::XML;
40
41 if ( C4::Context->preference('marcflavour') eq 'UNIMARC' ) {
42     MARC::File::XML->default_record_format('UNIMARC');
43 }
44
45 our($tagslib,$authorised_values_sth,$is_a_modif,$usedTagsLib,$mandatory_z3950);
46
47 =item MARCfindbreeding
48
49     $record = MARCfindbreeding($breedingid);
50
51 Look up the import record repository for the record with
52 record with id $breedingid.  If found, returns the decoded
53 MARC::Record; otherwise, -1 is returned (FIXME).
54 Returns as second parameter the character encoding.
55
56 =cut
57
58 sub MARCfindbreeding {
59     my ( $id ) = @_;
60     my ($marc, $encoding) = GetImportRecordMarc($id);
61     # remove the - in isbn, koha store isbn without any -
62     if ($marc) {
63         my $record = MARC::Record->new_from_usmarc($marc);
64         my ($isbnfield,$isbnsubfield) = GetMarcFromKohaField('biblioitems.isbn','');
65         if ( $record->field($isbnfield) ) {
66             foreach my $field ( $record->field($isbnfield) ) {
67                 foreach my $subfield ( $field->subfield($isbnsubfield) ) {
68                     my $newisbn = $field->subfield($isbnsubfield);
69                     $newisbn =~ s/-//g;
70                     $field->update( $isbnsubfield => $newisbn );
71                 }
72             }
73         }
74         # fix the unimarc 100 coded field (with unicode information)
75         if (C4::Context->preference('marcflavour') eq 'UNIMARC' && $record->subfield(100,'a')) {
76             my $f100a=$record->subfield(100,'a');
77             my $f100 = $record->field(100);
78             my $f100temp = $f100->as_string;
79             $record->delete_field($f100);
80             if ( length($f100temp) > 28 ) {
81                 substr( $f100temp, 26, 2, "50" );
82                 $f100->update( 'a' => $f100temp );
83                 my $f100 = MARC::Field->new( '100', '', '', 'a' => $f100temp );
84                 $record->insert_fields_ordered($f100);
85             }
86         }
87                 
88         if ( !defined(ref($record)) ) {
89             return -1;
90         }
91         else {
92             # normalize author : probably UNIMARC specific...
93             if (    C4::Context->preference("z3950NormalizeAuthor")
94                 and C4::Context->preference("z3950AuthorAuthFields") )
95             {
96                 my ( $tag, $subfield ) = GetMarcFromKohaField("biblio.author", '');
97
98  #                 my $summary = C4::Context->preference("z3950authortemplate");
99                 my $auth_fields =
100                   C4::Context->preference("z3950AuthorAuthFields");
101                 my @auth_fields = split /,/, $auth_fields;
102                 my $field;
103
104                 if ( $record->field($tag) ) {
105                     foreach my $tmpfield ( $record->field($tag)->subfields ) {
106
107        #                        foreach my $subfieldcode ($tmpfield->subfields){
108                         my $subfieldcode  = shift @$tmpfield;
109                         my $subfieldvalue = shift @$tmpfield;
110                         if ($field) {
111                             $field->add_subfields(
112                                 "$subfieldcode" => $subfieldvalue )
113                               if ( $subfieldcode ne $subfield );
114                         }
115                         else {
116                             $field =
117                               MARC::Field->new( $tag, "", "",
118                                 $subfieldcode => $subfieldvalue )
119                               if ( $subfieldcode ne $subfield );
120                         }
121                     }
122                 }
123                 $record->delete_field( $record->field($tag) );
124                 foreach my $fieldtag (@auth_fields) {
125                     next unless ( $record->field($fieldtag) );
126                     my $lastname  = $record->field($fieldtag)->subfield('a');
127                     my $firstname = $record->field($fieldtag)->subfield('b');
128                     my $title     = $record->field($fieldtag)->subfield('c');
129                     my $number    = $record->field($fieldtag)->subfield('d');
130                     if ($title) {
131
132 #                         $field->add_subfields("$subfield"=>"[ ".ucfirst($title).ucfirst($firstname)." ".$number." ]");
133                         $field->add_subfields(
134                                 "$subfield" => ucfirst($title) . " "
135                               . ucfirst($firstname) . " "
136                               . $number );
137                     }
138                     else {
139
140 #                       $field->add_subfields("$subfield"=>"[ ".ucfirst($firstname).", ".ucfirst($lastname)." ]");
141                         $field->add_subfields(
142                             "$subfield" => ucfirst($firstname) . ", "
143                               . ucfirst($lastname) );
144                     }
145                 }
146                 $record->insert_fields_ordered($field);
147             }
148             return $record, $encoding;
149         }
150     }
151     return -1;
152 }
153
154 =item build_authorized_values_list
155
156 =cut
157
158 sub build_authorized_values_list ($$$$$$$) {
159     my ( $tag, $subfield, $value, $dbh, $authorised_values_sth,$index_tag,$index_subfield ) = @_;
160
161     my @authorised_values;
162     my %authorised_lib;
163
164     # builds list, depending on authorised value...
165
166     #---- branch
167     if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
168         #Use GetBranches($onlymine)
169         my $onlymine=C4::Context->preference('IndependantBranches') && 
170                 C4::Context->userenv && 
171                 C4::Context->userenv->{flags}!=1 && 
172                 C4::Context->userenv->{branch};
173         my $branches = GetBranches($onlymine);
174         my @branchloop;
175         foreach my $thisbranch ( sort keys %$branches ) {
176             push @authorised_values, $thisbranch;
177             $authorised_lib{$thisbranch} = $branches->{$thisbranch}->{'branchname'};
178         }
179
180         #----- itemtypes
181     }
182     elsif ( $tagslib->{$tag}->{$subfield}->{authorised_value} eq "itemtypes" ) {
183         my $sth =
184           $dbh->prepare(
185             "select itemtype,description from itemtypes order by description");
186         $sth->execute;
187         push @authorised_values, ""
188           unless ( $tagslib->{$tag}->{$subfield}->{mandatory} );
189           
190         my $itemtype;
191         
192         while ( my ( $itemtype, $description ) = $sth->fetchrow_array ) {
193             push @authorised_values, $itemtype;
194             $authorised_lib{$itemtype} = $description;
195         }
196         $value = $itemtype unless ($value);
197
198           #---- class_sources
199     }
200     elsif ( $tagslib->{$tag}->{$subfield}->{authorised_value} eq "cn_source" ) {
201         push @authorised_values, ""
202           unless ( $tagslib->{$tag}->{$subfield}->{mandatory} );
203
204         my $class_sources = GetClassSources();
205
206         my $default_source = C4::Context->preference("DefaultClassificationSource");
207
208         foreach my $class_source (sort keys %$class_sources) {
209             next unless $class_sources->{$class_source}->{'used'} or
210                         ($value and $class_source eq $value) or
211                         ($class_source eq $default_source);
212             push @authorised_values, $class_source;
213             $authorised_lib{$class_source} = $class_sources->{$class_source}->{'description'};
214             $value = $class_source unless ($value);
215             $value = $default_source unless ($value);
216         }
217         #---- "true" authorised value
218     }
219     else {
220         $authorised_values_sth->execute(
221             $tagslib->{$tag}->{$subfield}->{authorised_value} );
222
223         push @authorised_values, ""
224           unless ( $tagslib->{$tag}->{$subfield}->{mandatory} );
225
226         while ( my ( $value, $lib ) = $authorised_values_sth->fetchrow_array ) {
227             push @authorised_values, $value;
228             $authorised_lib{$value} = $lib;
229         }
230     }
231     return CGI::scrolling_list(
232         -name     => "tag_".$tag."_subfield_".$subfield."_".$index_tag."_".$index_subfield,
233         -values   => \@authorised_values,
234         -default  => $value,
235         -labels   => \%authorised_lib,
236         -override => 1,
237         -size     => 1,
238         -multiple => 0,
239         -tabindex => 1,
240         -id       => "tag_".$tag."_subfield_".$subfield."_".$index_tag."_".$index_subfield,
241         -class    => "input_marceditor",
242     );
243 }
244
245 =item CreateKey
246
247     Create a random value to set it into the input name
248
249 =cut
250
251 sub CreateKey(){
252     return int(rand(1000000));
253 }
254
255 =item GetMandatoryFieldZ3950
256
257     This function return an hashref which containts all mandatory field
258     to search with z3950 server.
259     
260 =cut
261
262 sub GetMandatoryFieldZ3950($){
263     my $frameworkcode = shift;
264     my @isbn   = GetMarcFromKohaField('biblioitems.isbn',$frameworkcode);
265     my @title  = GetMarcFromKohaField('biblio.title',$frameworkcode);
266     my @author = GetMarcFromKohaField('biblio.author',$frameworkcode);
267     my @issn   = GetMarcFromKohaField('biblioitems.issn',$frameworkcode);
268     my @lccn   = GetMarcFromKohaField('biblioitems.lccn',$frameworkcode);
269     
270     return {
271         $isbn[0].$isbn[1]     => 'isbn',
272         $title[0].$title[1]   => 'title',
273         $author[0].$author[1] => 'author',
274         $issn[0].$issn[1]     => 'issn',
275         $lccn[0].$lccn[1]     => 'lccn',
276     };
277 }
278
279 =item create_input
280
281  builds the <input ...> entry for a subfield.
282
283 =cut
284
285 sub create_input {
286     my ( $tag, $subfield, $value, $index_tag, $tabloop, $rec, $authorised_values_sth,$cgi ) = @_;
287     
288     my $index_subfield = CreateKey(); # create a specifique key for each subfield
289
290     $value =~ s/"/&quot;/g;
291
292     # determine maximum length; 9999 bytes per ISO 2709 except for leader and MARC21 008
293     my $max_length = 9999;
294     if ($tag eq '000') {
295         $max_length = 24;
296     } elsif ($tag eq '008' and C4::Context->preference('marcflavour') eq 'MARC21')  {
297         $max_length = 40;
298     }
299
300     # if there is no value provided but a default value in parameters, get it
301     unless ($value) {
302         $value = $tagslib->{$tag}->{$subfield}->{defaultvalue};
303
304         # get today date & replace YYYY, MM, DD if provided in the default value
305         my ( $year, $month, $day ) = Today();
306         $month = sprintf( "%02d", $month );
307         $day   = sprintf( "%02d", $day );
308         $value =~ s/YYYY/$year/g;
309         $value =~ s/MM/$month/g;
310         $value =~ s/DD/$day/g;
311     }
312     my $dbh = C4::Context->dbh;
313
314     # map '@' as "subfield" label for fixed fields
315     # to something that's allowed in a div id.
316     my $id_subfield = $subfield;
317     $id_subfield = "00" if $id_subfield eq "@";
318
319     my %subfield_data = (
320         tag        => $tag,
321         subfield   => $id_subfield,
322         marc_lib   => substr( $tagslib->{$tag}->{$subfield}->{lib}, 0, 22 ),
323         marc_lib_plain => $tagslib->{$tag}->{$subfield}->{lib}, 
324         tag_mandatory  => $tagslib->{$tag}->{mandatory},
325         mandatory      => $tagslib->{$tag}->{$subfield}->{mandatory},
326         repeatable     => $tagslib->{$tag}->{$subfield}->{repeatable},
327         kohafield      => $tagslib->{$tag}->{$subfield}->{kohafield},
328         index          => $index_tag,
329         id             => "tag_".$tag."_subfield_".$id_subfield."_".$index_tag."_".$index_subfield,
330         value          => $value,
331         random         => CreateKey(),
332     );
333
334     if(exists $mandatory_z3950->{$tag.$subfield}){
335         $subfield_data{z3950_mandatory} = $mandatory_z3950->{$tag.$subfield};
336     }
337     # decide if the subfield must be expanded (visible) by default or not
338     # if it is mandatory, then expand. If it is hidden explicitly by the hidden flag, hidden anyway
339     $subfield_data{visibility} = "display:none;"
340         if (    ($tagslib->{$tag}->{$subfield}->{hidden} % 2 == 1) and $value ne ''
341             or ($value eq '' and !$tagslib->{$tag}->{$subfield}->{mandatory})
342         );
343     # always expand all subfields of a mandatory field
344     $subfield_data{visibility} = "" if $tagslib->{$tag}->{mandatory};
345     # it's an authorised field
346     if ( $tagslib->{$tag}->{$subfield}->{authorised_value} ) {
347         $subfield_data{marc_value} =
348           build_authorized_values_list( $tag, $subfield, $value, $dbh,
349             $authorised_values_sth,$index_tag,$index_subfield );
350
351     # it's a subfield $9 linking to an authority record - see bug 2206
352     }
353     elsif ($subfield eq "9" and
354            exists($tagslib->{$tag}->{'a'}->{authtypecode}) and
355            defined($tagslib->{$tag}->{'a'}->{authtypecode}) and
356            $tagslib->{$tag}->{'a'}->{authtypecode} ne '') {
357
358         $subfield_data{marc_value} =
359             "<input type=\"text\"
360                     id=\"".$subfield_data{id}."\"
361                     name=\"".$subfield_data{id}."\"
362                     value=\"$value\"
363                     class=\"input_marceditor\"
364                     tabindex=\"1\"
365                     size=\"5\"
366                     maxlength=\"$max_length\"
367                     readonly=\"readonly\"
368                     \/>";
369
370     # it's a thesaurus / authority field
371     }
372     elsif ( $tagslib->{$tag}->{$subfield}->{authtypecode} ) {
373      if (C4::Context->preference("BiblioAddsAuthorities")) {
374         $subfield_data{marc_value} =
375             "<input type=\"text\"
376                     id=\"".$subfield_data{id}."\"
377                     name=\"".$subfield_data{id}."\"
378                     value=\"$value\"
379                     class=\"input_marceditor\"
380                     tabindex=\"1\"
381                     size=\"67\"
382                     maxlength=\"$max_length\"
383                     \/>
384                     <a href=\"#\" class=\"buttonDot\"
385                         onclick=\"Dopop('/cgi-bin/koha/authorities/auth_finder.pl?authtypecode=".$tagslib->{$tag}->{$subfield}->{authtypecode}."&amp;index=$subfield_data{id}','$subfield_data{id}'); return false;\" tabindex=\"1\" title=\"Tag Editor\">...</a>
386             ";
387       } else {
388         $subfield_data{marc_value} =
389             "<input type=\"text\"
390                     id=\"".$subfield_data{id}."\"
391                     name=\"".$subfield_data{id}."\"
392                     value=\"$value\"
393                     class=\"input_marceditor\"
394                     tabindex=\"1\"
395                     size=\"67\"
396                     maxlength=\"$max_length\"
397                     readonly=\"readonly\"
398                     \/><a href=\"#\" class=\"buttonDot\"
399                         onclick=\"openAuth(this.parentNode.getElementsByTagName('input')[1].id,'".$tagslib->{$tag}->{$subfield}->{authtypecode}."'); return false;\" tabindex=\"1\" title=\"Tag Editor\">...</a>
400             ";
401       }
402     # it's a plugin field
403     }
404     elsif ( $tagslib->{$tag}->{$subfield}->{'value_builder'} ) {
405
406         # opening plugin. Just check wether we are on a developper computer on a production one
407         # (the cgidir differs)
408         my $cgidir = C4::Context->intranetdir . "/cgi-bin/cataloguing/value_builder";
409         unless ( opendir( DIR, "$cgidir" ) ) {
410             $cgidir = C4::Context->intranetdir . "/cataloguing/value_builder";
411             closedir( DIR );
412         }
413         my $plugin = $cgidir . "/" . $tagslib->{$tag}->{$subfield}->{'value_builder'};
414         if (do $plugin) {
415             my $extended_param = plugin_parameters( $dbh, $rec, $tagslib, $subfield_data{id}, $tabloop );
416             my ( $function_name, $javascript ) = plugin_javascript( $dbh, $rec, $tagslib, $subfield_data{id}, $tabloop );
417         
418             $subfield_data{marc_value} =
419                     "<input tabindex=\"1\"
420                             type=\"text\"
421                             id=\"".$subfield_data{id}."\"
422                             name=\"".$subfield_data{id}."\"
423                             value=\"$value\"
424                             class=\"input_marceditor\"
425                             onfocus=\"Focus$function_name($index_tag)\"
426                             size=\"67\"
427                             maxlength=\"$max_length\"
428                             onblur=\"Blur$function_name($index_tag); \" \/>
429                             <a href=\"#\" class=\"buttonDot\" onclick=\"Clic$function_name('$subfield_data{id}'); return false;\" tabindex=\"1\" title=\"Tag Editor\">...</a>
430                     $javascript";
431         } else {
432             warn "Plugin Failed: $plugin";
433             # supply default input form
434             $subfield_data{marc_value} =
435                 "<input type=\"text\"
436                         id=\"".$subfield_data{id}."\"
437                         name=\"".$subfield_data{id}."\"
438                         value=\"$value\"
439                         tabindex=\"1\"
440                         size=\"67\"
441                         maxlength=\"$max_length\"
442                         class=\"input_marceditor\"
443                 \/>
444                 ";
445         }
446         # it's an hidden field
447     }
448     elsif ( $tag eq '' ) {
449         $subfield_data{marc_value} =
450             "<input tabindex=\"1\"
451                     type=\"hidden\"
452                     id=\"".$subfield_data{id}."\"
453                     name=\"".$subfield_data{id}."\"
454                     size=\"67\"
455                     maxlength=\"$max_length\"
456                     value=\"$value\" \/>
457             ";
458     }
459     elsif ( $tagslib->{$tag}->{$subfield}->{'hidden'} ) {
460         $subfield_data{marc_value} =
461             "<input type=\"text\"
462                     id=\"".$subfield_data{id}."\"
463                     name=\"".$subfield_data{id}."\"
464                     class=\"input_marceditor\"
465                     tabindex=\"1\"
466                     size=\"67\"
467                     maxlength=\"$max_length\"
468                     value=\"$value\"
469             \/>";
470
471         # it's a standard field
472     }
473     else {
474         if (
475             length($value) > 100
476             or
477             ( C4::Context->preference("marcflavour") eq "UNIMARC" && $tag >= 300
478                 and $tag < 400 && $subfield eq 'a' )
479             or (    $tag >= 500
480                 and $tag < 600
481                 && C4::Context->preference("marcflavour") eq "MARC21" )
482           )
483         {
484             $subfield_data{marc_value} =
485                 "<textarea cols=\"70\"
486                            rows=\"4\"
487                            id=\"".$subfield_data{id}."\"
488                            name=\"".$subfield_data{id}."\"
489                            class=\"input_marceditor\"
490                            tabindex=\"1\"
491                            >$value</textarea>
492                 ";
493         }
494         else {
495             $subfield_data{marc_value} =
496                 "<input type=\"text\"
497                         id=\"".$subfield_data{id}."\"
498                         name=\"".$subfield_data{id}."\"
499                         value=\"$value\"
500                         tabindex=\"1\"
501                         size=\"67\"
502                         maxlength=\"$max_length\"
503                         class=\"input_marceditor\"
504                 \/>
505                 ";
506         }
507     }
508     $subfield_data{'index_subfield'} = $index_subfield;
509     return \%subfield_data;
510 }
511
512
513 =item format_indicator
514
515 Translate indicator value for output form - specifically, map
516 indicator = ' ' to ''.  This is for the convenience of a cataloger
517 using a mouse to select an indicator input.
518
519 =cut
520
521 sub format_indicator {
522     my $ind_value = shift;
523     return '' if not defined $ind_value;
524     return '' if $ind_value eq ' ';
525     return $ind_value;
526 }
527
528 sub build_tabs ($$$$$) {
529     my ( $template, $record, $dbh, $encoding,$input ) = @_;
530
531     # fill arrays
532     my @loop_data = ();
533     my $tag;
534
535     my $authorised_values_sth = $dbh->prepare(
536         "select authorised_value,lib
537         from authorised_values
538         where category=? order by lib"
539     );
540     
541     # in this array, we will push all the 10 tabs
542     # to avoid having 10 tabs in the template : they will all be in the same BIG_LOOP
543     my @BIG_LOOP;
544     my %seen;
545     my @tab_data; # all tags to display
546     
547     foreach my $used ( @$usedTagsLib ){
548         push @tab_data,$used->{tagfield} if not $seen{$used->{tagfield}};
549         $seen{$used->{tagfield}}++;
550     }
551         
552     my $max_num_tab=-1;
553     foreach(@$usedTagsLib){
554         if($_->{tab} > -1 && $_->{tab} >= $max_num_tab && $_->{tagfield} != '995'){ # FIXME : MARC21 ?
555             $max_num_tab = $_->{tab}; 
556         }
557     }
558     if($max_num_tab >= 9){
559         $max_num_tab = 9;
560     }
561     # loop through each tab 0 through 9
562     for ( my $tabloop = 0 ; $tabloop <= $max_num_tab ; $tabloop++ ) {
563         my @loop_data = (); #innerloop in the template.
564         my $i = 0;
565         foreach my $tag (@tab_data) {
566             $i++;
567             next if ! $tag;
568             my ($indicator1, $indicator2);
569             my $index_tag = CreateKey;
570
571             # if MARC::Record is not empty =>use it as master loop, then add missing subfields that should be in the tab.
572             # if MARC::Record is empty => use tab as master loop.
573             if ( $record ne -1 && ( $record->field($tag) || $tag eq '000' ) ) {
574                 my @fields;
575                 if ( $tag ne '000' ) {
576                     @fields = $record->field($tag);
577                 }
578                 else {
579                    push @fields, $record->leader(); # if tag == 000
580                 }
581                 # loop through each field
582                 foreach my $field (@fields) {
583                     
584                     my @subfields_data;
585                     if ( $tag < 10 ) {
586                         my ( $value, $subfield );
587                         if ( $tag ne '000' ) {
588                             $value    = $field->data();
589                             $subfield = "@";
590                         }
591                         else {
592                             $value    = $field;
593                             $subfield = '@';
594                         }
595                         next if ( $tagslib->{$tag}->{$subfield}->{tab} ne $tabloop );
596                         next
597                           if ( $tagslib->{$tag}->{$subfield}->{kohafield} eq
598                             'biblio.biblionumber' );
599                         push(
600                             @subfields_data,
601                             &create_input(
602                                 $tag, $subfield, $value, $index_tag, $tabloop, $record,
603                                 $authorised_values_sth,$input
604                             )
605                         );
606                     }
607                     else {
608                         my @subfields = $field->subfields();
609                         foreach my $subfieldcount ( 0 .. $#subfields ) {
610                             my $subfield = $subfields[$subfieldcount][0];
611                             my $value    = $subfields[$subfieldcount][1];
612                             next if ( length $subfield != 1 );
613                             next if ( $tagslib->{$tag}->{$subfield}->{tab} ne $tabloop );
614                             push(
615                                 @subfields_data,
616                                 &create_input(
617                                     $tag, $subfield, $value, $index_tag, $tabloop,
618                                     $record, $authorised_values_sth,$input
619                                 )
620                             );
621                         }
622                     }
623
624                     # now, loop again to add parameter subfield that are not in the MARC::Record
625                     foreach my $subfield ( sort( keys %{ $tagslib->{$tag} } ) )
626                     {
627                         next if ( length $subfield != 1 );
628                         next if ( $tagslib->{$tag}->{$subfield}->{tab} ne $tabloop );
629                         next if ( $tag < 10 );
630                         next
631                           if ( ( $tagslib->{$tag}->{$subfield}->{hidden} <= -4 )
632                             or ( $tagslib->{$tag}->{$subfield}->{hidden} >= 5 ) )
633                             and not ( $subfield eq "9" and
634                                       exists($tagslib->{$tag}->{'a'}->{authtypecode}) and
635                                       defined($tagslib->{$tag}->{'a'}->{authtypecode}) and
636                                       $tagslib->{$tag}->{'a'}->{authtypecode} ne ""
637                                     )
638                           ;    #check for visibility flag
639                                # if subfield is $9 in a field whose $a is authority-controlled,
640                                # always include in the form regardless of the hidden setting - bug 2206
641                         next if ( defined( $field->subfield($subfield) ) );
642                         push(
643                             @subfields_data,
644                             &create_input(
645                                 $tag, $subfield, '', $index_tag, $tabloop, $record,
646                                 $authorised_values_sth,$input
647                             )
648                         );
649                     }
650                     if ( $#subfields_data >= 0 ) {
651                         # build the tag entry.
652                         # note that the random() field is mandatory. Otherwise, on repeated fields, you'll 
653                         # have twice the same "name" value, and cgi->param() will return only one, making
654                         # all subfields to be merged in a single field.
655                         my %tag_data = (
656                             tag           => $tag,
657                             index         => $index_tag,
658                             tag_lib       => $tagslib->{$tag}->{lib},
659                             repeatable       => $tagslib->{$tag}->{repeatable},
660                             mandatory       => $tagslib->{$tag}->{mandatory},
661                             subfield_loop => \@subfields_data,
662                             fixedfield    => $tag < 10?1:0,
663                             random        => CreateKey,
664                         );
665                         if ($tag >= 010){ # no indicator for theses tag
666                            $tag_data{indicator1} = format_indicator($field->indicator(1)),
667                            $tag_data{indicator2} = format_indicator($field->indicator(2)),
668                         }
669                         push( @loop_data, \%tag_data );
670                     }
671                  } # foreach $field end
672
673             # if breeding is empty
674             }
675             else {
676                 my @subfields_data;
677                 foreach my $subfield ( sort( keys %{ $tagslib->{$tag} } ) ) {
678                     next if ( length $subfield != 1 );
679                     next
680                       if ( ( $tagslib->{$tag}->{$subfield}->{hidden} <= -5 )
681                         or ( $tagslib->{$tag}->{$subfield}->{hidden} >= 4 ) )
682                       and not ( $subfield eq "9" and
683                                 exists($tagslib->{$tag}->{'a'}->{authtypecode}) and
684                                 defined($tagslib->{$tag}->{'a'}->{authtypecode}) and
685                                 $tagslib->{$tag}->{'a'}->{authtypecode} ne ""
686                               )
687                       ;    #check for visibility flag
688                            # if subfield is $9 in a field whose $a is authority-controlled,
689                            # always include in the form regardless of the hidden setting - bug 2206
690                     next
691                       if ( $tagslib->{$tag}->{$subfield}->{tab} ne $tabloop );
692                     push(
693                         @subfields_data,
694                         &create_input(
695                             $tag, $subfield, '', $index_tag, $tabloop, $record,
696                             $authorised_values_sth,$input
697                         )
698                     );
699                 }
700                 if ( $#subfields_data >= 0 ) {
701                     my %tag_data = (
702                         tag              => $tag,
703                         index            => $index_tag,
704                         tag_lib          => $tagslib->{$tag}->{lib},
705                         repeatable       => $tagslib->{$tag}->{repeatable},
706                         mandatory       => $tagslib->{$tag}->{mandatory},
707                         indicator1       => $indicator1,
708                         indicator2       => $indicator2,
709                         subfield_loop    => \@subfields_data,
710                         tagfirstsubfield => $subfields_data[0],
711                         fixedfield       => $tag < 10?1:0,
712                     );
713                     
714                     push @loop_data, \%tag_data ;
715                 }
716             }
717         }
718         if ( $#loop_data >= 0 ) {
719             push @BIG_LOOP, {
720                 number    => $tabloop,
721                 innerloop => \@loop_data,
722             };
723         }
724     }
725     $template->param( BIG_LOOP => \@BIG_LOOP );
726 }
727
728 #
729 # sub that tries to find authorities linked to the biblio
730 # the sub :
731 #   - search in the authority DB for the same authid (in $9 of the biblio)
732 #   - search in the authority DB for the same 001 (in $3 of the biblio in UNIMARC)
733 #   - search in the authority DB for the same values (exactly) (in all subfields of the biblio)
734 # if the authority is found, the biblio is modified accordingly to be connected to the authority.
735 # if the authority is not found, it's added, and the biblio is then modified to be connected to the authority.
736 #
737
738 sub BiblioAddAuthorities{
739   my ( $record, $frameworkcode ) = @_;
740   my $dbh=C4::Context->dbh;
741   my $query=$dbh->prepare(qq|
742 SELECT authtypecode,tagfield
743 FROM marc_subfield_structure 
744 WHERE frameworkcode=? 
745 AND (authtypecode IS NOT NULL AND authtypecode<>\"\")|);
746 # SELECT authtypecode,tagfield
747 # FROM marc_subfield_structure 
748 # WHERE frameworkcode=? 
749 # AND (authtypecode IS NOT NULL OR authtypecode<>\"\")|);
750   $query->execute($frameworkcode);
751   my ($countcreated,$countlinked);
752   while (my $data=$query->fetchrow_hashref){
753     foreach my $field ($record->field($data->{tagfield})){
754       next if ($field->subfield('3')||$field->subfield('9'));
755       # No authorities id in the tag.
756       # Search if there is any authorities to link to.
757       my $query='at='.$data->{authtypecode}.' ';
758       map {$query.= ' and he,ext="'.$_->[1].'"' if ($_->[0]=~/[A-z]/)}  $field->subfields();
759       my ($error, $results, $total_hits)=SimpleSearch( $query, undef, undef, [ "authorityserver" ] );
760     # there is only 1 result 
761           if ( $error ) {
762         warn "BIBLIOADDSAUTHORITIES: $error";
763             return (0,0) ;
764           }
765       if ($results && scalar(@$results)==1) {
766         my $marcrecord = MARC::File::USMARC::decode($results->[0]);
767         $field->add_subfields('9'=>$marcrecord->field('001')->data);
768         $countlinked++;
769       } elsif (scalar(@$results)>1) {
770    #More than One result 
771    #This can comes out of a lack of a subfield.
772 #         my $marcrecord = MARC::File::USMARC::decode($results->[0]);
773 #         $record->field($data->{tagfield})->add_subfields('9'=>$marcrecord->field('001')->data);
774   $countlinked++;
775       } else {
776   #There are no results, build authority record, add it to Authorities, get authid and add it to 9
777   ###NOTICE : This is only valid if a subfield is linked to one and only one authtypecode     
778   ###NOTICE : This can be a problem. We should also look into other types and rejected forms.
779          my $authtypedata=GetAuthType($data->{authtypecode});
780          next unless $authtypedata;
781          my $marcrecordauth=MARC::Record->new();
782          my $authfield=MARC::Field->new($authtypedata->{auth_tag_to_report},'','',"a"=>"".$field->subfield('a'));
783          map { $authfield->add_subfields($_->[0]=>$_->[1]) if ($_->[0]=~/[A-z]/ && $_->[0] ne "a" )}  $field->subfields();
784          $marcrecordauth->insert_fields_ordered($authfield);
785
786          # bug 2317: ensure new authority knows it's using UTF-8; currently
787          # only need to do this for MARC21, as MARC::Record->as_xml_record() handles
788          # automatically for UNIMARC (by not transcoding)
789          # FIXME: AddAuthority() instead should simply explicitly require that the MARC::Record
790          # use UTF-8, but as of 2008-08-05, did not want to introduce that kind
791          # of change to a core API just before the 3.0 release.
792          if (C4::Context->preference('marcflavour') eq 'MARC21') {
793             SetMarcUnicodeFlag($marcrecordauth, 'MARC21');
794          }
795
796 #          warn "AUTH RECORD ADDED : ".$marcrecordauth->as_formatted;
797
798          my $authid=AddAuthority($marcrecordauth,'',$data->{authtypecode});
799          $countcreated++;
800          $field->add_subfields('9'=>$authid);
801       }
802     }  
803   }
804   return ($countlinked,$countcreated);
805 }
806
807 # ========================
808 #          MAIN
809 #=========================
810 my $input = new CGI;
811 my $error = $input->param('error');
812 my $biblionumber  = $input->param('biblionumber'); # if biblionumber exists, it's a modif, not a new biblio.
813 my $breedingid    = $input->param('breedingid');
814 my $z3950         = $input->param('z3950');
815 my $op            = $input->param('op');
816 my $mode          = $input->param('mode');
817 my $frameworkcode = $input->param('frameworkcode');
818 my $dbh           = C4::Context->dbh;
819
820 $frameworkcode = &GetFrameworkCode($biblionumber)
821   if ( $biblionumber and not($frameworkcode) );
822
823 $frameworkcode = '' if ( $frameworkcode eq 'Default' );
824 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
825     {
826         template_name   => "cataloguing/addbiblio.tmpl",
827         query           => $input,
828         type            => "intranet",
829         authnotrequired => 0,
830         flagsrequired   => { editcatalogue => 1 },
831     }
832 );
833
834 # Getting the list of all frameworks
835 # get framework list
836 my $frameworks = getframeworks;
837 my @frameworkcodeloop;
838 foreach my $thisframeworkcode ( keys %$frameworks ) {
839         my %row = (
840                 value         => $thisframeworkcode,
841                 frameworktext => $frameworks->{$thisframeworkcode}->{'frameworktext'},
842         );
843         if ($frameworkcode eq $thisframeworkcode){
844                 $row{'selected'}="selected=\"selected\"";
845                 }
846         push @frameworkcodeloop, \%row;
847
848 $template->param( frameworkcodeloop => \@frameworkcodeloop,
849         breedingid => $breedingid );
850
851 # ++ Global
852 $tagslib         = &GetMarcStructure( 1, $frameworkcode );
853 $usedTagsLib     = &GetUsedMarcStructure( $frameworkcode );
854 $mandatory_z3950 = GetMandatoryFieldZ3950($frameworkcode);
855 # -- Global
856
857 my $record   = -1;
858 my $encoding = "";
859 my (
860         $biblionumbertagfield,
861         $biblionumbertagsubfield,
862         $biblioitemnumtagfield,
863         $biblioitemnumtagsubfield,
864         $bibitem,
865         $biblioitemnumber
866 );
867
868 if (($biblionumber) && !($breedingid)){
869         $record = GetMarcBiblio($biblionumber);
870 }
871 if ($breedingid) {
872     ( $record, $encoding ) = MARCfindbreeding( $breedingid ) ;
873 }
874
875 $is_a_modif = 0;
876     
877 if ($biblionumber) {
878     $is_a_modif = 1;
879         $template->param( title => $record->title(), );
880
881     # if it's a modif, retrieve bibli and biblioitem numbers for the future modification of old-DB.
882     ( $biblionumbertagfield, $biblionumbertagsubfield ) =
883         &GetMarcFromKohaField( "biblio.biblionumber", $frameworkcode );
884     ( $biblioitemnumtagfield, $biblioitemnumtagsubfield ) =
885         &GetMarcFromKohaField( "biblioitems.biblioitemnumber", $frameworkcode );
886             
887     # search biblioitems value
888     my $sth =  $dbh->prepare("select biblioitemnumber from biblioitems where biblionumber=?");
889     $sth->execute($biblionumber);
890     ($biblioitemnumber) = $sth->fetchrow;
891 }
892
893 #-------------------------------------------------------------------------------------
894 if ( $op eq "addbiblio" ) {
895 #-------------------------------------------------------------------------------------
896     # getting html input
897     my @params = $input->param();
898     $record = TransformHtmlToMarc( \@params , $input );
899     # check for a duplicate
900     my ($duplicatebiblionumber,$duplicatetitle) = FindDuplicate($record) if (!$is_a_modif);
901     my $confirm_not_duplicate = $input->param('confirm_not_duplicate');
902     # it is not a duplicate (determined either by Koha itself or by user checking it's not a duplicate)
903     if ( !$duplicatebiblionumber or $confirm_not_duplicate ) {
904         my $oldbibnum;
905         my $oldbibitemnum;
906         if (C4::Context->preference("BiblioAddsAuthorities")){
907           my ($countlinked,$countcreated)=BiblioAddAuthorities($record,$frameworkcode);
908         } 
909         if ( $is_a_modif ) {
910             ModBiblioframework( $biblionumber, $frameworkcode ); 
911             ModBiblio( $record, $biblionumber, $frameworkcode );
912         }
913         else {
914             ( $biblionumber, $oldbibitemnum ) = AddBiblio( $record, $frameworkcode );
915         }
916
917         if ($mode ne "popup"){
918             print $input->redirect(
919                 "/cgi-bin/koha/cataloguing/additem.pl?biblionumber=$biblionumber&frameworkcode=$frameworkcode"
920             );
921             exit;
922         } else {
923           $template->param(
924             biblionumber => $biblionumber,
925             done         =>1,
926             popup        =>1
927           );
928           $template->param( title => $record->subfield('200',"a") ) if ($record ne "-1" && C4::Context->preference('marcflavour') =~/unimarc/i);
929           $template->param( title => $record->title() ) if ($record ne "-1" && C4::Context->preference('marcflavour') eq "usmarc");
930           $template->param(
931             popup => $mode,
932             itemtype => $frameworkcode,
933           );
934           output_html_with_http_headers $input, $cookie, $template->output;
935           exit;     
936         }
937     } else {
938     # it may be a duplicate, warn the user and do nothing
939         build_tabs ($template, $record, $dbh,$encoding,$input);
940         $template->param(
941             biblionumber             => $biblionumber,
942             biblioitemnumber         => $biblioitemnumber,
943             duplicatebiblionumber    => $duplicatebiblionumber,
944             duplicatebibid           => $duplicatebiblionumber,
945             duplicatetitle           => $duplicatetitle,
946         );
947     }
948 }
949 elsif ( $op eq "delete" ) {
950     
951     my $error = &DelBiblio($biblionumber);
952     if ($error) {
953         warn "ERROR when DELETING BIBLIO $biblionumber : $error";
954         print "Content-Type: text/html\n\n<html><body><h1>ERROR when DELETING BIBLIO $biblionumber : $error</h1></body></html>";
955         exit;
956     }
957     
958     print $input->redirect('/cgi-bin/koha/catalogue/search.pl');
959     exit;
960     
961 } else {
962    #----------------------------------------------------------------------------
963    # If we're in a duplication case, we have to set to "" the biblionumber
964    # as we'll save the biblio as a new one.
965     if ( $op eq "duplicate" ) {
966         $biblionumber = "";
967     }
968
969 #FIXME: it's kind of silly to go from MARC::Record to MARC::File::XML and then back again just to fix the encoding
970     eval {
971         my $uxml = $record->as_xml;
972         MARC::Record::default_record_format("UNIMARC")
973           if ( C4::Context->preference("marcflavour") eq "UNIMARC" );
974         my $urecord = MARC::Record::new_from_xml( $uxml, 'UTF-8' );
975         $record = $urecord;
976     };
977     build_tabs( $template, $record, $dbh, $encoding,$input );
978     $template->param(
979         biblionumber             => $biblionumber,
980         biblionumbertagfield        => $biblionumbertagfield,
981         biblionumbertagsubfield     => $biblionumbertagsubfield,
982         biblioitemnumtagfield    => $biblioitemnumtagfield,
983         biblioitemnumtagsubfield => $biblioitemnumtagsubfield,
984         biblioitemnumber         => $biblioitemnumber,
985     );
986 }
987
988 $template->param( title => $record->title() ) if ( $record ne "-1" );
989 $template->param(
990     popup => $mode,
991     frameworkcode => $frameworkcode,
992     itemtype => $frameworkcode,
993 );
994
995 output_html_with_http_headers $input, $cookie, $template->output;