3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22 blinddetail-biblio-search.pl : script to show an authority in MARC format
30 This script needs an authid
32 It shows the authority in a (nice) MARC format depending on authority MARC
42 use C4
::AuthoritiesMarc
;
50 use Koha
::Authorities
;
51 use Koha
::Authority
::Types
;
55 my $dbh = C4
::Context
->dbh;
57 my $authid = $query->param('authid');
58 my $index = $query->param('index');
59 my $tagid = $query->param('tagid');
60 my $relationship = $query->param('relationship');
63 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
65 template_name
=> "authorities/blinddetail-biblio-search.tt",
69 flagsrequired
=> { editcatalogue
=> 'edit_catalogue' },
75 my ($indicator1, $indicator2);
77 my $authtypecode = Koha
::Authorities
->find($authid)->authtypecode;
78 my $auth_type = Koha
::Authority
::Types
->find($authtypecode);
79 my $record = GetAuthority
($authid);
80 my @fields = $record->field( $auth_type->auth_tag_to_report );
81 my $repet = ($query->param('repet') || 1) - 1;
82 my $field = $fields[$repet];
84 # Get all values for each distinct subfield
86 for ( $field->subfields ) {
87 next if $_->[0] eq '9'; # $9 will be set with authid value
89 next if defined $subfields{$letter};
90 my @values = $field->subfield($letter);
91 $subfields{$letter} = \
@values;
94 # Add all subfields to the subfield_loop
95 for( keys %subfields ) {
96 my $letter = $_ || '@';
97 push( @subfield_loop, {marc_subfield
=> $letter, marc_values
=> $subfields{$_}} );
100 push( @subfield_loop, { marc_subfield
=> 'w', marc_values
=> $relationship } ) if ( $relationship );
101 if (C4
::Context
->preference('marcflavour') eq 'UNIMARC') {
102 $indicator1 = $field->indicator('1');
103 $indicator2 = $field->indicator('2');
104 } elsif (C4
::Context
->preference('marcflavour') eq 'MARC21') {
105 my $tag_from = $auth_type->auth_tag_to_report;
107 $tag_to =~ s/^tag_(\d*)_.*$/$1/;
108 if ($tag_to =~ /^6/) { # subject heading
109 my %thes_mapping = qw
/ a
0
120 my $thes_008_11 = '';
121 $thes_008_11 = substr($record->field('008')->data(), 11, 1) if $record->field('008')->data();
122 $indicator2 = defined $thes_mapping{$thes_008_11} ?
$thes_mapping{$thes_008_11} : $thes_008_11;
123 if ($indicator2 eq '7') {
124 if ($thes_008_11 eq 'r') {
125 $subfields{'2'} = ['aat'];
126 } elsif ($thes_008_11 eq 's') {
127 $subfields{'2'} = ['sears'];
131 if ($tag_from eq '130') { # unified title -- the special case
132 if ($tag_to eq '830' || $tag_to eq '240') {
133 $indicator2 = $field->indicator('2');
135 $indicator1 = $field->indicator('2');
138 $indicator1 = $field->indicator('1');
143 # authid is empty => the user want to empty the entry.
144 $template->param( "clear" => 1 );
147 # Extract the tag number from the index
148 my $tag_number = $index;
149 $tag_number =~ s/^tag_(\d*)_.*$/$1/;
151 # Remove spaces in indicators
152 $indicator1 =~ s/\s//g;
153 $indicator2 =~ s/\s//g;
156 authid
=> $authid ?
$authid : "",
159 indicator1
=> $indicator1,
160 indicator2
=> $indicator2,
161 SUBFIELD_LOOP
=> \
@subfield_loop,
162 tag_number
=> $tag_number,
165 output_html_with_http_headers
$query, $cookie, $template->output;