add call to doc-head-open.inc and doc-head-close.inc
[koha.git] / opac / opac-ISBDdetail.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 #$bibid = &MARCfind_MARCbibid_from_oldbiblionumber($dbh,$biblionumber) unless $bibid;
69 #$biblionumber = &MARCfind_oldbiblionumber_from_MARCbibid($dbh,$bibid) unless $biblionumber;
70 #my $itemtype = &MARCfind_frameworkcode($dbh,$bibid);
71 my $itemtype="";
72 my $tagslib = &MARCgettagslib($dbh,1,$itemtype);
73
74 my $record =MARCgetbiblio($dbh,$bibid);
75
76 #coping with subscriptions
77 my $subscriptionsnumber = getsubscriptionfrombiblionumber($biblionumber);
78 my $dat = MARCmarc2koha($dbh,$record);
79 my @subscriptions = getsubscriptions($dat->{title},$dat->{issn},$biblionumber);
80 my @subs;
81 foreach my $subscription (@subscriptions){
82         my %cell;
83         $cell{subscriptionid}= $subscription->{subscriptionid};
84         $cell{subscriptionnotes}= $subscription->{notes};
85         #get the three latest serials.
86         $cell{latestserials}=getlatestserials($subscription->{subscriptionid},3);
87         push @subs, \%cell;
88 }
89
90 # open template
91 my ($template, $loggedinuser, $cookie)
92                 = get_template_and_user({template_name => "opac-ISBDdetail.tmpl",
93                              query => $query,
94                              type => "opac",
95                              authnotrequired => 1,
96                              debug => 1,
97                              });
98 $template->param(
99                                 subscriptions => \@subs,
100                                 subscriptionsnumber => $subscriptionsnumber,
101 );
102
103 my $ISBD = C4::Context->preference('ISBD');
104 # my @blocs = split /\@/,$ISBD;
105 # my @fields = $record->fields();
106 my $res;
107 # foreach my $bloc (@blocs) {
108 #       $bloc =~ s/\n//g;
109         my $bloc = $ISBD;
110         my $blocres;
111         foreach my $isbdfield (split /#/,$bloc) {
112 #               $isbdfield= /(.?.?.?)/;
113                 $isbdfield =~ /(\d\d\d)\|(.*)\|(.*)\|(.*)/;
114                 my $fieldvalue=$1;
115                 my $textbefore=$2;
116                 my $analysestring=$3;
117                 my $textafter=$4;
118 #               warn "==> $1 / $2 / $3 / $4";
119 #               my $fieldvalue=substr($isbdfield,0,3);
120                 if ($fieldvalue>0) {
121         #               warn "ERROR IN ISBD DEFINITION at : $isbdfield" unless $fieldvalue;
122 #                       warn "FV : $fieldvalue";
123                         my $hasputtextbefore=0;
124                         foreach my $field ($record->field($fieldvalue)) {
125                                 my $calculated = $analysestring;
126                                 my $tag = $field->tag();
127                                 if ($tag<10) {
128                                 } else {
129                                         my @subf = $field->subfields;
130                                         for my $i (0..$#subf) {
131                                                 my $subfieldcode = $subf[$i][0];
132                                                 my $subfieldvalue = get_authorised_value_desc($tag, $subf[$i][0], $subf[$i][1], '', $dbh);
133                                                 my $tagsubf = $tag.$subfieldcode;
134                                                 $calculated =~ s/\{(.?.?.?.?)$tagsubf(.*?)\}/$1$subfieldvalue$2\{$1$tagsubf$2\}/g;
135                                         }
136                                         # field builded, store the result
137                                         if ($calculated && !$hasputtextbefore) { # put textbefore if not done
138                                                 $blocres .=$textbefore;
139                                                 $hasputtextbefore=1
140                                         }
141                                         # remove punctuation at start
142                                         $calculated =~ s/^( |;|:|\.|-)*//g;
143                                         $blocres.=$calculated;
144                                 }
145                         }
146                         $blocres .=$textafter if $hasputtextbefore;
147                 } else {
148                         $blocres.=$isbdfield;
149                 }
150         }
151         $res.=$blocres;
152 # }
153 $res =~ s/\{(.*?)\}//g;
154 $res =~ s/\\n/\n/g;
155 $res =~ s/\n/<br\/>/g;
156 # remove empty ()
157 $res =~ s/\(\)//g;
158 $template->param(ISBD => $res,
159                                 biblionumber => $biblionumber);
160
161 output_html_with_http_headers $query, $cookie, $template->output;
162
163 sub get_authorised_value_desc ($$$$$) {
164    my($tag, $subfield, $value, $framework, $dbh) = @_;
165
166    #---- branch
167     if ($tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
168        return getbranchname($value);
169     }
170
171    #---- itemtypes
172    if ($tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "itemtypes" ) {
173        return ItemType($value);
174     }
175
176    #---- "true" authorized value
177    my $category = $tagslib->{$tag}->{$subfield}->{'authorised_value'};
178
179    if ($category ne "") {
180        my $sth = $dbh->prepare("select lib from authorised_values where category = ? and authorised_value = ?");
181        $sth->execute($category, $value);
182        my $data = $sth->fetchrow_hashref;
183        return $data->{'lib'};
184    } else {
185        return $value; # if nothing is found return the original value
186    }
187 }