Head & rel_2_2 merged
[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 in bib parameter (bibnumber
30 from koha style DB.  Automaticaly maps to marc biblionumber).
31
32 It shows the biblio in a (nice) MARC format depending on MARC
33 parameters tables.
34
35 The template is in <templates_dir>/catalogue/MARCdetail.tmpl.
36 this template must be divided into 11 "tabs".
37
38 The first 10 tabs present the biblio, the 11th one presents
39 the items attached to the biblio
40
41 =head1 FUNCTIONS
42
43 =over 2
44
45 =cut
46
47
48 use strict;
49 require Exporter;
50 use C4::Auth;
51 use C4::Context;
52 use C4::Output;
53 use C4::Interface::CGI::Output;
54 use CGI;
55 use C4::Search;
56 use MARC::Record;
57 use C4::Biblio;
58 use C4::Acquisition;
59 use HTML::Template;
60
61 my $query=new CGI;
62
63 my $dbh=C4::Context->dbh;
64
65 my $biblionumber=$query->param('bib');
66 # my $bibid = $query->param('bibid');
67 # $bibid = &MARCfind_MARCbibid_from_oldbiblionumber($dbh,$biblionumber) unless $bibid;
68 # $biblionumber = &MARCfind_oldbiblionumber_from_MARCbibid($dbh,$bibid) unless $biblionumber;
69 # my $itemtype = &MARCfind_frameworkcode($dbh,$bibid);
70 my $framework = "";
71 my $itemtype = "";
72 my $tagslib = &MARCgettagslib($dbh,0,$framework);
73
74 my $record = get_record($biblionumber);
75 # open template
76 my ($template, $loggedinuser, $cookie)
77                 = get_template_and_user({template_name => "opac-MARCdetail.tmpl",
78                              query => $query,
79                              type => "opac",
80                              authnotrequired => 1,
81                              debug => 1,
82                              });
83
84 # fill arrays
85 my @loop_data =();
86 my $tag;
87 # loop through each tab 0 through 9
88 for (my $tabloop = 0; $tabloop<=10;$tabloop++) {
89 # loop through each tag
90         my @loop_data =();
91         my @subfields_data;
92         # deal with leader
93         unless ($tagslib->{'000'}->{'@'}->{tab}  ne $tabloop  or $tagslib->{'000'}->{'@'}->{hidden}>0) {
94                 my %subfield_data;
95                 $subfield_data{marc_lib}=$tagslib->{'000'}->{'@'}->{lib};
96                 $subfield_data{marc_value}=$record->leader();
97                 $subfield_data{marc_subfield}='@';
98                 $subfield_data{marc_tag}='000';
99                 push(@subfields_data, \%subfield_data);
100                 my %tag_data;
101                         $tag_data{tag}='000 -'. $tagslib->{'000'}->{lib};
102                 my @tmp = @subfields_data;
103                 $tag_data{subfield} = \@tmp;
104                 push (@loop_data, \%tag_data);
105                 undef @subfields_data;
106         }
107         my @fields = $record->fields();
108         for (my $x_i=0;$x_i<=$#fields;$x_i++) {
109                 # if tag <10, there's no subfield, use the "@" trick
110                 if ($fields[$x_i]->tag()<10) {
111                         next if ($tagslib->{$fields[$x_i]->tag()}->{'@'}->{tab}  ne $tabloop);
112                         next if ($tagslib->{$fields[$x_i]->tag()}->{'@'}->{hidden}>0);
113                         my %subfield_data;
114                         $subfield_data{marc_lib}=$tagslib->{$fields[$x_i]->tag()}->{'@'}->{lib};
115                         $subfield_data{marc_value}=$fields[$x_i]->data();
116                         $subfield_data{marc_subfield}='@';
117                         $subfield_data{marc_tag}=$fields[$x_i]->tag();
118                         push(@subfields_data, \%subfield_data);
119                 } else {
120                         my @subf=$fields[$x_i]->subfields;
121         # loop through each subfield
122                         for my $i (0..$#subf) {
123                                 $subf[$i][0] = "@" unless $subf[$i][0];
124                                 next if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{tab}  ne $tabloop);
125                                 next if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{hidden}>0);
126                                 my %subfield_data;
127                                 $subfield_data{marc_lib}=$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{lib};
128                                 $subfield_data{link}=$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{link};
129                                 $subf[$i][1] =~ s/\n/<br\/>/g;
130                                 if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{isurl}) {
131                                         $subfield_data{marc_value}="<a href=\"$subf[$i][1]\">$subf[$i][1]</a>";
132                                 } elsif ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{kohafield} eq "biblioitems.isbn") {
133 #                                       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]);
134                                         $subfield_data{marc_value}=DisplayISBN($subf[$i][1]);
135                                 } else {
136                                         if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{authtypecode}) {
137                                                 $subfield_data{authority}=$fields[$x_i]->subfield(9);
138                                         }
139                                         $subfield_data{marc_value}=get_authorised_value_desc($fields[$x_i]->tag(), $subf[$i][0], $subf[$i][1], '', $dbh);
140                                 }
141                                 $subfield_data{marc_subfield}=$subf[$i][0];
142                                 $subfield_data{marc_tag}=$fields[$x_i]->tag();
143                                 push(@subfields_data, \%subfield_data);
144                         }
145                 }
146                 if ($#subfields_data>=0) {
147                         my %tag_data;
148                         if (($fields[$x_i]->tag() eq $fields[$x_i-1]->tag()) && (C4::Context->preference('LabelMARCView') eq 'economical')) {
149                                 $tag_data{tag}="";
150                         } else {
151                                 if (C4::Context->preference('hide_marc')) {
152                                         $tag_data{tag}=$tagslib->{$fields[$x_i]->tag()}->{lib};
153                                 } else {
154                                         $tag_data{tag}=$fields[$x_i]->tag().' -'. $tagslib->{$fields[$x_i]->tag()}->{lib};
155                                 }
156                         }
157                         my @tmp = @subfields_data;
158                         $tag_data{subfield} = \@tmp;
159                         push (@loop_data, \%tag_data);
160                         undef @subfields_data;
161                 }
162         }
163         $template->param($tabloop."XX" =>\@loop_data);
164 }
165 # now, build item tab !
166 # the main difference is that datas are in lines and not in columns : thus, we build the <th> first, then the values...
167 # loop through each tag
168 # warning : we may have differents number of columns in each row. Thus, we first build a hash, complete it if necessary
169 # then construct template.
170 my @fields = $record->fields();
171 my %witness; #---- stores the list of subfields used at least once, with the "meaning" of the code
172 my @big_array;
173 foreach my $field (@fields) {
174         next if ($field->tag()<10);
175         my @subf=$field->subfields;
176         my %this_row;
177 # loop through each subfield
178         for my $i (0..$#subf) {
179                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne 10);
180                 $witness{$subf[$i][0]} = $tagslib->{$field->tag()}->{$subf[$i][0]}->{lib};
181         if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{isurl}) {
182             $this_row{$subf[$i][0]}="<a href=\"$subf[$i][1]\">$subf[$i][1]</a>";
183         } elsif ($tagslib->{$field->tag()}->{$subf[$i][0]}->{kohafield} eq "biblioitems.isbn") {
184             $this_row{$subf[$i][0]}=DisplayISBN($subf[$i][1]);
185         } else {
186             $this_row{$subf[$i][0]}=get_authorised_value_desc($field->tag(), $subf[$i][0], $subf[$i][1], '', $dbh);
187         }
188         }
189         if (%this_row) {
190                 push(@big_array, \%this_row);
191         }
192 }
193 my ($holdingbrtagf,$holdingbrtagsubf) = &MARCfind_marc_from_kohafield($dbh,"items.holdingbranch",$itemtype);
194 @big_array = sort {$a->{$holdingbrtagsubf} cmp $b->{$holdingbrtagsubf}} @big_array;
195 #fill big_row with missing datas
196 foreach my $subfield_code  (keys(%witness)) {
197         for (my $i=0;$i<=$#big_array;$i++) {
198                 $big_array[$i]{$subfield_code}="&nbsp;" unless ($big_array[$i]{$subfield_code});
199         }
200 }
201 # now, construct template !
202 my @item_value_loop;
203 my @header_value_loop;
204 for (my $i=0;$i<=$#big_array; $i++) {
205         my $items_data;
206         foreach my $subfield_code (keys(%witness)) {
207                 $items_data .="<td>".$big_array[$i]{$subfield_code}."</td>";
208         }
209         my %row_data;
210         $row_data{item_value} = $items_data;
211         push(@item_value_loop,\%row_data);
212 }
213 foreach my $subfield_code (keys(%witness)) {
214         my %header_value;
215         $header_value{header_value} = $witness{$subfield_code};
216         push(@header_value_loop, \%header_value);
217 }
218
219 $template->param(item_loop => \@item_value_loop,
220                                 item_header_loop => \@header_value_loop,
221                                 biblionumber => $biblionumber
222 );
223 output_html_with_http_headers $query, $cookie, $template->output;
224
225 sub get_authorised_value_desc ($$$$$) {
226    my($tag, $subfield, $value, $framework, $dbh) = @_;
227
228    #---- branch
229     if ($tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
230 #       return getbranchdetail($value)->{branchname};
231     }
232
233    #---- itemtypes
234    if ($tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "itemtypes" ) {
235 #       return ItemType($value);
236     }
237
238    #---- "true" authorized value
239    my $category = $tagslib->{$tag}->{$subfield}->{'authorised_value'};
240
241    if ($category ne "") {
242        my $sth = $dbh->prepare("select lib from authorised_values where category = ? and authorised_value = ?");
243        $sth->execute($category, $value);
244        my $data = $sth->fetchrow_hashref;
245        return $data->{'lib'};
246    } else {
247        return $value; # if nothing is found return the original value
248    }
249 }