478a1bf1fc769342b96d9ab30480080e5eca7749
[koha.git] / authorities / blinddetail-biblio-search.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
16 #
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>.
19
20 =head1 NAME
21
22 blinddetail-biblio-search.pl : script to show an authority in MARC format
23
24 =head1 SYNOPSIS
25
26 =cut
27
28 =head1 DESCRIPTION
29
30 This script needs an authid
31
32 It shows the authority in a (nice) MARC format depending on authority MARC
33 parameters tables.
34
35 =head1 FUNCTIONS
36
37 =cut
38
39 use Modern::Perl;
40
41 use C4::AuthoritiesMarc;
42 use C4::Auth;
43 use C4::Context;
44 use C4::Output;
45 use CGI qw ( -utf8 );
46 use MARC::Record;
47 use C4::Koha;
48
49 use Koha::Authorities;
50 use Koha::Authority::Types;
51
52 my $query = CGI->new;
53
54 my $dbh = C4::Context->dbh;
55
56 my $authid       = $query->param('authid');
57 my $index        = $query->param('index');
58 my $tagid        = $query->param('tagid');
59 my $relationship = $query->param('relationship');
60
61 # open template
62 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
63     {
64         template_name   => "authorities/blinddetail-biblio-search.tt",
65         query           => $query,
66         type            => "intranet",
67         flagsrequired   => { editcatalogue => 'edit_catalogue' },
68     }
69 );
70
71 # Extract the tag number from the index
72 my $tag_number = $index;
73 $tag_number =~ s/^tag_(\d*)_.*$/$1/;
74
75 # fill arrays
76 my @subfield_loop;
77 my ($indicator1, $indicator2);
78 if ($authid) {
79     my $auth = Koha::Authorities->find( $authid );
80     my $authtypecode = $auth ? $auth->authtypecode : q{};
81     my $auth_type = Koha::Authority::Types->find($authtypecode);
82     my $record = GetAuthority($authid);
83     my @fields = $record->field( $auth_type->auth_tag_to_report );
84     my $repet = ($query->param('repet') || 1) - 1;
85     my $field = $fields[$repet];
86
87     # Get all values for each distinct subfield and add to subfield loop
88     my %done_subfields;
89     for ( $field->subfields ) {
90         next if $_->[0] eq '9'; # $9 will be set with authid value
91         my $letter = $_->[0];
92         $letter ||= '@';
93         next if defined $done_subfields{$letter};
94         my @values = $field->subfield($letter);
95         push @subfield_loop, {marc_subfield => $letter, marc_values => \@values };
96         $done_subfields{$letter} = 1;
97     }
98
99     push( @subfield_loop, { marc_subfield => 'w', marc_values => $relationship } ) if ( $relationship );
100
101     my $controlled_ind = $auth->controlled_indicators({ record => $record, biblio_tag => $tag_number });
102     $indicator1 = $controlled_ind->{ind1};
103     $indicator2 = $controlled_ind->{ind2};
104     if( defined $controlled_ind->{sub2} ) {
105         my $v = $controlled_ind->{sub2};
106         push @subfield_loop, { marc_subfield => '2', marc_values => [ $v ] };
107     }
108 } else {
109     # authid is empty => the user want to empty the entry.
110     $template->param( "clear" => 1 );
111 }
112
113
114
115 $template->param(
116     authid          => $authid ? $authid : "",
117     index           => $index,
118     tagid           => $tagid,
119     update_ind1     => defined($indicator1),
120     indicator1      => $indicator1,
121     update_ind2     => defined($indicator2),
122     indicator2      => $indicator2,
123     SUBFIELD_LOOP   => \@subfield_loop,
124     tag_number      => $tag_number,
125     rancor          => $index =~ /rancor$/,
126 );
127
128
129 output_html_with_http_headers $query, $cookie, $template->output;