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