Adding email address to list of returned variables
[koha.git] / 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 C4::Bull; #uses getsubscriptionfrom biblionumber
60 use HTML::Template;
61
62 my $query=new CGI;
63
64 my $dbh=C4::Context->dbh;
65
66 my $biblionumber=$query->param('bib');
67 my $bibid = $query->param('bibid');
68 my $popup = $query->param('popup'); # if set to 1, then don't insert links, it's just to show the biblio
69
70 $bibid = &MARCfind_MARCbibid_from_oldbiblionumber($dbh,$biblionumber) unless $bibid;
71 $biblionumber = &MARCfind_oldbiblionumber_from_MARCbibid($dbh,$bibid) unless $biblionumber;
72 my $itemtype = &MARCfind_frameworkcode($dbh,$bibid);
73 my $tagslib = &MARCgettagslib($dbh,1,$itemtype);
74
75 my $record =MARCgetbiblio($dbh,$bibid);
76 # open template
77 my ($template, $loggedinuser, $cookie)
78                 = get_template_and_user({template_name => "catalogue/MARCdetail.tmpl",
79                              query => $query,
80                              type => "intranet",
81                              authnotrequired => 0,
82                              flagsrequired => {catalogue => 1},
83                              debug => 1,
84                              });
85
86 # fill arrays
87 my @loop_data =();
88 my $tag;
89 # loop through each tab 0 through 9
90 for (my $tabloop = 0; $tabloop<=10;$tabloop++) {
91 # loop through each tag
92         my @fields = $record->fields();
93         my @loop_data =();
94 #       foreach my $field (@fields) {
95         my @subfields_data;
96         for (my $x_i=0;$x_i<=$#fields;$x_i++) {
97 #               warn "$tabloop => $x_i";
98                 # if tag <10, there's no subfield, use the "@" trick
99                 if ($fields[$x_i]->tag()<10) {
100                         next if ($tagslib->{$fields[$x_i]->tag()}->{'@'}->{tab}  ne $tabloop);
101                         next if ($tagslib->{$fields[$x_i]->tag()}->{'@'}->{hidden});
102                         my %subfield_data;
103                         $subfield_data{marc_lib}=$tagslib->{$fields[$x_i]->tag()}->{'@'}->{lib};
104                         $subfield_data{marc_value}=$fields[$x_i]->data();
105                         $subfield_data{marc_subfield}='@';
106                         $subfield_data{marc_tag}=$fields[$x_i]->tag();
107                         push(@subfields_data, \%subfield_data);
108                 } else {
109                         my @subf=$fields[$x_i]->subfields;
110         # loop through each subfield
111                         for my $i (0..$#subf) {
112                                 $subf[$i][0] = "@" unless $subf[$i][0];
113                                 next if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{tab}  ne $tabloop);
114                                 next if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{hidden});
115                                 my %subfield_data;
116                                 $subfield_data{marc_lib}=$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{lib};
117                                 $subfield_data{link}=$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{link};
118                                 if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{isurl}) {
119                                         $subfield_data{marc_value}="<a href=\"$subf[$i][1]\">$subf[$i][1]</a>";
120                                 } else {
121                                         if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{authtypecode}) {
122                                                 $subfield_data{authority}=$fields[$x_i]->subfield(9);
123                                         }
124                                         $subfield_data{marc_value}=$subf[$i][1];
125                                 }
126                                 $subfield_data{marc_subfield}=$subf[$i][0];
127                                 $subfield_data{marc_tag}=$fields[$x_i]->tag();
128                                 push(@subfields_data, \%subfield_data);
129                         }
130                 }
131                 if ($#subfields_data>=0) {
132                         my %tag_data;
133                         if ($fields[$x_i]->tag() eq $fields[$x_i-1]->tag()) {
134                                 $tag_data{tag}="";
135                         } else {
136                                 $tag_data{tag}=$fields[$x_i]->tag().' -'. $tagslib->{$fields[$x_i]->tag()}->{lib};
137                         }
138                         my @tmp = @subfields_data;
139                         $tag_data{subfield} = \@tmp;
140                         push (@loop_data, \%tag_data);
141                         undef @subfields_data;
142                 }
143         }
144         $template->param($tabloop."XX" =>\@loop_data);
145 }
146 # now, build item tab !
147 # the main difference is that datas are in lines and not in columns : thus, we build the <th> first, then the values...
148 # loop through each tag
149 # warning : we may have differents number of columns in each row. Thus, we first build a hash, complete it if necessary
150 # then construct template.
151 my @fields = $record->fields();
152 my %witness; #---- stores the list of subfields used at least once, with the "meaning" of the code
153 my @big_array;
154 foreach my $field (@fields) {
155         next if ($field->tag()<10);
156         my @subf=$field->subfields;
157         my %this_row;
158 # loop through each subfield
159         for my $i (0..$#subf) {
160                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne 10);
161                 $witness{$subf[$i][0]} = $tagslib->{$field->tag()}->{$subf[$i][0]}->{lib};
162                 $this_row{$subf[$i][0]} =$subf[$i][1];
163         }
164         if (%this_row) {
165                 push(@big_array, \%this_row);
166         }
167 }
168 #fill big_row with missing datas
169 foreach my $subfield_code  (keys(%witness)) {
170         for (my $i=0;$i<=$#big_array;$i++) {
171                 $big_array[$i]{$subfield_code}="&nbsp;" unless ($big_array[$i]{$subfield_code});
172         }
173 }
174 # now, construct template !
175 my @item_value_loop;
176 my @header_value_loop;
177 for (my $i=0;$i<=$#big_array; $i++) {
178         my $items_data;
179         foreach my $subfield_code (keys(%witness)) {
180                 $items_data .="<td>".$big_array[$i]{$subfield_code}."</td>";
181         }
182         my %row_data;
183         $row_data{item_value} = $items_data;
184         push(@item_value_loop,\%row_data);
185 }
186 foreach my $subfield_code (keys(%witness)) {
187         my %header_value;
188         $header_value{header_value} = $witness{$subfield_code};
189         push(@header_value_loop, \%header_value);
190 }
191
192 my $subscriptionid = getsubscriptionfrombiblionumber($biblionumber);
193 $template->param(item_loop => \@item_value_loop,
194                                                 item_header_loop => \@header_value_loop,
195                                                 biblionumber => $biblionumber,
196                                                 bibid => $bibid,
197                                                 biblionumber => $biblionumber,
198                                                 subscriptionid => $subscriptionid,
199                                                 popup => $popup,
200                                                 );
201 output_html_with_http_headers $query, $cookie, $template->output;
202