New XML API
[koha.git] / catalogue / 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 ISBDdetail.pl : script to show a biblio in ISBD 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 =head1 FUNCTIONS
33
34 =over 2
35
36 =cut
37
38
39 use strict;
40 require Exporter;
41 use C4::Auth;
42 use C4::Context;
43 use C4::Output;
44 use C4::Interface::CGI::Output;
45 use CGI;
46 use C4::Search;
47 use MARC::Record;
48 use C4::Biblio;
49 use C4::Acquisition;
50 use HTML::Template;
51
52 my $query=new CGI;
53
54 my $dbh=C4::Context->dbh;
55
56 my $biblionumber=$query->param('bib');
57 my $bibid = $query->param('bibid');
58 $bibid = &MARCfind_MARCbibid_from_oldbiblionumber($dbh,$biblionumber) unless $bibid;
59 $biblionumber = &MARCfind_oldbiblionumber_from_MARCbibid($dbh,$bibid) unless $biblionumber;
60 my $itemtype = &MARCfind_frameworkcode($dbh,$bibid);
61 my $tagslib = &MARCgettagslib($dbh,1,$itemtype);
62
63 my $record =MARCgetbiblio($dbh,$bibid);
64 # open template
65 my ($template, $loggedinuser, $cookie)
66                 = get_template_and_user({template_name => "catalogue/ISBDdetail.tmpl",
67                              query => $query,
68                              type => "intranet",
69                              authnotrequired => 1,
70                              debug => 1,
71                              });
72
73 my $ISBD = C4::Context->preference('ISBD');
74 # my @blocs = split /\@/,$ISBD;
75 # my @fields = $record->fields();
76 my $res;
77 # foreach my $bloc (@blocs) {
78 #       $bloc =~ s/\n//g;
79         my $bloc = $ISBD;
80         my $blocres;
81         foreach my $isbdfield (split /#/,$bloc) {
82 #               $isbdfield= /(.?.?.?)/;
83                 $isbdfield =~ /(\d\d\d)\|(.*)\|(.*)\|(.*)/;
84                 my $fieldvalue=$1;
85                 my $textbefore=$2;
86                 my $analysestring=$3;
87                 my $textafter=$4;
88 #               warn "==> $1 / $2 / $3 / $4";
89 #               my $fieldvalue=substr($isbdfield,0,3);
90                 if ($fieldvalue>0) {
91         #               warn "ERROR IN ISBD DEFINITION at : $isbdfield" unless $fieldvalue;
92 #                       warn "FV : $fieldvalue";
93                         my $hasputtextbefore=0;
94                         foreach my $field ($record->field($fieldvalue)) {
95                                 my $calculated = $analysestring;
96                                 my $tag = $field->tag();
97                                 if ($tag<10) {
98                                 } else {
99                                         my @subf = $field->subfields;
100                                         for my $i (0..$#subf) {
101                                                 my $subfieldcode = $subf[$i][0];
102                                                 my $subfieldvalue = get_authorised_value_desc($tag, $subf[$i][0], $subf[$i][1], '', $dbh);;
103                                                 my $tagsubf = $tag.$subfieldcode;
104                                                 $calculated =~ s/\{(.?.?.?)$tagsubf(.*?)\}/$1$subfieldvalue\{$1$tagsubf$2\}$2/g;
105                                         }
106                                         # field builded, store the result
107                                         if ($calculated && !$hasputtextbefore) { # put textbefore if not done
108                                                 $blocres .=$textbefore;
109                                                 $hasputtextbefore=1
110                                         }
111                                         # remove punctuation at start
112                                         $calculated =~ s/^( |;|:|\.|-)*//g;
113                                         $blocres.=$calculated;
114                                 }
115                         }
116                         $blocres .=$textafter if $hasputtextbefore;
117                 } else {
118                         $blocres.=$isbdfield;
119                 }
120         }
121         $res.=$blocres;
122 # }
123 $res =~ s/\{(.*?)\}//g;
124 $res =~ s/\\n/\n/g;
125 $res =~ s/\n/<br\/>/g;
126 # remove empty ()
127 $res =~ s/\(\)//g;
128 $template->param(ISBD => $res,
129                                 biblionumber => $biblionumber);
130
131 output_html_with_http_headers $query, $cookie, $template->output;
132
133 sub get_authorised_value_desc ($$$$$) {
134    my($tag, $subfield, $value, $framework, $dbh) = @_;
135
136    #---- branch
137     if ($tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
138        return getbranchname($value);
139     }
140
141    #---- itemtypes
142    if ($tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "itemtypes" ) {
143        return ItemType($value);
144     }
145
146    #---- "true" authorized value
147    my $category = $tagslib->{$tag}->{$subfield}->{'authorised_value'};
148
149    if ($category ne "") {
150        my $sth = $dbh->prepare("select lib from authorised_values where category = ? and authorised_value = ?");
151        $sth->execute($category, $value);
152        my $data = $sth->fetchrow_hashref;
153        return $data->{'lib'};
154    } else {
155        return $value; # if nothing is found return the original value
156    }
157 }