Missed test
[koha.git] / 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 under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA  02111-1307 USA
19
20 =head1 NAME
21
22 etail.pl : script to show an authority in MARC format
23
24 =head1 SYNOPSIS
25
26
27 =head1 DESCRIPTION
28
29 This script needs an authid
30
31 It shows the authority in a (nice) MARC format depending on authority MARC
32 parameters tables.
33
34 =head1 FUNCTIONS
35
36 =over 2
37
38 =cut
39
40
41 use strict;
42 require Exporter;
43 use C4::AuthoritiesMarc;
44 use C4::Auth;
45 use C4::Context;
46 use C4::Output;
47 use CGI;
48 use MARC::Record;
49 use C4::Koha;
50 # use C4::Biblio;
51 # use C4::Catalogue;
52
53
54 my $query=new CGI;
55
56 my $dbh=C4::Context->dbh;
57
58 my $authid = $query->param('authid');
59 my $index = $query->param('index');
60 my $authtypecode = &GetAuthTypeCode($authid);
61 my $tagslib = &GetTagsLabels(1,$authtypecode);
62
63 my $record =GetAuthority($authid);
64 # open template
65 my ($template, $loggedinuser, $cookie)
66                 = get_template_and_user({template_name => "authorities/detail-biblio-search.tmpl",
67                              query => $query,
68                              type => "intranet",
69                              authnotrequired => 0,
70                              flagsrequired => {catalogue => 1},
71                              debug => 1,
72                              });
73
74 # fill arrays
75 my @loop_data =();
76 my $tag;
77 # loop through each tab 0 through 9
78 # for (my $tabloop = 0; $tabloop<=10;$tabloop++) {
79 # loop through each tag
80         my @fields = $record->fields();
81         my @loop_data =();
82         foreach my $field (@fields) {
83                         my @subfields_data;
84                 # if tag <10, there's no subfield, use the "@" trick
85                 if ($field->tag()<10) {
86 #                       next if ($tagslib->{$field->tag()}->{'@'}->{tab}  ne $tabloop);
87                         next if ($tagslib->{$field->tag()}->{'@'}->{hidden});
88                         my %subfield_data;
89                         $subfield_data{marc_lib}=$tagslib->{$field->tag()}->{'@'}->{lib};
90                         $subfield_data{marc_value}=$field->data();
91                         $subfield_data{marc_subfield}='@';
92                         $subfield_data{marc_tag}=$field->tag();
93                         push(@subfields_data, \%subfield_data);
94                 } else {
95                         my @subf=$field->subfields;
96         # loop through each subfield
97                         for my $i (0..$#subf) {
98                                 $subf[$i][0] = "@" unless $subf[$i][0];
99 #                               next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne $tabloop);
100                                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{hidden});
101                                 my %subfield_data;
102                                 $subfield_data{marc_lib}=$tagslib->{$field->tag()}->{$subf[$i][0]}->{lib};
103                                 if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{isurl}) {
104                                         $subfield_data{marc_value}="<a href=\"$subf[$i][1]\">$subf[$i][1]</a>";
105                                 } else {
106                                         $subfield_data{marc_value}=$subf[$i][1];
107                                 }
108                                 $subfield_data{marc_subfield}=$subf[$i][0];
109                                 $subfield_data{marc_tag}=$field->tag();
110                                 push(@subfields_data, \%subfield_data);
111                         }
112                 }
113                 if ($#subfields_data>=0) {
114                         my %tag_data;
115                         $tag_data{tag}=$field->tag().' -'. $tagslib->{$field->tag()}->{lib};
116                         $tag_data{subfield} = \@subfields_data;
117                         push (@loop_data, \%tag_data);
118                 }
119         }
120         $template->param("0XX" =>\@loop_data);
121
122 my $authtypes = getauthtypes;
123 my @authtypesloop;
124 foreach my $thisauthtype (keys %$authtypes) {
125         my $selected = 1 if $thisauthtype eq $authtypecode;
126         my %row =(value => $thisauthtype,
127                                 selected => $selected,
128                                 authtypetext => $authtypes->{$thisauthtype}{'authtypetext'},
129                         );
130         push @authtypesloop, \%row;
131 }
132
133 $template->param(authid => $authid,
134                 authtypesloop => \@authtypesloop, index => $index,
135                 intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
136                 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
137                 IntranetNav => C4::Context->preference("IntranetNav"),
138                 );
139 output_html_with_http_headers $query, $cookie, $template->output;
140