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