New installer helper script
[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 getsubscriptionsfrombiblionumber
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 $itemtype = $query->param('frameworkcode');
69 my $popup = $query->param('popup'); # if set to 1, then don't insert links, it's just to show the biblio
70
71 $bibid = &MARCfind_MARCbibid_from_oldbiblionumber($dbh,$biblionumber) unless $bibid;
72 $biblionumber = &MARCfind_oldbiblionumber_from_MARCbibid($dbh,$bibid) unless $biblionumber;
73 $itemtype = &MARCfind_frameworkcode($dbh,$bibid) if not ($itemtype);
74 $itemtype = '' if ($itemtype eq 'Default');
75 warn "itemtype :".$itemtype;
76
77 my $tagslib = &MARCgettagslib($dbh,1,$itemtype);
78
79 my $record =MARCgetbiblio($dbh,$bibid);
80 # open template
81 my ($template, $loggedinuser, $cookie)
82                 = get_template_and_user({template_name => "catalogue/MARCdetail.tmpl",
83                              query => $query,
84                              type => "intranet",
85                              authnotrequired => 0,
86                              flagsrequired => {catalogue => 1},
87                              debug => 1,
88                              });
89
90 #Getting the list of all frameworks
91 my $queryfwk =$dbh->prepare("select frameworktext, frameworkcode from biblio_framework");
92 $queryfwk->execute;
93 my %select_fwk;
94 my @select_fwk;
95 my $curfwk;
96 push @select_fwk,"Default";
97 $select_fwk{"Default"} = "Default";
98 while (my ($description, $fwk) =$queryfwk->fetchrow) {
99         push @select_fwk, $fwk;
100         $select_fwk{$fwk} = $description;
101 }
102 $curfwk=$itemtype;
103 warn "current fwk :".$curfwk ;
104 my $framework=CGI::scrolling_list( -name     => 'Frameworks',
105                         -id => 'Frameworks',
106                         -default => $curfwk,
107                         -OnChange => 'Changefwk(this);',
108                         -values   => \@select_fwk,
109                         -labels   => \%select_fwk,
110                         -size     => 1,
111                         -multiple => 0 );
112
113 $template->param( framework => $framework);
114 # fill arrays
115 my @loop_data =();
116 my $tag;
117 # loop through each tab 0 through 9
118 for (my $tabloop = 0; $tabloop<=10;$tabloop++) {
119 # loop through each tag
120         my @fields = $record->fields();
121         my @loop_data =();
122 #       foreach my $field (@fields) {
123         my @subfields_data;
124         for (my $x_i=0;$x_i<=$#fields;$x_i++) {
125 #               warn "$tabloop => $x_i";
126                 # if tag <10, there's no subfield, use the "@" trick
127                 if ($fields[$x_i]->tag()<10) {
128                         next if ($tagslib->{$fields[$x_i]->tag()}->{'@'}->{tab}  ne $tabloop);
129                         next if ($tagslib->{$fields[$x_i]->tag()}->{'@'}->{hidden});
130                         my %subfield_data;
131                         $subfield_data{marc_lib}=$tagslib->{$fields[$x_i]->tag()}->{'@'}->{lib};
132                         $subfield_data{marc_value}=$fields[$x_i]->data();
133                         $subfield_data{marc_subfield}='@';
134                         $subfield_data{marc_tag}=$fields[$x_i]->tag();
135                         push(@subfields_data, \%subfield_data);
136                 } else {
137                         my @subf=$fields[$x_i]->subfields;
138         # loop through each subfield
139                         for my $i (0..$#subf) {
140                                 $subf[$i][0] = "@" unless $subf[$i][0];
141                                 next if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{tab}  ne $tabloop);
142                                 next if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{hidden});
143                                 my %subfield_data;
144                                 $subfield_data{marc_lib}=$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{lib};
145                                 $subfield_data{link}=$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{link};
146 #                               warn "tag : ".$tagslib->{$fields[$x_i]->tag()}." subfield :".$tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}."lien koha? : "$subfield_data{link};
147                                 if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{isurl}) {
148                                         $subfield_data{marc_value}="<a href=\"$subf[$i][1]\">$subf[$i][1]</a>";
149                                 } elsif ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{kohafield} eq "biblioitems.isbn") {
150 #                                       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]);
151                                         $subfield_data{marc_value}=DisplayISBN($subf[$i][1]);
152                                 } else {
153                                         if ($tagslib->{$fields[$x_i]->tag()}->{$subf[$i][0]}->{authtypecode}) {
154                                                 $subfield_data{authority}=$fields[$x_i]->subfield(9);
155                                         }
156                                         $subfield_data{marc_value}=get_authorised_value_desc($fields[$x_i]->tag(), $subf[$i][0], $subf[$i][1], '', $dbh);
157                                 }
158                                 $subfield_data{marc_subfield}=$subf[$i][0];
159                                 $subfield_data{marc_tag}=$fields[$x_i]->tag();
160                                 push(@subfields_data, \%subfield_data);
161                         }
162                 }
163                 if ($#subfields_data>=0) {
164                         my %tag_data;
165                         if ($fields[$x_i]->tag() eq $fields[$x_i-1]->tag()) {
166                                 $tag_data{tag}="";
167                         } else {
168                                 $tag_data{tag}=$fields[$x_i]->tag().' -'. $tagslib->{$fields[$x_i]->tag()}->{lib};
169                         }
170                         my @tmp = @subfields_data;
171                         $tag_data{subfield} = \@tmp;
172                         push (@loop_data, \%tag_data);
173                         undef @subfields_data;
174                 }
175         }
176         $template->param($tabloop."XX" =>\@loop_data);
177 }
178 # now, build item tab !
179 # the main difference is that datas are in lines and not in columns : thus, we build the <th> first, then the values...
180 # loop through each tag
181 # warning : we may have differents number of columns in each row. Thus, we first build a hash, complete it if necessary
182 # then construct template.
183 my @fields = $record->fields();
184 my %witness; #---- stores the list of subfields used at least once, with the "meaning" of the code
185 my @big_array;
186 foreach my $field (@fields) {
187         next if ($field->tag()<10);
188         my @subf=$field->subfields;
189         my %this_row;
190 # loop through each subfield
191         for my $i (0..$#subf) {
192                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{tab}  ne 10);
193                 next if ($tagslib->{$field->tag()}->{$subf[$i][0]}->{hidden});
194                 $witness{$subf[$i][0]} = $tagslib->{$field->tag()}->{$subf[$i][0]}->{lib};
195                 $this_row{$subf[$i][0]} =$subf[$i][1];
196         }
197         if (%this_row) {
198                 push(@big_array, \%this_row);
199         }
200 }
201 #fill big_row with missing datas
202 foreach my $subfield_code  (keys(%witness)) {
203         for (my $i=0;$i<=$#big_array;$i++) {
204                 $big_array[$i]{$subfield_code}="&nbsp;" unless ($big_array[$i]{$subfield_code});
205         }
206 }
207 # now, construct template !
208 my @item_value_loop;
209 my @header_value_loop;
210 for (my $i=0;$i<=$#big_array; $i++) {
211         my $items_data;
212         foreach my $subfield_code (keys(%witness)) {
213                 $items_data .="<td>".$big_array[$i]{$subfield_code}."</td>";
214         }
215         my %row_data;
216         $row_data{item_value} = $items_data;
217         push(@item_value_loop,\%row_data);
218 }
219 foreach my $subfield_code (keys(%witness)) {
220         my %header_value;
221         $header_value{header_value} = $witness{$subfield_code};
222         push(@header_value_loop, \%header_value);
223 }
224
225 my $subscriptionsnumber = getsubscriptionfrombiblionumber($biblionumber);
226 $template->param(item_loop => \@item_value_loop,
227                                                 item_header_loop => \@header_value_loop,
228                                                 biblionumber => $biblionumber,
229                                                 bibid => $bibid,
230                                                 biblionumber => $biblionumber,
231                                                 subscriptionsnumber => $subscriptionsnumber,
232                                                 popup => $popup,
233                                                 );
234 output_html_with_http_headers $query, $cookie, $template->output;
235
236 sub get_authorised_value_desc ($$$$$) {
237    my($tag, $subfield, $value, $framework, $dbh) = @_;
238
239    #---- branch
240     if ($tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
241        return getbranchname($value);
242     }
243
244    #---- itemtypes
245    if ($tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "itemtypes" ) {
246        return ItemType($value);
247     }
248
249    #---- "true" authorized value
250    my $category = $tagslib->{$tag}->{$subfield}->{'authorised_value'};
251
252    if ($category ne "") {
253        my $sth = $dbh->prepare("select lib from authorised_values where category = ? and authorised_value = ?");
254        $sth->execute($category, $value);
255        my $data = $sth->fetchrow_hashref;
256        return $data->{'lib'};
257    } else {
258        return $value; # if nothing is found return the original value
259    }
260 }