oops, removing un-needed $dbh->commit() calls
[koha.git] / opac / opac-detail.pl
blobb424ea7b3ef182db21f0b4c4280cbf82d65a6225
1 #!/usr/bin/perl
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
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.
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.
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
21 use strict;
22 require Exporter;
23 use CGI;
24 use C4::Auth;
25 use C4::Koha;
26 use C4::Serials; #uses getsubscriptionfrom biblionumber
27 use C4::Output;
28 use C4::Biblio;
29 use C4::Items;
30 use C4::Dates qw/format_date/;
31 use C4::XISBN qw(get_xisbns get_biblio_from_xisbn);
32 use C4::Amazon;
33 use C4::Review;
34 use C4::Serials;
35 use C4::Members;
37 my $query = new CGI;
38 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
40 template_name => "opac-detail.tmpl",
41 query => $query,
42 type => "opac",
43 authnotrequired => 1,
44 flagsrequired => { borrow => 1 },
48 my $biblionumber = $query->param('biblionumber') || $query->param('bib');
49 $template->param( biblionumber => $biblionumber );
51 # change back when ive fixed request.pl
52 my @items = &GetItemsInfo( $biblionumber, 'opac' );
53 my $dat = &GetBiblioData($biblionumber);
55 if (!$dat) {
56 print $query->redirect("/cgi-bin/koha/koha-tmpl/errors/404.pl");
57 exit;
60 #coping with subscriptions
61 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
62 my @subscriptions =
63 GetSubscriptions( $dat->{title}, $dat->{issn}, $biblionumber );
64 my @subs;
65 $dat->{'serial'}=1 if $subscriptionsnumber;
66 foreach my $subscription (@subscriptions) {
67 my %cell;
68 $cell{subscriptionid} = $subscription->{subscriptionid};
69 $cell{subscriptionnotes} = $subscription->{notes};
70 $cell{branchcode} = $subscription->{branchcode};
71 #get the three latest serials.
72 $cell{latestserials} =
73 GetLatestSerials( $subscription->{subscriptionid}, 3 );
74 push @subs, \%cell;
77 $dat->{'count'} = scalar(@items);
79 #adding RequestOnOpac filter to allow or not the display of plce reserve button
80 # FIXME - use me or delete me.
81 my $RequestOnOpac;
82 if (C4::Context->preference("RequestOnOpac")) {
83 $RequestOnOpac = 1;
86 my $norequests = 1;
87 foreach my $itm (@items) {
88 $norequests = 0 && $norequests
89 if ( (not $itm->{'wthdrawn'} )
90 || (not $itm->{'itemlost'} )
91 || (not $itm->{'itemnotforloan'} )
92 || ($itm->{'itemnumber'} ) );
93 $itm->{ $itm->{'publictype'} } = 1;
95 #get collection code description, too
96 $itm->{'ccode'} = GetAuthorisedValueDesc('','', $itm->{'ccode'} ,'','','CCODE');
99 $template->param( norequests => $norequests, RequestOnOpac=>$RequestOnOpac );
101 ## get notes and subjects from MARC record
102 my $dbh = C4::Context->dbh;
103 my $marcflavour = C4::Context->preference("marcflavour");
104 my $record = GetMarcBiblio($biblionumber);
105 my $marcnotesarray = GetMarcNotes( $record, $marcflavour );
106 my $marcauthorsarray = GetMarcAuthors( $record, $marcflavour );
107 my $marcsubjctsarray = GetMarcSubjects( $record, $marcflavour );
108 my $marcseriesarray = GetMarcSeries($record,$marcflavour);
109 my $marcurlsarray = GetMarcUrls($record,$marcflavour);
111 $template->param(
112 MARCNOTES => $marcnotesarray,
113 MARCSUBJCTS => $marcsubjctsarray,
114 MARCAUTHORS => $marcauthorsarray,
115 MARCSERIES => $marcseriesarray,
116 MARCURLS => $marcurlsarray,
119 foreach ( keys %{$dat} ) {
120 $template->param( "$_" => $dat->{$_} . "" );
123 # COinS format FIXME: for books Only
124 my $coins_format;
125 my $fmt = substr $record->leader(), 6,2;
126 my $fmts;
127 $fmts->{'am'} = 'book';
128 $coins_format = $fmts->{$fmt};
129 $template->param(
130 ocoins_format => $coins_format,
133 my $reviews = getreviews( $biblionumber, 1 );
134 foreach ( @$reviews ) {
135 my $borrower_number_review = $_->{borrowernumber};
136 my $borrowerData = GetMember($borrower_number_review,'borrowernumber');
137 # setting some borrower info into this hash
138 $_->{title} = $borrowerData->{'title'};
139 $_->{surname} = $borrowerData->{'surname'};
140 $_->{firstname} = $borrowerData->{'firstname'};
141 $_->{datereviewed} = format_date($_->{datereviewed});
144 $template->param(
145 ITEM_RESULTS => \@items,
146 subscriptionsnumber => $subscriptionsnumber,
147 biblionumber => $biblionumber,
148 subscriptions => \@subs,
149 subscriptionsnumber => $subscriptionsnumber,
150 reviews => $reviews
153 # XISBN Stuff
154 my $xisbn=$dat->{'isbn'};
155 $xisbn =~ s/(p|-| |:)//g;
156 $template->param(amazonisbn => $xisbn);
157 if (C4::Context->preference("OPACFRBRizeEditions")==1) {
158 eval {
159 $template->param(
160 xisbn => $xisbn,
161 XISBNS => get_xisbns($xisbn)
164 if ($@) { warn "XISBN Failed $@"; }
166 if ( C4::Context->preference("OPACAmazonContent") == 1 ) {
167 my $amazon_details = &get_amazon_details( $xisbn );
168 foreach my $result ( @{ $amazon_details->{Details} } ) {
169 $template->param( item_description => $result->{ProductDescription} );
170 $template->param( image => $result->{ImageUrlMedium} );
171 $template->param( list_price => $result->{ListPrice} );
172 $template->param( amazon_url => $result->{url} );
175 my @products;
176 my @reviews;
177 for my $details ( @{ $amazon_details->{Details} } ) {
178 next unless $details->{SimilarProducts};
179 for my $product ( @{ $details->{SimilarProducts}->{Product} } ) {
180 if (C4::Context->preference("OPACAmazonSimilarItems") ) {
181 my $xbiblios;
182 my @xisbns;
184 if (C4::Context->preference("OPACXISBNAmazonSimilarItems") ) {
185 my $xbiblio = get_biblio_from_xisbn($product);
186 push @xisbns, $xbiblio;
187 $xbiblios = \@xisbns;
189 else {
190 $xbiblios = get_xisbns($product);
192 push @products, +{ product => $xbiblios };
195 next unless $details->{Reviews};
196 for my $product ( @{ $details->{Reviews}->{AvgCustomerRating} } ) {
197 $template->param( rating => $product * 20 );
199 for my $reviews ( @{ $details->{Reviews}->{CustomerReview} } ) {
200 push @reviews,
202 summary => $reviews->{Summary},
203 comment => $reviews->{Comment},
207 $template->param( SIMILAR_PRODUCTS => \@products );
208 $template->param( AMAZONREVIEWS => \@reviews );
211 output_html_with_http_headers $query, $cookie, $template->output;