66bf8ce2fee2ebd2644325f741684881459b5fc5
[srvgit] / authorities / detail-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 detail-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 # use C4::Biblio;
49 # use C4::Catalogue;
50
51 use Koha::Authorities;
52 use Koha::Authority::Types;
53
54 my $query=CGI->new;
55
56 my $dbh=C4::Context->dbh;
57
58 my $authid = $query->param('authid');
59 my $index = $query->param('index');
60 my $authtypecode = Koha::Authorities->find($authid)->authtypecode;
61 my $tagslib = &GetTagsLabels(1,$authtypecode);
62
63 my $record =GetAuthority($authid);
64 # open template
65 my ($template, $loggedinuser, $cookie) = get_template_and_user(
66     {
67         template_name   => "authorities/detail-biblio-search.tt",
68         query           => $query,
69         type            => "intranet",
70         flagsrequired   => { catalogue => 1 },
71     }
72 );
73
74 # fill arrays
75 my @loop_data =();
76 # loop through each tab 0 through 9
77 # for (my $tabloop = 0; $tabloop<=10;$tabloop++) {
78 # loop through each tag
79 my @fields = $record->fields();
80         foreach my $field (@fields) {
81                         my @subfields_data;
82                 # if tag <10, there's no subfield, use the "@" trick
83                 if ($field->tag()<10) {
84 #                       next if ($tagslib->{$field->tag()}->{'@'}->{tab}  ne $tabloop);
85                         next if ($tagslib->{$field->tag()}->{'@'}->{hidden});
86                         my %subfield_data;
87                         $subfield_data{marc_lib}=$tagslib->{$field->tag()}->{'@'}->{lib};
88                         $subfield_data{marc_value}=$field->data();
89                         $subfield_data{marc_subfield}='@';
90                         $subfield_data{marc_tag}=$field->tag();
91                         push(@subfields_data, \%subfield_data);
92                 } else {
93                         my @subf=$field->subfields;
94         # loop through each subfield
95                         for my $i (0..$#subf) {
96                                 $subf[$i][0] = "@" unless defined $subf[$i][0];
97 #                               next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne $tabloop);
98                                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{hidden});
99                                 my %subfield_data;
100                                 $subfield_data{marc_lib}=$tagslib->{$field->tag()}->{$subf[$i][0]}->{lib};
101                                 if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{isurl}) {
102                                         $subfield_data{marc_value}="<a href=\"$subf[$i][1]\">$subf[$i][1]</a>";
103                                 } else {
104                                         $subfield_data{marc_value}=$subf[$i][1];
105                                 }
106                                 $subfield_data{marc_subfield}=$subf[$i][0];
107                                 $subfield_data{marc_tag}=$field->tag();
108                                 push(@subfields_data, \%subfield_data);
109                         }
110                 }
111                 if ($#subfields_data>=0) {
112                         my %tag_data;
113                         $tag_data{tag}=$field->tag().' -'. $tagslib->{$field->tag()}->{lib};
114                         $tag_data{subfield} = \@subfields_data;
115                         push (@loop_data, \%tag_data);
116                 }
117         }
118         $template->param("0XX" =>\@loop_data);
119
120 my $authority_types = Koha::Authority::Types->search( {}, { order_by => ['authtypetext'] } );
121
122 $template->param(
123     authid          => $authid,
124     authority_types => $authority_types,
125     index           => $index,
126 );
127 output_html_with_http_headers $query, $cookie, $template->output;
128