Updated README.txt to include more PostgreSQL notes
[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
21 =head1 NAME
22
23 opac-ISBDdetail.pl : script to show a biblio in ISBD format
24
25
26 =head1 DESCRIPTION
27
28 This script needs a biblionumber as parameter 
29
30 It shows the biblio
31
32 The template is in <templates_dir>/catalogue/ISBDdetail.tmpl.
33 this template must be divided into 11 "tabs".
34
35 The first 10 tabs present the biblio, the 11th one presents
36 the items attached to the biblio
37
38 =head1 FUNCTIONS
39
40 =over 2
41
42 =cut
43
44 use strict;
45 require Exporter;
46 use C4::Auth;
47 use C4::Context;
48 use C4::Output;
49 use CGI;
50 use MARC::Record;
51 use C4::Biblio;
52 use C4::Acquisition;
53 use C4::Review;
54 use C4::Serials;    # uses getsubscriptionfrom biblionumber
55 use C4::Koha;       # use getitemtypeinfo
56 use C4::Members;    # GetMember
57
58 my $query = new CGI;
59
60 my $dbh = C4::Context->dbh;
61
62 my $biblionumber = $query->param('biblionumber');
63 my $itemtype     = &GetFrameworkCode($biblionumber);
64 my $tagslib      = &GetMarcStructure( 1, $itemtype );
65
66 my $record = GetMarcBiblio($biblionumber);
67
68 #coping with subscriptions
69 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
70 my $dat                 = TransformMarcToKoha( $dbh, $record );
71 my @subscriptions       =
72   GetSubscriptions( $dat->{title}, $dat->{issn}, $biblionumber );
73 my @subs;
74 foreach my $subscription (@subscriptions) {
75     my %cell;
76     $cell{subscriptionid}    = $subscription->{subscriptionid};
77     $cell{subscriptionnotes} = $subscription->{notes};
78
79     #get the three latest serials.
80     $cell{latestserials} =
81       GetLatestSerials( $subscription->{subscriptionid}, 3 );
82     push @subs, \%cell;
83 }
84
85 # open template
86 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
87     {
88         template_name   => "opac-ISBDdetail.tmpl",
89         query           => $query,
90         type            => "opac",
91         authnotrequired => 1,
92         debug           => 1,
93     }
94 );
95 $template->param(
96     subscriptions       => \@subs,
97     subscriptionsnumber => $subscriptionsnumber,
98 );
99
100 my $ISBD = C4::Context->preference('ISBD');
101
102 # my @blocs = split /\@/,$ISBD;
103 # my @fields = $record->fields();
104 my $res;
105
106 # foreach my $bloc (@blocs) {
107 #     $bloc =~ s/\n//g;
108 my $bloc = $ISBD;
109 my $blocres;
110 my ($holdingbrtagf,$holdingbrtagsubf) = &GetMarcFromKohaField("items.holdingbranch",$itemtype);
111
112 foreach my $isbdfield ( split /#/, $bloc ) {
113
114     #         $isbdfield= /(.?.?.?)/;
115     $isbdfield =~ /(\d\d\d)\|(.*)\|(.*)\|(.*)/;
116     my $fieldvalue    = $1;
117     my $textbefore    = $2;
118     my $analysestring = $3;
119     my $textafter     = $4;
120
121     #         warn "==> $1 / $2 / $3 / $4";
122     #         my $fieldvalue=substr($isbdfield,0,3);
123     if ( $fieldvalue > 0 ) {
124         my $hasputtextbefore = 0;
125         my @fieldslist = $record->field($fieldvalue);
126         @fieldslist = sort {$a->subfield($holdingbrtagsubf) cmp $b->subfield($holdingbrtagsubf)} @fieldslist if ($fieldvalue eq $holdingbrtagf);
127
128         #         warn "ERROR IN ISBD DEFINITION at : $isbdfield" unless $fieldvalue;
129         #             warn "FV : $fieldvalue";
130         foreach my $field ( @fieldslist ) {
131           my $calculated = $analysestring;
132           my $tag        = $field->tag();
133           if ( $tag < 10 ) {
134           }
135           else {
136             my @subf = $field->subfields;
137             for my $i ( 0 .. $#subf ) {
138             my $subfieldcode  = $subf[$i][0];
139             my $subfieldvalue =
140             GetAuthorisedValueDesc( $tag, $subf[$i][0],
141               $subf[$i][1], '', $tagslib );
142             my $tagsubf = $tag . $subfieldcode;
143             $calculated =~
144         s/\{(.?.?.?.?)$tagsubf(.*?)\}/$1$subfieldvalue$2\{$1$tagsubf$2\}/g;
145         $calculated =~s#/cgi-bin/koha/[^/]+/([^.]*.pl\?.*)$#opac-$1#g;
146             }
147         
148             # field builded, store the result
149             if ( $calculated && !$hasputtextbefore )
150             {    # put textbefore if not done
151             $blocres .= $textbefore;
152             $hasputtextbefore = 1;
153             }
154         
155             # remove punctuation at start
156             $calculated =~ s/^( |;|:|\.|-)*//g;
157             $blocres .= $calculated;
158           }
159         }
160         $blocres .= $textafter if $hasputtextbefore;
161     }
162     else {
163         $blocres .= $isbdfield;
164     }
165 }
166 $res .= $blocres;
167
168 # }
169 $res =~ s/\{(.*?)\}//g;
170 $res =~ s/\\n/\n/g;
171 $res =~ s/\n/<br\/>/g;
172
173 # remove empty ()
174 $res =~ s/\(\)//g;
175
176 my $reviews = getreviews( $biblionumber, 1 );
177 foreach ( @$reviews ) {
178     my $borrower_number_review = $_->{borrowernumber};
179     my $borrowerData           = GetMember($borrower_number_review,'borrowernumber');
180     # setting some borrower info into this hash
181     $_->{title}     = $borrowerData->{'title'};
182     $_->{surname}   = $borrowerData->{'surname'};
183     $_->{firstname} = $borrowerData->{'firstname'};
184 }
185
186
187 $template->param(
188     ISBD         => $res,
189     biblionumber => $biblionumber,
190     reviews             => $reviews,
191 );
192
193 ## Amazon.com stuff
194 #not used unless preference set
195 if ( C4::Context->preference("AmazonContent") == 1 ) {
196     use C4::Amazon;
197     $dat->{'amazonisbn'} = $dat->{'isbn'};
198     $dat->{'amazonisbn'} =~ s|-||g;
199
200     $template->param( amazonisbn => $dat->{amazonisbn} );
201
202     my $amazon_details = &get_amazon_details( $dat->{amazonisbn} );
203
204     foreach my $result ( @{ $amazon_details->{Details} } ) {
205         $template->param( item_description => $result->{ProductDescription} );
206         $template->param( image            => $result->{ImageUrlMedium} );
207         $template->param( list_price       => $result->{ListPrice} );
208         $template->param( amazon_url       => $result->{url} );
209     }
210
211     my @products;
212     my @reviews;
213     for my $details ( @{ $amazon_details->{Details} } ) {
214         next unless $details->{SimilarProducts};
215         for my $product ( @{ $details->{SimilarProducts}->{Product} } ) {
216             push @products, +{ Product => $product };
217         }
218         next unless $details->{Reviews};
219         for my $product ( @{ $details->{Reviews}->{AvgCustomerRating} } ) {
220             $template->param( rating => $product * 20 );
221         }
222         for my $reviews ( @{ $details->{Reviews}->{CustomerReview} } ) {
223             push @reviews,
224               +{
225                 Summary => $reviews->{Summary},
226                 Comment => $reviews->{Comment},
227               };
228         }
229     }
230     $template->param( SIMILAR_PRODUCTS => \@products );
231     $template->param( AMAZONREVIEWS    => \@reviews );
232 }
233
234 output_html_with_http_headers $query, $cookie, $template->output;