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
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
26 use C4
::AuthoritiesMarc
;
27 use C4
::ImportBatch
; #GetImportRecordMarc
30 use Date
::Calc
qw(Today);
31 use MARC
::File
::USMARC
;
34 use Koha
::Authority
::Types
;
36 use vars
qw( $tagslib);
37 use vars qw( $authorised_values_sth);
38 use vars qw( $is_a_modif );
40 my $itemtype; # created here because it can be used in build_authorized_values_list sub
41 our($authorised_values_sth,$is_a_modif,$usedTagsLib,$mandatory_z3950);
47 =item build_authorized_values_list
49 builds list, depending on authorised value...
53 sub MARCfindbreeding_auth {
55 my ($marc, $encoding) = GetImportRecordMarc($id);
57 my $record = MARC::Record->new_from_usmarc($marc);
58 if ( !defined(ref($record)) ) {
61 return $record, $encoding;
68 sub build_authorized_values_list {
69 my ( $tag, $subfield, $value, $dbh, $authorised_values_sth,$index_tag,$index_subfield ) = @_;
71 my @authorised_values;
76 if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
79 "select branchcode,branchname from branches order by branchname");
81 push @authorised_values, ""
82 unless ( $tagslib->{$tag}->{$subfield}->{mandatory} );
84 while ( my ( $branchcode, $branchname ) = $sth->fetchrow_array ) {
85 push @authorised_values, $branchcode;
86 $authorised_lib{$branchcode} = $branchname;
89 elsif ( $tagslib->{$tag}->{$subfield}->{authorised_value} eq "itemtypes" ) {
90 push @authorised_values, ""
91 unless ( $tagslib->{$tag}->{$subfield}->{mandatory}
92 && ( $value || $tagslib->{$tag}->{$subfield}->{defaultvalue} ) );
95 my $itemtypes = Koha::ItemTypes->search_with_localization;
96 while ( $itemtype = $itemtypes->next ) {
97 push @authorised_values, $itemtype->itemtype;
98 $authorised_lib{$itemtype->itemtype} = $itemtype->translated_description;
100 $value = $itemtype unless ($value);
102 #---- "true" authorised value
105 $authorised_values_sth->execute(
106 $tagslib->{$tag}->{$subfield}->{authorised_value} );
108 push @authorised_values, ""
109 unless ( $tagslib->{$tag}->{$subfield}->{mandatory}
110 && ( $value || $tagslib->{$tag}->{$subfield}->{defaultvalue} ) );
112 while ( my ( $value, $lib ) = $authorised_values_sth->fetchrow_array ) {
113 push @authorised_values, $value;
114 $authorised_lib{$value} = $lib;
119 id => "tag_".$tag."_subfield_".$subfield."_".$index_tag."_".$index_subfield,
120 name => "tag_".$tag."_subfield_".$subfield."_".$index_tag."_".$index_subfield,
121 values => \@authorised_values,
122 labels => \%authorised_lib,
130 builds the <input ...> entry for a subfield.
135 my ( $tag, $subfield, $value, $index_tag, $tabloop, $rec, $authorised_values_sth,$cgi ) = @_;
137 my $index_subfield = CreateKey(); # create a specifique key for each subfield
139 $value =~ s/"/"/g;
141 # determine maximum length; 9999 bytes per ISO 2709 except for leader and MARC21 008
142 my $max_length = 9999;
145 } elsif ($tag eq '008' and C4::Context->preference('marcflavour') eq 'MARC21') {
149 # if there is no value provided but a default value in parameters, get it
151 $value = $tagslib->{$tag}->{$subfield}->{defaultvalue};
152 if (!defined $value) {
156 # get today date & replace YYYY, MM, DD if provided in the default value
157 my ( $year, $month, $day ) = Today
();
158 $month = sprintf( "%02d", $month );
159 $day = sprintf( "%02d", $day );
160 $value =~ s/YYYY/$year/g;
161 $value =~ s/MM/$month/g;
162 $value =~ s/DD/$day/g;
164 my $dbh = C4
::Context
->dbh;
166 # map '@' as "subfield" label for fixed fields
167 # to something that's allowed in a div id.
168 my $id_subfield = $subfield;
169 $id_subfield = "00" if $id_subfield eq "@";
171 my %subfield_data = (
173 subfield
=> $id_subfield,
174 marc_lib
=> $tagslib->{$tag}->{$subfield}->{lib
},
175 tag_mandatory
=> $tagslib->{$tag}->{mandatory
},
176 mandatory
=> $tagslib->{$tag}->{$subfield}->{mandatory
},
177 repeatable
=> $tagslib->{$tag}->{$subfield}->{repeatable
},
178 kohafield
=> $tagslib->{$tag}->{$subfield}->{kohafield
},
180 id
=> "tag_".$tag."_subfield_".$id_subfield."_".$index_tag."_".$index_subfield,
182 random
=> CreateKey
(),
185 if(exists $mandatory_z3950->{$tag.$subfield}){
186 $subfield_data{z3950_mandatory
} = $mandatory_z3950->{$tag.$subfield};
189 $subfield_data{visibility
} = "display:none;"
190 if ( ($tagslib->{$tag}->{$subfield}->{hidden
} % 2 == 1) and $value ne ''
191 or ($value eq '' and !$tagslib->{$tag}->{$subfield}->{mandatory
})
194 # it's an authorised field
195 if ( $tagslib->{$tag}->{$subfield}->{authorised_value
} ) {
196 $subfield_data{marc_value
} =
197 build_authorized_values_list
( $tag, $subfield, $value, $dbh,
198 $authorised_values_sth,$index_tag,$index_subfield );
200 # it's a thesaurus / authority field
202 elsif ( $tagslib->{$tag}->{$subfield}->{authtypecode
} ) {
203 $subfield_data{marc_value
} = {
205 id
=> $subfield_data{id
},
206 name
=> $subfield_data{id
},
208 authtypecode
=> $tagslib->{$tag}->{$subfield}->{authtypecode
},
211 elsif ( $tagslib->{$tag}->{$subfield}->{'value_builder'} ) { # plugin
212 require Koha
::FrameworkPlugin
;
213 my $plugin = Koha
::FrameworkPlugin
->new({
214 name
=> $tagslib->{$tag}->{$subfield}->{'value_builder'},
216 my $pars= { dbh
=> $dbh, record
=> $rec, tagslib
=>$tagslib,
217 id
=> $subfield_data{id
}, tabloop
=> $tabloop };
218 $plugin->build( $pars );
219 if( !$plugin->errstr ) {
220 $subfield_data{marc_value
} = {
222 id
=> $subfield_data{id
},
223 name
=> $subfield_data{id
},
225 maxlength
=> $max_length,
226 javascript
=> $plugin->javascript,
227 noclick
=> $plugin->noclick,
229 } else { # warn and supply default field
230 warn $plugin->errstr;
231 $subfield_data{marc_value
} = {
233 id
=> $subfield_data{id
},
234 name
=> $subfield_data{id
},
236 maxlength
=> $max_length,
240 # it's an hidden field
241 elsif ( $tag eq '' ) {
242 $subfield_data{marc_value
} = {
244 id
=> $subfield_data{id
},
245 name
=> $subfield_data{id
},
247 maxlength
=> $max_length,
250 elsif ( $tagslib->{$tag}->{$subfield}->{'hidden'} ) {
251 $subfield_data{marc_value
} = {
253 id
=> $subfield_data{id
},
254 name
=> $subfield_data{id
},
256 maxlength
=> $max_length,
259 # it's a standard field
265 ( C4
::Context
->preference("marcflavour") eq "UNIMARC" && $tag >= 300
266 and $tag < 400 && $subfield eq 'a' )
269 && C4
::Context
->preference("marcflavour") eq "MARC21" )
272 $subfield_data{marc_value
} = {
274 id
=> $subfield_data{id
},
275 name
=> $subfield_data{id
},
277 maxlength
=> $max_length,
282 $subfield_data{marc_value
} = {
284 id
=> $subfield_data{id
},
285 name
=> $subfield_data{id
},
287 maxlength
=> $max_length,
292 $subfield_data{'index_subfield'} = $index_subfield;
293 return \
%subfield_data;
296 =item format_indicator
298 Translate indicator value for output form - specifically, map
299 indicator = ' ' to ''. This is for the convenience of a cataloger
300 using a mouse to select an indicator input.
304 sub format_indicator
{
305 my $ind_value = shift;
306 return '' if not defined $ind_value;
307 return '' if $ind_value eq ' ';
313 Create a random value to set it into the input name
318 return int(rand(1000000));
321 =item GetMandatoryFieldZ3950
323 This function return an hashref which containts all mandatory field
324 to search with z3950 server.
328 sub GetMandatoryFieldZ3950
{
329 my $authtypecode = shift;
330 if ( C4
::Context
->preference('marcflavour') eq 'MARC21' ){
332 '100a' => 'authorpersonal',
333 '110a' => 'authorcorp',
334 '111a' => 'authormeetingcon',
335 '130a' => 'uniformtitle',
340 '200a' => 'authorpersonal',
341 '210a' => 'authormeetingcon', #210 in UNIMARC is used for both corporation and meeting
342 '230a' => 'uniformtitle',
348 my ( $template, $record, $dbh, $encoding,$input ) = @_;
354 my $authorised_values_sth = $dbh->prepare(
355 "SELECT authorised_value,lib
356 FROM authorised_values
357 WHERE category=? ORDER BY lib"
360 # in this array, we will push all the 10 tabs
361 # to avoid having 10 tabs in the template : they will all be in the same BIG_LOOP
364 my @tab_data; # all tags to display
366 foreach my $used ( keys %$tagslib ){
367 push @tab_data,$used if not $seen{$used};
372 # loop through each tab 0 through 9
373 for ( my $tabloop = 0 ; $tabloop <= $max_num_tab ; $tabloop++ ) {
374 my @loop_data = (); #innerloop in the template.
376 foreach my $tag (sort @tab_data) {
379 my ($indicator1, $indicator2);
380 my $index_tag = CreateKey
;
382 # if MARC::Record is not empty =>use it as master loop, then add missing subfields that should be in the tab.
383 # if MARC::Record is empty => use tab as master loop.
384 if ( $record != -1 && ( $record->field($tag) || $tag eq '000' ) ) {
386 if ( $tag ne '000' ) {
387 @fields = $record->field($tag);
390 push @fields, $record->leader(); # if tag == 000
392 # loop through each field
393 foreach my $field (@fields) {
397 my ( $value, $subfield );
398 if ( $tag ne '000' ) {
399 $value = $field->data();
406 next if ( $tagslib->{$tag}->{$subfield}->{tab
} ne $tabloop );
410 $tag, $subfield, $value, $index_tag, $tabloop, $record,
411 $authorised_values_sth,$input
416 my @subfields = $field->subfields();
417 foreach my $subfieldcount ( 0 .. $#subfields ) {
418 my $subfield = $subfields[$subfieldcount][0];
419 my $value = $subfields[$subfieldcount][1];
420 next if ( length $subfield != 1 );
421 next if ( $tagslib->{$tag}->{$subfield}->{tab
} ne $tabloop );
425 $tag, $subfield, $value, $index_tag, $tabloop,
426 $record, $authorised_values_sth,$input
432 # now, loop again to add parameter subfield that are not in the MARC::Record
433 foreach my $subfield ( sort( keys %{ $tagslib->{$tag} } ) )
435 next if ( length $subfield != 1 );
436 next if ( $tagslib->{$tag}->{$subfield}->{tab
} ne $tabloop );
437 next if ( $tag < 10 );
439 if ( ( $tagslib->{$tag}->{$subfield}->{hidden
} <= -4 )
440 or ( $tagslib->{$tag}->{$subfield}->{hidden
} >= 5 )
441 ); #check for visibility flag
442 next if ( defined( $field->subfield($subfield) ) );
446 $tag, $subfield, '', $index_tag, $tabloop, $record,
447 $authorised_values_sth,$input
451 if ( $#subfields_data >= 0 ) {
452 # build the tag entry.
453 # note that the random() field is mandatory. Otherwise, on repeated fields, you'll
454 # have twice the same "name" value, and cgi->param() will return only one, making
455 # all subfields to be merged in a single field.
459 tag_lib
=> $tagslib->{$tag}->{lib
},
460 repeatable
=> $tagslib->{$tag}->{repeatable
},
461 mandatory
=> $tagslib->{$tag}->{mandatory
},
462 subfield_loop
=> \
@subfields_data,
463 fixedfield
=> ($tag < 10)?
(1):(0),
466 if ($tag >= 10){ # no indicator for theses tag
467 $tag_data{indicator1
} = format_indicator
($field->indicator(1)),
468 $tag_data{indicator2
} = format_indicator
($field->indicator(2)),
470 push( @loop_data, \
%tag_data );
472 } # foreach $field end
474 # if breeding is empty
478 foreach my $subfield ( sort( keys %{ $tagslib->{$tag} } ) ) {
479 next if ( length $subfield != 1 );
480 next if ( ( $tagslib->{$tag}->{$subfield}->{hidden
} <= -5 )
481 or ( $tagslib->{$tag}->{$subfield}->{hidden
} >= 4 ) )
482 ; #check for visibility flag
483 next if ( $tagslib->{$tag}->{$subfield}->{tab
} ne $tabloop );
487 $tag, $subfield, '', $index_tag, $tabloop, $record,
488 $authorised_values_sth,$input
492 if ( $#subfields_data >= 0 ) {
496 tag_lib
=> $tagslib->{$tag}->{lib
},
497 repeatable
=> $tagslib->{$tag}->{repeatable
},
498 mandatory
=> $tagslib->{$tag}->{mandatory
},
499 indicator1
=> $indicator1,
500 indicator2
=> $indicator2,
501 subfield_loop
=> \
@subfields_data,
502 tagfirstsubfield
=> $subfields_data[0],
503 fixedfield
=> ($tag < 10)?
(1):(0)
506 push @loop_data, \
%tag_data ;
510 if ( $#loop_data >= 0 ) {
513 innerloop
=> \
@loop_data,
517 $template->param( BIG_LOOP
=> \
@BIG_LOOP );
521 sub build_hidden_data
{
522 # build hidden data =>
523 # we store everything, even if we show only requested subfields.
527 foreach my $tag (keys %{$tagslib}) {
528 my $previous_tag = '';
530 # loop through each subfield
531 foreach my $subfield (keys %{$tagslib->{$tag}}) {
532 next if ($subfield eq 'lib');
533 next if ($subfield eq 'tab');
534 next if ($subfield eq 'mandatory');
535 next if ($subfield eq 'repeatable');
536 next if ($tagslib->{$tag}->{$subfield}->{'tab'} ne "-1");
538 $subfield_data{marc_lib
}=$tagslib->{$tag}->{$subfield}->{lib
};
539 $subfield_data{marc_mandatory
}=$tagslib->{$tag}->{$subfield}->{mandatory
};
540 $subfield_data{marc_repeatable
}=$tagslib->{$tag}->{$subfield}->{repeatable
};
541 $subfield_data{marc_value
} = {
542 type
=> 'hidden_simple',
543 name
=> 'field_value[]',
545 push(@loop_data, \
%subfield_data);
556 # ========================
558 #=========================
560 my $z3950 = $input->param('z3950');
561 my $error = $input->param('error');
562 my $authid=$input->param('authid'); # if authid exists, it's a modif, not a new authority.
563 my $op = $input->param('op');
564 my $nonav = $input->param('nonav');
565 my $myindex = $input->param('index');
566 my $linkid=$input->param('linkid');
567 my $authtypecode = $input->param('authtypecode');
568 my $breedingid = $input->param('breedingid');
570 my $dbh = C4
::Context
->dbh;
572 $authtypecode = $authid ? Koha
::Authorities
->find($authid)->authtypecode : '';
575 my ($template, $loggedinuser, $cookie)
576 = get_template_and_user
({template_name
=> "authorities/authorities.tt",
579 authnotrequired
=> 0,
580 flagsrequired
=> {editauthorities
=> 1},
583 $template->param(nonav
=> $nonav,index=>$myindex,authtypecode
=>$authtypecode,breedingid
=>$breedingid,);
585 $tagslib = GetTagsLabels
(1,$authtypecode);
586 $mandatory_z3950 = GetMandatoryFieldZ3950
($authtypecode);
590 if (($authid) && !($breedingid)){
591 $record = GetAuthority
($authid);
594 ( $record, $encoding ) = MARCfindbreeding_auth
( $breedingid );
597 my ($oldauthnumtagfield,$oldauthnumtagsubfield);
598 my ($oldauthtypetagfield,$oldauthtypetagsubfield);
602 ($oldauthnumtagfield,$oldauthnumtagsubfield) = &GetAuthMARCFromKohaField
("auth_header.authid",$authtypecode);
603 ($oldauthtypetagfield,$oldauthtypetagsubfield) = &GetAuthMARCFromKohaField
("auth_header.authtypecode",$authtypecode);
606 #------------------------------------------------------------------------------------------------------------------------------
608 #------------------------------------------------------------------------------------------------------------------------------
610 my @tags = $input->multi_param('tag');
611 my @subfields = $input->multi_param('subfield');
612 my @values = $input->multi_param('field_value');
613 # build indicator hash.
614 my @ind_tag = $input->multi_param('ind_tag');
615 my @indicator = $input->multi_param('indicator');
616 my $record = TransformHtmlToMarc
($input, 0);
618 my ($duplicateauthid,$duplicateauthvalue);
619 ($duplicateauthid,$duplicateauthvalue) = FindDuplicateAuthority
($record,$authtypecode) if ($op eq "add") && (!$is_a_modif);
620 my $confirm_not_duplicate = $input->param('confirm_not_duplicate');
621 # it is not a duplicate (determined either by Koha itself or by user checking it's not a duplicate)
622 if (!$duplicateauthid or $confirm_not_duplicate) {
624 ModAuthority
($authid,$record,$authtypecode);
626 ($authid) = AddAuthority
($record,$authid,$authtypecode);
629 print $input->redirect("blinddetail-biblio-search.pl?authid=$authid&index=$myindex");
631 print $input->redirect("detail.pl?authid=$authid");
635 # it may be a duplicate, warn the user and do nothing
636 build_tabs
($template, $record, $dbh, $encoding,$input);
638 $template->param(authid
=>$authid,
639 duplicateauthid
=> $duplicateauthid,
640 duplicateauthvalue
=> $duplicateauthvalue->{'authorized'}->[0]->{'heading'},
643 } elsif ($op eq "delete") {
644 #------------------------------------------------------------------------------------------------------------------------------
645 DelAuthority
({ authid
=> $authid });
647 print $input->redirect("auth_finder.pl");
649 print $input->redirect("authorities-home.pl?authid=0");
653 if ($op eq "duplicate")
657 build_tabs
($template, $record, $dbh,$encoding,$input);
659 $template->param(oldauthtypetagfield
=>$oldauthtypetagfield, oldauthtypetagsubfield
=>$oldauthtypetagsubfield,
660 oldauthnumtagfield
=>$oldauthnumtagfield, oldauthnumtagsubfield
=>$oldauthnumtagsubfield,
661 authid
=> $authid , authtypecode
=>$authtypecode, );
664 my $authority_types = Koha
::Authority
::Types
->search( {}, { order_by
=> ['authtypetext'] } );
667 authority_types
=> $authority_types,
668 authtypecode
=> $authtypecode,
671 authtypetext
=> $authority_types->find($authtypecode)->authtypetext,
672 hide_marc
=> C4
::Context
->preference('hide_marc'),
674 output_html_with_http_headers
$input, $cookie, $template->output;