fix for bug 1625: Pass title, subtitle, and author variables to MARC views
[koha.git] / opac / opac-MARCdetail.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 MARCdetail.pl : script to show a biblio in MARC format
23
24 =head1 SYNOPSIS
25
26
27 =head1 DESCRIPTION
28
29 This script needs a biblionumber as  parameter
30
31 It shows the biblio in a (nice) MARC format depending on MARC
32 parameters tables.
33
34 The template is in <templates_dir>/catalogue/MARCdetail.tmpl.
35 this template must be divided into 11 "tabs".
36
37 The first 10 tabs present the biblio, the 11th one presents
38 the items attached to the biblio
39
40 =cut
41
42 use strict;
43 require Exporter;
44 use C4::Auth;
45 use C4::Context;
46 use C4::Output;
47 use CGI;
48 use MARC::Record;
49 use C4::Biblio;
50 use C4::Acquisition;
51 use C4::Koha;
52
53 my $query = new CGI;
54
55 my $dbh = C4::Context->dbh;
56
57 my $biblionumber = $query->param('biblionumber');
58 my $itemtype     = &GetFrameworkCode($biblionumber);
59 my $tagslib      = &GetMarcStructure( 0, $itemtype );
60 my $biblio = GetBiblioData($biblionumber);
61 my $record = GetMarcBiblio($biblionumber);
62
63 # open template
64 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
65     {
66         template_name   => "opac-MARCdetail.tmpl",
67         query           => $query,
68         type            => "opac",
69         authnotrequired => 1,
70         debug           => 1,
71     }
72 );
73
74 $template->param(
75     bibliotitle => $biblio->{title},
76 );
77
78 # adding the $RequestOnOpac param
79 my $RequestOnOpac;
80 if (C4::Context->preference("RequestOnOpac")) {
81         $RequestOnOpac = 1;
82 }
83
84 # fill arrays
85 my @loop_data = ();
86 my $tag;
87
88 # loop through each tab 0 through 9
89 for ( my $tabloop = 0 ; $tabloop <= 10 ; $tabloop++ ) {
90
91     # loop through each tag
92     my @loop_data = ();
93     my @subfields_data;
94
95     # deal with leader
96     unless ( $tagslib->{'000'}->{'@'}->{tab} ne $tabloop
97         or $tagslib->{'000'}->{'@'}->{hidden} > 0 )
98     {
99         my %subfield_data;
100         $subfield_data{marc_lib}      = $tagslib->{'000'}->{'@'}->{lib};
101         $subfield_data{marc_value}    = $record->leader();
102         $subfield_data{marc_subfield} = '@';
103         $subfield_data{marc_tag}      = '000';
104         push( @subfields_data, \%subfield_data );
105         my %tag_data;
106         $tag_data{tag} = '000 -' . $tagslib->{'000'}->{lib};
107         my @tmp = @subfields_data;
108         $tag_data{subfield} = \@tmp;
109         push( @loop_data, \%tag_data );
110         undef @subfields_data;
111     }
112     my @fields = $record->fields();
113     for ( my $x_i = 0 ; $x_i <= $#fields ; $x_i++ ) {
114
115         # if tag <10, there's no subfield, use the "@" trick
116         if ( $fields[$x_i]->tag() < 10 ) {
117             next
118               if (
119                 $tagslib->{ $fields[$x_i]->tag() }->{'@'}->{tab} ne $tabloop );
120             next if ( $tagslib->{ $fields[$x_i]->tag() }->{'@'}->{hidden} > 0 );
121             my %subfield_data;
122             $subfield_data{marc_lib} =
123               $tagslib->{ $fields[$x_i]->tag() }->{'@'}->{lib};
124             $subfield_data{marc_value}    = $fields[$x_i]->data();
125             $subfield_data{marc_subfield} = '@';
126             $subfield_data{marc_tag}      = $fields[$x_i]->tag();
127             push( @subfields_data, \%subfield_data );
128         }
129         else {
130             my @subf = $fields[$x_i]->subfields;
131
132             # loop through each subfield
133             for my $i ( 0 .. $#subf ) {
134                 $subf[$i][0] = "@" unless $subf[$i][0];
135                 next
136                   if (
137                     $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }->{tab}
138                     ne $tabloop );
139                 next
140                   if ( $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }
141                     ->{hidden} > 0 );
142                 my %subfield_data;
143                 $subfield_data{marc_lib} =
144                   $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }->{lib};
145                 $subfield_data{link} =
146                   $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }->{link};
147                 $subf[$i][1] =~ s/\n/<br\/>/g;
148                 if ( $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }
149                     ->{isurl} )
150                 {
151                     $subfield_data{marc_value} =
152                       "<a href=\"$subf[$i][1]\">$subf[$i][1]</a>";
153                 }
154                 elsif ( $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }
155                     ->{kohafield} eq "biblioitems.isbn" )
156                 {
157
158 #                    warn " tag : ".$tagslib->{$fields[$x_i]->tag()}." subfield :".$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}. "ISBN : ".$subf[$i][1]."PosttraitementISBN :".DisplayISBN($subf[$i][1]);
159                     $subfield_data{marc_value} = DisplayISBN( $subf[$i][1] );
160                 }
161                 else {
162                     if ( $tagslib->{ $fields[$x_i]->tag() }->{ $subf[$i][0] }
163                         ->{authtypecode} )
164                     {
165                         $subfield_data{authority} = $fields[$x_i]->subfield(9);
166                     }
167                     $subfield_data{marc_value} =
168                       GetAuthorisedValueDesc( $fields[$x_i]->tag(),
169                         $subf[$i][0], $subf[$i][1], '', $tagslib );
170                 }
171                 $subfield_data{marc_subfield} = $subf[$i][0];
172                 $subfield_data{marc_tag}      = $fields[$x_i]->tag();
173                 push( @subfields_data, \%subfield_data );
174             }
175         }
176         if ( $#subfields_data >= 0 ) {
177             my %tag_data;
178             if (   ( $fields[$x_i]->tag() eq $fields[ $x_i - 1 ]->tag() )
179                 && ( C4::Context->preference('LabelMARCView') eq 'economical' )
180               )
181             {
182                 $tag_data{tag} = "";
183             }
184             else {
185                 if ( C4::Context->preference('hide_marc') ) {
186                     $tag_data{tag} = $tagslib->{ $fields[$x_i]->tag() }->{lib};
187                 }
188                 else {
189                     $tag_data{tag} =
190                         $fields[$x_i]->tag() . ' -'
191                       . $tagslib->{ $fields[$x_i]->tag() }->{lib};
192                 }
193             }
194             my @tmp = @subfields_data;
195             $tag_data{subfield} = \@tmp;
196             push( @loop_data, \%tag_data );
197             undef @subfields_data;
198         }
199     }
200     $template->param( $tabloop . "XX" => \@loop_data );
201 }
202
203
204 # now, build item tab !
205 # the main difference is that datas are in lines and not in columns : thus, we build the <th> first, then the values...
206 # loop through each tag
207 # warning : we may have differents number of columns in each row. Thus, we first build a hash, complete it if necessary
208 # then construct template.
209 my @fields = $record->fields();
210 my %witness
211   ; #---- stores the list of subfields used at least once, with the "meaning" of the code
212 my @big_array;
213 foreach my $field (@fields) {
214     next if ( $field->tag() < 10 );
215     my @subf = $field->subfields;
216     my %this_row;
217
218     # loop through each subfield
219     for my $i ( 0 .. $#subf ) {
220         next if ( $tagslib->{ $field->tag() }->{ $subf[$i][0] }->{tab} ne 10 );
221         $witness{ $subf[$i][0] } =
222           $tagslib->{ $field->tag() }->{ $subf[$i][0] }->{lib};
223         if ( $tagslib->{ $field->tag() }->{ $subf[$i][0] }->{isurl} ) {
224             $this_row{ $subf[$i][0] } =
225               "<a href=\"$subf[$i][1]\">$subf[$i][1]</a>";
226         }
227         elsif ( $tagslib->{ $field->tag() }->{ $subf[$i][0] }->{kohafield} eq
228             "biblioitems.isbn" )
229         {
230             $this_row{ $subf[$i][0] } = DisplayISBN( $subf[$i][1] );
231         }
232         else {
233             $this_row{ $subf[$i][0] } =
234               GetAuthorisedValueDesc( $field->tag(), $subf[$i][0],
235                 $subf[$i][1], '', $tagslib );
236         }
237     }
238     if (%this_row) {
239         push( @big_array, \%this_row );
240     }
241 }
242 my ( $holdingbrtagf, $holdingbrtagsubf ) =
243   &GetMarcFromKohaField( "items.holdingbranch", $itemtype );
244 @big_array =
245   sort { $a->{$holdingbrtagsubf} cmp $b->{$holdingbrtagsubf} } @big_array;
246
247 #fill big_row with missing datas
248 foreach my $subfield_code ( keys(%witness) ) {
249     for ( my $i = 0 ; $i <= $#big_array ; $i++ ) {
250         $big_array[$i]{$subfield_code} = "&nbsp;"
251           unless ( $big_array[$i]{$subfield_code} );
252     }
253 }
254
255 # now, construct template !
256 my @item_value_loop;
257 my @header_value_loop;
258 for ( my $i = 0 ; $i <= $#big_array ; $i++ ) {
259     my $items_data;
260     foreach my $subfield_code ( keys(%witness) ) {
261         $items_data .= "<td>" . $big_array[$i]{$subfield_code} . "</td>";
262     }
263     my %row_data;
264     $row_data{item_value} = $items_data;
265     push( @item_value_loop, \%row_data );
266 }
267
268 foreach my $subfield_code ( keys(%witness) ) {
269     my %header_value;
270     $header_value{header_value} = $witness{$subfield_code};
271     push( @header_value_loop, \%header_value );
272 }
273
274 if(C4::Context->preference("ISBD")) {
275         $template->param(ISBD => 1);
276 }
277
278 $template->param(
279     item_loop        => \@item_value_loop,
280     item_header_loop => \@header_value_loop,
281     biblionumber     => $biblionumber,
282 );
283
284 output_html_with_http_headers $query, $cookie, $template->output;