4 # Copyright 2000-2002 Katipo Communications
6 # This file is part of Koha.
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
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.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #use warnings; FIXME - Bug 2505
28 use C4
::AuthoritiesMarc
;
32 use C4
::Koha
; # XXX subfield_is_koha_internal_p
33 use C4
::Branch
; # XXX subfield_is_koha_internal_p
38 use Date
::Calc
qw(Today);
39 use MARC
::File
::USMARC
;
42 if ( C4
::Context
->preference('marcflavour') eq 'UNIMARC' ) {
43 MARC
::File
::XML
->default_record_format('UNIMARC');
46 our($tagslib,$authorised_values_sth,$is_a_modif,$usedTagsLib,$mandatory_z3950);
48 =item MARCfindbreeding
50 $record = MARCfindbreeding($breedingid);
52 Look up the import record repository for the record with
53 record with id $breedingid. If found, returns the decoded
54 MARC::Record; otherwise, -1 is returned (FIXME).
55 Returns as second parameter the character encoding.
59 sub MARCfindbreeding
{
61 my ($marc, $encoding) = GetImportRecordMarc
($id);
62 # remove the - in isbn, koha store isbn without any -
64 my $record = MARC
::Record
->new_from_usmarc($marc);
65 my ($isbnfield,$isbnsubfield) = GetMarcFromKohaField
('biblioitems.isbn','');
66 if ( $record->field($isbnfield) ) {
67 foreach my $field ( $record->field($isbnfield) ) {
68 foreach my $subfield ( $field->subfield($isbnsubfield) ) {
69 my $newisbn = $field->subfield($isbnsubfield);
71 $field->update( $isbnsubfield => $newisbn );
75 # fix the unimarc 100 coded field (with unicode information)
76 if (C4
::Context
->preference('marcflavour') eq 'UNIMARC' && $record->subfield(100,'a')) {
77 my $f100a=$record->subfield(100,'a');
78 my $f100 = $record->field(100);
79 my $f100temp = $f100->as_string;
80 $record->delete_field($f100);
81 if ( length($f100temp) > 28 ) {
82 substr( $f100temp, 26, 2, "50" );
83 $f100->update( 'a' => $f100temp );
84 my $f100 = MARC
::Field
->new( '100', '', '', 'a' => $f100temp );
85 $record->insert_fields_ordered($f100);
89 if ( !defined(ref($record)) ) {
93 # normalize author : probably UNIMARC specific...
94 if ( C4
::Context
->preference("z3950NormalizeAuthor")
95 and C4
::Context
->preference("z3950AuthorAuthFields") )
97 my ( $tag, $subfield ) = GetMarcFromKohaField
("biblio.author", '');
99 # my $summary = C4::Context->preference("z3950authortemplate");
101 C4
::Context
->preference("z3950AuthorAuthFields");
102 my @auth_fields = split /,/, $auth_fields;
105 if ( $record->field($tag) ) {
106 foreach my $tmpfield ( $record->field($tag)->subfields ) {
108 # foreach my $subfieldcode ($tmpfield->subfields){
109 my $subfieldcode = shift @
$tmpfield;
110 my $subfieldvalue = shift @
$tmpfield;
112 $field->add_subfields(
113 "$subfieldcode" => $subfieldvalue )
114 if ( $subfieldcode ne $subfield );
118 MARC
::Field
->new( $tag, "", "",
119 $subfieldcode => $subfieldvalue )
120 if ( $subfieldcode ne $subfield );
124 $record->delete_field( $record->field($tag) );
125 foreach my $fieldtag (@auth_fields) {
126 next unless ( $record->field($fieldtag) );
127 my $lastname = $record->field($fieldtag)->subfield('a');
128 my $firstname = $record->field($fieldtag)->subfield('b');
129 my $title = $record->field($fieldtag)->subfield('c');
130 my $number = $record->field($fieldtag)->subfield('d');
133 # $field->add_subfields("$subfield"=>"[ ".ucfirst($title).ucfirst($firstname)." ".$number." ]");
134 $field->add_subfields(
135 "$subfield" => ucfirst($title) . " "
136 . ucfirst($firstname) . " "
141 # $field->add_subfields("$subfield"=>"[ ".ucfirst($firstname).", ".ucfirst($lastname)." ]");
142 $field->add_subfields(
143 "$subfield" => ucfirst($firstname) . ", "
144 . ucfirst($lastname) );
147 $record->insert_fields_ordered($field);
149 return $record, $encoding;
155 =item build_authorized_values_list
159 sub build_authorized_values_list
($$$$$$$) {
160 my ( $tag, $subfield, $value, $dbh, $authorised_values_sth,$index_tag,$index_subfield ) = @_;
162 my @authorised_values;
165 # builds list, depending on authorised value...
168 if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
169 #Use GetBranches($onlymine)
170 my $onlymine=C4
::Context
->preference('IndependantBranches') &&
171 C4
::Context
->userenv &&
172 C4
::Context
->userenv->{flags
} % 2 == 0 &&
173 C4
::Context
->userenv->{branch
};
174 my $branches = GetBranches
($onlymine);
176 foreach my $thisbranch ( sort keys %$branches ) {
177 push @authorised_values, $thisbranch;
178 $authorised_lib{$thisbranch} = $branches->{$thisbranch}->{'branchname'};
183 elsif ( $tagslib->{$tag}->{$subfield}->{authorised_value
} eq "itemtypes" ) {
186 "select itemtype,description from itemtypes order by description");
188 push @authorised_values, ""
189 unless ( $tagslib->{$tag}->{$subfield}->{mandatory
} );
193 while ( my ( $itemtype, $description ) = $sth->fetchrow_array ) {
194 push @authorised_values, $itemtype;
195 $authorised_lib{$itemtype} = $description;
197 $value = $itemtype unless ($value);
201 elsif ( $tagslib->{$tag}->{$subfield}->{authorised_value
} eq "cn_source" ) {
202 push @authorised_values, ""
203 unless ( $tagslib->{$tag}->{$subfield}->{mandatory
} );
205 my $class_sources = GetClassSources
();
207 my $default_source = C4
::Context
->preference("DefaultClassificationSource");
209 foreach my $class_source (sort keys %$class_sources) {
210 next unless $class_sources->{$class_source}->{'used'} or
211 ($value and $class_source eq $value) or
212 ($class_source eq $default_source);
213 push @authorised_values, $class_source;
214 $authorised_lib{$class_source} = $class_sources->{$class_source}->{'description'};
215 $value = $class_source unless ($value);
216 $value = $default_source unless ($value);
218 #---- "true" authorised value
221 $authorised_values_sth->execute(
222 $tagslib->{$tag}->{$subfield}->{authorised_value
} );
224 push @authorised_values, ""
225 unless ( $tagslib->{$tag}->{$subfield}->{mandatory
} );
227 while ( my ( $value, $lib ) = $authorised_values_sth->fetchrow_array ) {
228 push @authorised_values, $value;
229 $authorised_lib{$value} = $lib;
232 return CGI
::scrolling_list
(
233 -name
=> "tag_".$tag."_subfield_".$subfield."_".$index_tag."_".$index_subfield,
234 -values => \
@authorised_values,
236 -labels
=> \
%authorised_lib,
241 -id
=> "tag_".$tag."_subfield_".$subfield."_".$index_tag."_".$index_subfield,
242 -class => "input_marceditor",
248 Create a random value to set it into the input name
253 return int(rand(1000000));
256 =item GetMandatoryFieldZ3950
258 This function return an hashref which containts all mandatory field
259 to search with z3950 server.
263 sub GetMandatoryFieldZ3950
($){
264 my $frameworkcode = shift;
265 my @isbn = GetMarcFromKohaField
('biblioitems.isbn',$frameworkcode);
266 my @title = GetMarcFromKohaField
('biblio.title',$frameworkcode);
267 my @author = GetMarcFromKohaField
('biblio.author',$frameworkcode);
268 my @issn = GetMarcFromKohaField
('biblioitems.issn',$frameworkcode);
269 my @lccn = GetMarcFromKohaField
('biblioitems.lccn',$frameworkcode);
272 $isbn[0].$isbn[1] => 'isbn',
273 $title[0].$title[1] => 'title',
274 $author[0].$author[1] => 'author',
275 $issn[0].$issn[1] => 'issn',
276 $lccn[0].$lccn[1] => 'lccn',
282 builds the <input ...> entry for a subfield.
287 my ( $tag, $subfield, $value, $index_tag, $tabloop, $rec, $authorised_values_sth,$cgi ) = @_;
289 my $index_subfield = CreateKey
(); # create a specifique key for each subfield
291 $value =~ s/"/"/g;
293 # determine maximum length; 9999 bytes per ISO 2709 except for leader and MARC21 008
294 my $max_length = 9999;
297 } elsif ($tag eq '008' and C4
::Context
->preference('marcflavour') eq 'MARC21') {
301 # if there is no value provided but a default value in parameters, get it
303 $value = $tagslib->{$tag}->{$subfield}->{defaultvalue
};
305 # get today date & replace YYYY, MM, DD if provided in the default value
306 my ( $year, $month, $day ) = Today
();
307 $month = sprintf( "%02d", $month );
308 $day = sprintf( "%02d", $day );
309 $value =~ s/YYYY/$year/g;
310 $value =~ s/MM/$month/g;
311 $value =~ s/DD/$day/g;
312 my $username=(C4
::Context
->userenv?C4
::Context
->userenv->{'surname'}:"superlibrarian");
313 $value=~s/user/$username/g;
316 my $dbh = C4
::Context
->dbh;
318 # map '@' as "subfield" label for fixed fields
319 # to something that's allowed in a div id.
320 my $id_subfield = $subfield;
321 $id_subfield = "00" if $id_subfield eq "@";
323 my %subfield_data = (
325 subfield
=> $id_subfield,
326 marc_lib
=> substr( $tagslib->{$tag}->{$subfield}->{lib
}, 0, 22 ),
327 marc_lib_plain
=> $tagslib->{$tag}->{$subfield}->{lib
},
328 tag_mandatory
=> $tagslib->{$tag}->{mandatory
},
329 mandatory
=> $tagslib->{$tag}->{$subfield}->{mandatory
},
330 repeatable
=> $tagslib->{$tag}->{$subfield}->{repeatable
},
331 kohafield
=> $tagslib->{$tag}->{$subfield}->{kohafield
},
333 id
=> "tag_".$tag."_subfield_".$id_subfield."_".$index_tag."_".$index_subfield,
335 random
=> CreateKey
(),
338 if(exists $mandatory_z3950->{$tag.$subfield}){
339 $subfield_data{z3950_mandatory
} = $mandatory_z3950->{$tag.$subfield};
341 # decide if the subfield must be expanded (visible) by default or not
342 # if it is mandatory, then expand. If it is hidden explicitly by the hidden flag, hidden anyway
343 $subfield_data{visibility
} = "display:none;"
344 if ( ($tagslib->{$tag}->{$subfield}->{hidden
} % 2 == 1) and $value ne ''
345 or ($value eq '' and !$tagslib->{$tag}->{$subfield}->{mandatory
})
347 # always expand all subfields of a mandatory field
348 $subfield_data{visibility
} = "" if $tagslib->{$tag}->{mandatory
};
349 # it's an authorised field
350 if ( $tagslib->{$tag}->{$subfield}->{authorised_value
} ) {
351 $subfield_data{marc_value
} =
352 build_authorized_values_list
( $tag, $subfield, $value, $dbh,
353 $authorised_values_sth,$index_tag,$index_subfield );
355 # it's a subfield $9 linking to an authority record - see bug 2206
357 elsif ($subfield eq "9" and
358 exists($tagslib->{$tag}->{'a'}->{authtypecode
}) and
359 defined($tagslib->{$tag}->{'a'}->{authtypecode
}) and
360 $tagslib->{$tag}->{'a'}->{authtypecode
} ne '') {
362 $subfield_data{marc_value
} =
363 "<input type=\"text\"
364 id=\"".$subfield_data{id
}."\"
365 name=\"".$subfield_data{id
}."\"
367 class=\"input_marceditor\"
370 maxlength=\"$max_length\"
371 readonly=\"readonly\"
374 # it's a thesaurus / authority field
376 elsif ( $tagslib->{$tag}->{$subfield}->{authtypecode
} ) {
377 if (C4
::Context
->preference("BiblioAddsAuthorities")) {
378 $subfield_data{marc_value
} =
379 "<input type=\"text\"
380 id=\"".$subfield_data{id
}."\"
381 name=\"".$subfield_data{id
}."\"
383 class=\"input_marceditor\"
386 maxlength=\"$max_length\"
388 <a href=\"#\" class=\"buttonDot\"
389 onclick=\"openAuth(this.parentNode.getElementsByTagName('input')[1].id,'".$tagslib->{$tag}->{$subfield}->{authtypecode
}."'); return false;\" tabindex=\"1\" title=\"Tag Editor\">...</a>
392 $subfield_data{marc_value
} =
393 "<input type=\"text\"
394 id=\"".$subfield_data{id
}."\"
395 name=\"".$subfield_data{id
}."\"
397 class=\"input_marceditor\"
400 maxlength=\"$max_length\"
401 readonly=\"readonly\"
402 \/><a href=\"#\" class=\"buttonDot\"
403 onclick=\"openAuth(this.parentNode.getElementsByTagName('input')[1].id,'".$tagslib->{$tag}->{$subfield}->{authtypecode
}."'); return false;\" tabindex=\"1\" title=\"Tag Editor\">...</a>
406 # it's a plugin field
408 elsif ( $tagslib->{$tag}->{$subfield}->{'value_builder'} ) {
410 # opening plugin. Just check wether we are on a developper computer on a production one
411 # (the cgidir differs)
412 my $cgidir = C4
::Context
->intranetdir . "/cgi-bin/cataloguing/value_builder";
413 unless ( opendir( DIR
, "$cgidir" ) ) {
414 $cgidir = C4
::Context
->intranetdir . "/cataloguing/value_builder";
417 my $plugin = $cgidir . "/" . $tagslib->{$tag}->{$subfield}->{'value_builder'};
419 my $extended_param = plugin_parameters
( $dbh, $rec, $tagslib, $subfield_data{id
}, $tabloop );
420 my ( $function_name, $javascript ) = plugin_javascript
( $dbh, $rec, $tagslib, $subfield_data{id
}, $tabloop );
422 $subfield_data{marc_value
} =
423 "<input tabindex=\"1\"
425 id=\"".$subfield_data{id
}."\"
426 name=\"".$subfield_data{id
}."\"
428 class=\"input_marceditor\"
429 onfocus=\"Focus$function_name($index_tag)\"
431 maxlength=\"$max_length\"
432 onblur=\"Blur$function_name($index_tag); \" \/>
433 <a href=\"#\" class=\"buttonDot\" onclick=\"Clic$function_name('$subfield_data{id}'); return false;\" tabindex=\"1\" title=\"Tag Editor\">...</a>
436 warn "Plugin Failed: $plugin";
437 # supply default input form
438 $subfield_data{marc_value
} =
439 "<input type=\"text\"
440 id=\"".$subfield_data{id
}."\"
441 name=\"".$subfield_data{id
}."\"
445 maxlength=\"$max_length\"
446 class=\"input_marceditor\"
450 # it's an hidden field
452 elsif ( $tag eq '' ) {
453 $subfield_data{marc_value
} =
454 "<input tabindex=\"1\"
456 id=\"".$subfield_data{id
}."\"
457 name=\"".$subfield_data{id
}."\"
459 maxlength=\"$max_length\"
463 elsif ( $tagslib->{$tag}->{$subfield}->{'hidden'} ) {
464 $subfield_data{marc_value
} =
465 "<input type=\"text\"
466 id=\"".$subfield_data{id
}."\"
467 name=\"".$subfield_data{id
}."\"
468 class=\"input_marceditor\"
471 maxlength=\"$max_length\"
475 # it's a standard field
481 ( C4
::Context
->preference("marcflavour") eq "UNIMARC" && $tag >= 300
482 and $tag < 400 && $subfield eq 'a' )
485 && C4
::Context
->preference("marcflavour") eq "MARC21" )
488 $subfield_data{marc_value
} =
489 "<textarea cols=\"70\"
491 id=\"".$subfield_data{id
}."\"
492 name=\"".$subfield_data{id
}."\"
493 class=\"input_marceditor\"
499 $subfield_data{marc_value
} =
500 "<input type=\"text\"
501 id=\"".$subfield_data{id
}."\"
502 name=\"".$subfield_data{id
}."\"
506 maxlength=\"$max_length\"
507 class=\"input_marceditor\"
512 $subfield_data{'index_subfield'} = $index_subfield;
513 return \
%subfield_data;
517 =item format_indicator
519 Translate indicator value for output form - specifically, map
520 indicator = ' ' to ''. This is for the convenience of a cataloger
521 using a mouse to select an indicator input.
525 sub format_indicator
{
526 my $ind_value = shift;
527 return '' if not defined $ind_value;
528 return '' if $ind_value eq ' ';
532 sub build_tabs
($$$$$) {
533 my ( $template, $record, $dbh, $encoding,$input ) = @_;
539 my $authorised_values_sth = $dbh->prepare(
540 "select authorised_value,lib
541 from authorised_values
542 where category=? order by lib"
545 # in this array, we will push all the 10 tabs
546 # to avoid having 10 tabs in the template : they will all be in the same BIG_LOOP
549 my @tab_data; # all tags to display
551 foreach my $used ( @
$usedTagsLib ){
552 push @tab_data,$used->{tagfield
} if not $seen{$used->{tagfield
}};
553 $seen{$used->{tagfield
}}++;
557 foreach(@
$usedTagsLib){
558 if($_->{tab
} > -1 && $_->{tab
} >= $max_num_tab && $_->{tagfield
} != '995'){ # FIXME : MARC21 ?
559 $max_num_tab = $_->{tab
};
562 if($max_num_tab >= 9){
565 # loop through each tab 0 through 9
566 for ( my $tabloop = 0 ; $tabloop <= $max_num_tab ; $tabloop++ ) {
567 my @loop_data = (); #innerloop in the template.
569 foreach my $tag (@tab_data) {
572 my ($indicator1, $indicator2);
573 my $index_tag = CreateKey
;
575 # if MARC::Record is not empty =>use it as master loop, then add missing subfields that should be in the tab.
576 # if MARC::Record is empty => use tab as master loop.
577 if ( $record ne -1 && ( $record->field($tag) || $tag eq '000' ) ) {
579 if ( $tag ne '000' ) {
580 @fields = $record->field($tag);
583 push @fields, $record->leader(); # if tag == 000
585 # loop through each field
586 foreach my $field (@fields) {
590 my ( $value, $subfield );
591 if ( $tag ne '000' ) {
592 $value = $field->data();
599 next if ( $tagslib->{$tag}->{$subfield}->{tab
} ne $tabloop );
601 if ( $tagslib->{$tag}->{$subfield}->{kohafield
} eq
602 'biblio.biblionumber' );
606 $tag, $subfield, $value, $index_tag, $tabloop, $record,
607 $authorised_values_sth,$input
612 my @subfields = $field->subfields();
613 foreach my $subfieldcount ( 0 .. $#subfields ) {
614 my $subfield = $subfields[$subfieldcount][0];
615 my $value = $subfields[$subfieldcount][1];
616 next if ( length $subfield != 1 );
617 next if ( $tagslib->{$tag}->{$subfield}->{tab
} ne $tabloop );
621 $tag, $subfield, $value, $index_tag, $tabloop,
622 $record, $authorised_values_sth,$input
628 # now, loop again to add parameter subfield that are not in the MARC::Record
629 foreach my $subfield ( sort( keys %{ $tagslib->{$tag} } ) )
631 next if ( length $subfield != 1 );
632 next if ( $tagslib->{$tag}->{$subfield}->{tab
} ne $tabloop );
633 next if ( $tag < 10 );
635 if ( ( $tagslib->{$tag}->{$subfield}->{hidden
} <= -4 )
636 or ( $tagslib->{$tag}->{$subfield}->{hidden
} >= 5 ) )
637 and not ( $subfield eq "9" and
638 exists($tagslib->{$tag}->{'a'}->{authtypecode
}) and
639 defined($tagslib->{$tag}->{'a'}->{authtypecode
}) and
640 $tagslib->{$tag}->{'a'}->{authtypecode
} ne ""
642 ; #check for visibility flag
643 # if subfield is $9 in a field whose $a is authority-controlled,
644 # always include in the form regardless of the hidden setting - bug 2206
645 next if ( defined( $field->subfield($subfield) ) );
649 $tag, $subfield, '', $index_tag, $tabloop, $record,
650 $authorised_values_sth,$input
654 if ( $#subfields_data >= 0 ) {
655 # build the tag entry.
656 # note that the random() field is mandatory. Otherwise, on repeated fields, you'll
657 # have twice the same "name" value, and cgi->param() will return only one, making
658 # all subfields to be merged in a single field.
662 tag_lib
=> $tagslib->{$tag}->{lib
},
663 repeatable
=> $tagslib->{$tag}->{repeatable
},
664 mandatory
=> $tagslib->{$tag}->{mandatory
},
665 subfield_loop
=> \
@subfields_data,
666 fixedfield
=> $tag < 10?
1:0,
669 if ($tag >= 10){ # no indicator for 00x tags
670 $tag_data{indicator1
} = format_indicator
($field->indicator(1)),
671 $tag_data{indicator2
} = format_indicator
($field->indicator(2)),
673 push( @loop_data, \
%tag_data );
675 } # foreach $field end
677 # if breeding is empty
681 foreach my $subfield ( sort( keys %{ $tagslib->{$tag} } ) ) {
682 next if ( length $subfield != 1 );
684 if ( ( $tagslib->{$tag}->{$subfield}->{hidden
} <= -5 )
685 or ( $tagslib->{$tag}->{$subfield}->{hidden
} >= 4 ) )
686 and not ( $subfield eq "9" and
687 exists($tagslib->{$tag}->{'a'}->{authtypecode
}) and
688 defined($tagslib->{$tag}->{'a'}->{authtypecode
}) and
689 $tagslib->{$tag}->{'a'}->{authtypecode
} ne ""
691 ; #check for visibility flag
692 # if subfield is $9 in a field whose $a is authority-controlled,
693 # always include in the form regardless of the hidden setting - bug 2206
695 if ( $tagslib->{$tag}->{$subfield}->{tab
} ne $tabloop );
699 $tag, $subfield, '', $index_tag, $tabloop, $record,
700 $authorised_values_sth,$input
704 if ( $#subfields_data >= 0 ) {
708 tag_lib
=> $tagslib->{$tag}->{lib
},
709 repeatable
=> $tagslib->{$tag}->{repeatable
},
710 mandatory
=> $tagslib->{$tag}->{mandatory
},
711 indicator1
=> $indicator1,
712 indicator2
=> $indicator2,
713 subfield_loop
=> \
@subfields_data,
714 tagfirstsubfield
=> $subfields_data[0],
715 fixedfield
=> $tag < 10?
1:0,
718 push @loop_data, \
%tag_data ;
722 if ( $#loop_data >= 0 ) {
725 innerloop
=> \
@loop_data,
729 $template->param( BIG_LOOP
=> \
@BIG_LOOP );
733 # sub that tries to find authorities linked to the biblio
735 # - search in the authority DB for the same authid (in $9 of the biblio)
736 # - search in the authority DB for the same 001 (in $3 of the biblio in UNIMARC)
737 # - search in the authority DB for the same values (exactly) (in all subfields of the biblio)
738 # if the authority is found, the biblio is modified accordingly to be connected to the authority.
739 # if the authority is not found, it's added, and the biblio is then modified to be connected to the authority.
742 sub BiblioAddAuthorities
{
743 my ( $record, $frameworkcode ) = @_;
744 my $dbh=C4
::Context
->dbh;
745 my $query=$dbh->prepare(qq|
746 SELECT authtypecode
,tagfield
747 FROM marc_subfield_structure
748 WHERE frameworkcode
=?
749 AND
(authtypecode IS NOT NULL AND authtypecode
<>\"\")|);
750 # SELECT authtypecode,tagfield
751 # FROM marc_subfield_structure
752 # WHERE frameworkcode=?
753 # AND (authtypecode IS NOT NULL OR authtypecode<>\"\")|);
754 $query->execute($frameworkcode);
755 my ($countcreated,$countlinked);
756 while (my $data=$query->fetchrow_hashref){
757 foreach my $field ($record->field($data->{tagfield
})){
758 next if ($field->subfield('3')||$field->subfield('9'));
759 # No authorities id in the tag.
760 # Search if there is any authorities to link to.
761 my $query='at='.$data->{authtypecode
}.' ';
762 map {$query.= ' and he,ext="'.$_->[1].'"' if ($_->[0]=~/[A-z]/)} $field->subfields();
763 my ($error, $results, $total_hits)=SimpleSearch
( $query, undef, undef, [ "authorityserver" ] );
764 # there is only 1 result
766 warn "BIBLIOADDSAUTHORITIES: $error";
769 if ($results && scalar(@
$results)==1) {
770 my $marcrecord = MARC
::File
::USMARC
::decode
($results->[0]);
771 $field->add_subfields('9'=>$marcrecord->field('001')->data);
773 } elsif (scalar(@
$results)>1) {
774 #More than One result
775 #This can comes out of a lack of a subfield.
776 # my $marcrecord = MARC::File::USMARC::decode($results->[0]);
777 # $record->field($data->{tagfield})->add_subfields('9'=>$marcrecord->field('001')->data);
780 #There are no results, build authority record, add it to Authorities, get authid and add it to 9
781 ###NOTICE : This is only valid if a subfield is linked to one and only one authtypecode
782 ###NOTICE : This can be a problem. We should also look into other types and rejected forms.
783 my $authtypedata=GetAuthType
($data->{authtypecode
});
784 next unless $authtypedata;
785 my $marcrecordauth=MARC
::Record
->new();
786 if (C4
::Context
->preference('marcflavour') eq 'MARC21') {
787 $marcrecordauth->leader(' nz a22 o 4500');
788 SetMarcUnicodeFlag
($marcrecordauth, 'MARC21');
790 my $authfield=MARC
::Field
->new($authtypedata->{auth_tag_to_report
},'','',"a"=>"".$field->subfield('a'));
791 map { $authfield->add_subfields($_->[0]=>$_->[1]) if ($_->[0]=~/[A-z]/ && $_->[0] ne "a" )} $field->subfields();
792 $marcrecordauth->insert_fields_ordered($authfield);
794 # bug 2317: ensure new authority knows it's using UTF-8; currently
795 # only need to do this for MARC21, as MARC::Record->as_xml_record() handles
796 # automatically for UNIMARC (by not transcoding)
797 # FIXME: AddAuthority() instead should simply explicitly require that the MARC::Record
798 # use UTF-8, but as of 2008-08-05, did not want to introduce that kind
799 # of change to a core API just before the 3.0 release.
801 if (C4
::Context
->preference('marcflavour') eq 'MARC21') {
802 $marcrecordauth->insert_fields_ordered(MARC
::Field
->new('667','','','a'=>"Machine generated authority record."));
803 my $cite = $record->author() . ", " . $record->title_proper() . ", " . $record->publication_date() . " ";
804 $cite =~ s/^[\s\,]*//;
805 $cite =~ s/[\s\,]*$//;
806 $cite = "Work cat.: (" . C4
::Context
->preference('MARCOrgCode') . ")". $record->subfield('999','c') . ": " . $cite;
807 $marcrecordauth->insert_fields_ordered(MARC
::Field
->new('670','','','a'=>$cite));
810 # warn "AUTH RECORD ADDED : ".$marcrecordauth->as_formatted;
812 my $authid=AddAuthority
($marcrecordauth,'',$data->{authtypecode
});
814 $field->add_subfields('9'=>$authid);
818 return ($countlinked,$countcreated);
821 # ========================
823 #=========================
825 my $error = $input->param('error');
826 my $biblionumber = $input->param('biblionumber'); # if biblionumber exists, it's a modif, not a new biblio.
827 my $breedingid = $input->param('breedingid');
828 my $z3950 = $input->param('z3950');
829 my $op = $input->param('op');
830 my $mode = $input->param('mode');
831 my $frameworkcode = $input->param('frameworkcode');
832 my $redirect = $input->param('redirect');
833 my $dbh = C4
::Context
->dbh;
835 my $userflags = ($frameworkcode eq 'FA') ?
"fast_cataloging" : "edit_catalogue";
837 $frameworkcode = &GetFrameworkCode
($biblionumber)
838 if ( $biblionumber and not($frameworkcode) );
840 $frameworkcode = '' if ( $frameworkcode eq 'Default' );
841 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
843 template_name
=> "cataloguing/addbiblio.tmpl",
846 authnotrequired
=> 0,
847 flagsrequired
=> { editcatalogue
=> $userflags },
851 # Getting the list of all frameworks
853 my $frameworks = getframeworks
;
854 my @frameworkcodeloop;
855 foreach my $thisframeworkcode ( keys %$frameworks ) {
857 value
=> $thisframeworkcode,
858 frameworktext
=> $frameworks->{$thisframeworkcode}->{'frameworktext'},
860 if ($frameworkcode eq $thisframeworkcode){
861 $row{'selected'}="selected=\"selected\"";
863 push @frameworkcodeloop, \
%row;
865 $template->param( frameworkcodeloop
=> \
@frameworkcodeloop,
866 breedingid
=> $breedingid );
869 $tagslib = &GetMarcStructure
( 1, $frameworkcode );
870 $usedTagsLib = &GetUsedMarcStructure
( $frameworkcode );
871 $mandatory_z3950 = GetMandatoryFieldZ3950
($frameworkcode);
877 $biblionumbertagfield,
878 $biblionumbertagsubfield,
879 $biblioitemnumtagfield,
880 $biblioitemnumtagsubfield,
885 if (($biblionumber) && !($breedingid)){
886 $record = GetMarcBiblio
($biblionumber);
889 ( $record, $encoding ) = MARCfindbreeding
( $breedingid ) ;
896 $template->param( title
=> $record->title(), );
898 # if it's a modif, retrieve bibli and biblioitem numbers for the future modification of old-DB.
899 ( $biblionumbertagfield, $biblionumbertagsubfield ) =
900 &GetMarcFromKohaField
( "biblio.biblionumber", $frameworkcode );
901 ( $biblioitemnumtagfield, $biblioitemnumtagsubfield ) =
902 &GetMarcFromKohaField
( "biblioitems.biblioitemnumber", $frameworkcode );
904 # search biblioitems value
905 my $sth = $dbh->prepare("select biblioitemnumber from biblioitems where biblionumber=?");
906 $sth->execute($biblionumber);
907 ($biblioitemnumber) = $sth->fetchrow;
910 #-------------------------------------------------------------------------------------
911 if ( $op eq "addbiblio" ) {
912 #-------------------------------------------------------------------------------------
914 my @params = $input->param();
915 $record = TransformHtmlToMarc
( \
@params , $input );
916 # check for a duplicate
917 my ($duplicatebiblionumber,$duplicatetitle) = FindDuplicate
($record) if (!$is_a_modif);
918 my $confirm_not_duplicate = $input->param('confirm_not_duplicate');
919 # it is not a duplicate (determined either by Koha itself or by user checking it's not a duplicate)
920 if ( !$duplicatebiblionumber or $confirm_not_duplicate ) {
923 if (C4
::Context
->preference("BiblioAddsAuthorities")){
924 my ($countlinked,$countcreated)=BiblioAddAuthorities
($record,$frameworkcode);
927 ModBiblioframework
( $biblionumber, $frameworkcode );
928 ModBiblio
( $record, $biblionumber, $frameworkcode );
931 ( $biblionumber, $oldbibitemnum ) = AddBiblio
( $record, $frameworkcode );
934 if (($mode ne "popup" && !$is_a_modif) || $redirect eq "items"){
935 print $input->redirect(
936 "/cgi-bin/koha/cataloguing/additem.pl?biblionumber=$biblionumber&frameworkcode=$frameworkcode"
940 elsif($is_a_modif || $redirect eq "view"){
941 my $defaultview = C4
::Context
->preference('IntranetBiblioDefaultView');
942 my $views = { C4
::Search
::enabled_staff_search_views
};
943 if ($defaultview eq 'isbd' && $views->{can_view_ISBD
}) {
944 print $input->redirect("/cgi-bin/koha/catalogue/ISBDdetail.pl?biblionumber=$biblionumber");
945 } elsif ($defaultview eq 'marc' && $views->{can_view_MARC
}) {
946 print $input->redirect("/cgi-bin/koha/catalogue/MARCdetail.pl?biblionumber=$biblionumber&frameworkcode=$frameworkcode");
947 } elsif ($defaultview eq 'labeled_marc' && $views->{can_view_labeledMARC
}) {
948 print $input->redirect("/cgi-bin/koha/catalogue/labeledMARCdetail.pl?biblionumber=$biblionumber");
950 print $input->redirect("/cgi-bin/koha/catalogue/detail.pl?biblionumber=$biblionumber");
956 biblionumber
=> $biblionumber,
960 $template->param( title
=> $record->subfield('200',"a") ) if ($record ne "-1" && C4
::Context
->preference('marcflavour') =~/unimarc/i);
961 $template->param( title
=> $record->title() ) if ($record ne "-1" && C4
::Context
->preference('marcflavour') eq "usmarc");
964 itemtype
=> $frameworkcode,
966 output_html_with_http_headers
$input, $cookie, $template->output;
970 # it may be a duplicate, warn the user and do nothing
971 build_tabs
($template, $record, $dbh,$encoding,$input);
973 biblionumber
=> $biblionumber,
974 biblioitemnumber
=> $biblioitemnumber,
975 duplicatebiblionumber
=> $duplicatebiblionumber,
976 duplicatebibid
=> $duplicatebiblionumber,
977 duplicatetitle
=> $duplicatetitle,
981 elsif ( $op eq "delete" ) {
983 my $error = &DelBiblio
($biblionumber);
985 warn "ERROR when DELETING BIBLIO $biblionumber : $error";
986 print "Content-Type: text/html\n\n<html><body><h1>ERROR when DELETING BIBLIO $biblionumber : $error</h1></body></html>";
990 print $input->redirect('/cgi-bin/koha/catalogue/search.pl');
994 #----------------------------------------------------------------------------
995 # If we're in a duplication case, we have to set to "" the biblionumber
996 # as we'll save the biblio as a new one.
997 if ( $op eq "duplicate" ) {
1001 #FIXME: it's kind of silly to go from MARC::Record to MARC::File::XML and then back again just to fix the encoding
1003 my $uxml = $record->as_xml;
1004 MARC
::Record
::default_record_format
("UNIMARC")
1005 if ( C4
::Context
->preference("marcflavour") eq "UNIMARC" );
1006 my $urecord = MARC
::Record
::new_from_xml
( $uxml, 'UTF-8' );
1009 build_tabs
( $template, $record, $dbh, $encoding,$input );
1011 biblionumber
=> $biblionumber,
1012 biblionumbertagfield
=> $biblionumbertagfield,
1013 biblionumbertagsubfield
=> $biblionumbertagsubfield,
1014 biblioitemnumtagfield
=> $biblioitemnumtagfield,
1015 biblioitemnumtagsubfield
=> $biblioitemnumtagsubfield,
1016 biblioitemnumber
=> $biblioitemnumber,
1020 $template->param( title
=> $record->title() ) if ( $record ne "-1" );
1023 frameworkcode
=> $frameworkcode,
1024 itemtype
=> $frameworkcode,
1027 output_html_with_http_headers
$input, $cookie, $template->output;