fix for bug 2477: Improve Speed of the Shelf Browser
[koha.git] / opac / opac-detail.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 use strict;
22 require Exporter;
23 use CGI;
24 use C4::Auth;
25 use C4::Branch;
26 use C4::Koha;
27 use C4::Serials;    #uses getsubscriptionfrom biblionumber
28 use C4::Output;
29 use C4::Biblio;
30 use C4::Items;
31 use C4::Circulation;
32 use C4::Tags qw(get_tags);
33 use C4::Dates qw/format_date/;
34 use C4::XISBN qw(get_xisbns get_biblionumber_from_isbn get_biblio_from_xisbn);
35 use C4::Amazon;
36 use C4::Review;
37 use C4::Serials;
38 use C4::Members;
39 use C4::XSLT;
40
41 BEGIN {
42         if (C4::Context->preference('BakerTaylorEnabled')) {
43                 require C4::External::BakerTaylor;
44                 import C4::External::BakerTaylor qw(&image_url &link_url);
45         }
46 }
47
48 my $query = new CGI;
49 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
50     {
51         template_name   => "opac-detail.tmpl",
52         query           => $query,
53         type            => "opac",
54         authnotrequired => 1,
55         flagsrequired   => { borrow => 1 },
56     }
57 );
58
59 my $biblionumber = $query->param('biblionumber') || $query->param('bib');
60 $template->param( biblionumber => $biblionumber );
61 # XSLT processing of some stuff
62 if (C4::Context->preference("XSLTResultsDisplay") ) {
63     my $newxmlrecord = XSLTParse4Display($biblionumber,C4::Context->config('opachtdocs')."/prog/en/xslt/MARC21slim2OPACDetail.xsl");
64     $template->param('XSLTBloc' => $newxmlrecord);
65 }
66
67 # change back when ive fixed request.pl
68 my @all_items = &GetItemsInfo( $biblionumber, 'opac' );
69 my @items;
70 @items = @all_items unless C4::Context->preference('hidelostitems');
71
72 if (C4::Context->preference('hidelostitems')) {
73     # Hide host items
74     for my $itm (@all_items) {
75         push @items, $itm unless $itm->{itemlost};
76     }
77 }
78 my $dat = &GetBiblioData($biblionumber);
79
80 if (!$dat) {
81     print $query->redirect("/cgi-bin/koha/errors/404.pl");
82     exit;
83 }
84 my $imgdir = getitemtypeimagesrc();
85 my $itemtypes = GetItemTypes();
86 # imageurl:
87 my $itemtype = $dat->{'itemtype'};
88 if ( $itemtype ) {
89     $dat->{'imageurl'}    = $imgdir."/".$itemtypes->{$itemtype}->{'imageurl'};
90     $dat->{'description'} = $itemtypes->{$itemtype}->{'description'};
91 }
92 my $shelflocations =GetKohaAuthorisedValues('items.location',$dat->{'frameworkcode'});
93 my $collections =  GetKohaAuthorisedValues('items.ccode',$dat->{'frameworkcode'} );
94
95 #coping with subscriptions
96 my $subscriptionsnumber = CountSubscriptionFromBiblionumber($biblionumber);
97 my @subscriptions       = GetSubscriptions( $dat->{title}, $dat->{issn}, $biblionumber );
98 my @subs;
99 $dat->{'serial'}=1 if $subscriptionsnumber;
100 foreach my $subscription (@subscriptions) {
101     my %cell;
102     $cell{subscriptionid}    = $subscription->{subscriptionid};
103     $cell{subscriptionnotes} = $subscription->{notes};
104     $cell{branchcode}        = $subscription->{branchcode};
105     $cell{hasalert}          = $subscription->{hasalert};
106     #get the three latest serials.
107     $cell{latestserials} =
108       GetLatestSerials( $subscription->{subscriptionid}, 3 );
109     push @subs, \%cell;
110 }
111
112 $dat->{'count'} = scalar(@items);
113
114 #adding RequestOnOpac filter to allow or not the display of plce reserve button
115 # FIXME - use me or delete me.
116 my $RequestOnOpac;
117 if (C4::Context->preference("RequestOnOpac")) {
118     $RequestOnOpac = 1;
119 }
120
121 my $biblio_authorised_value_images = C4::Items::get_authorised_value_images( C4::Biblio::get_biblio_authorised_values( $biblionumber ) );
122
123 my $norequests = 1;
124 my $branches = GetBranches();
125 my %itemfields;
126 for my $itm (@items) {
127      $norequests = 0 && $norequests
128        if ( (not $itm->{'wthdrawn'} )
129          && (not $itm->{'itemlost'} )
130          && ($itm->{'itemnotforloan'}<0 || not $itm->{'itemnotforloan'} )
131                  && (not $itemtypes->{$itm->{'itype'}}->{notforloan} )
132          && ($itm->{'itemnumber'} ) );
133
134     $itm->{ $itm->{'publictype'} } = 1;
135     $itm->{datedue} = format_date($itm->{datedue});
136     $itm->{datelastseen} = format_date($itm->{datelastseen});
137
138     #get collection code description, too
139         my $ccode= $itm->{'ccode'};
140         $itm->{'ccode'} = $collections->{$ccode} if(defined($collections) && exists($collections->{$ccode}));
141     $itm->{'location_description'} = $shelflocations->{$itm->{'location'} };
142     $itm->{'imageurl'}    = $imgdir."/".$itemtypes->{ $itm->{itype} }->{'imageurl'};     
143     $itm->{'description'} = $itemtypes->{$itemtype}->{'description'};
144         $itemfields{ccode} = 1 if($itm->{ccode});
145         $itemfields{enumchron} = 1 if($itm->{enumchron});
146         $itemfields{copynumber} = 1 if($itm->{copynumber});
147         $itemfields{itemnotes} = 1 if($itm->{itemnotes});
148
149      # walk through the item-level authorised values and populate some images
150      my $item_authorised_value_images = C4::Items::get_authorised_value_images( C4::Items::get_item_authorised_values( $itm->{'itemnumber'} ) );
151      # warn( Data::Dumper->Dump( [ $item_authorised_value_images ], [ 'item_authorised_value_images' ] ) );
152
153      if ( $itm->{'itemlost'} ) {
154          my $lostimageinfo = List::Util::first { $_->{'category'} eq 'LOST' } @$item_authorised_value_images;
155          $itm->{'lostimageurl'}   = $lostimageinfo->{ 'imageurl' };
156          $itm->{'lostimagelabel'} = $lostimageinfo->{ 'label' };
157      }
158
159     
160      my ( $transfertwhen, $transfertfrom, $transfertto ) = GetTransfers($itm->{itemnumber});
161      if ( $transfertwhen ne '' ) {
162         $itm->{transfertwhen} = format_date($transfertwhen);
163         $itm->{transfertfrom} = $branches->{$transfertfrom}{branchname};
164         $itm->{transfertto}   = $branches->{$transfertto}{branchname};
165      }
166 }
167
168 ## get notes and subjects from MARC record
169 my $dbh              = C4::Context->dbh;
170 my $marcflavour      = C4::Context->preference("marcflavour");
171 my $record           = GetMarcBiblio($biblionumber);
172 my $marcnotesarray   = GetMarcNotes   ($record,$marcflavour);
173 my $marcauthorsarray = GetMarcAuthors ($record,$marcflavour);
174 my $marcsubjctsarray = GetMarcSubjects($record,$marcflavour);
175 my $marcseriesarray  = GetMarcSeries  ($record,$marcflavour);
176 my $marcurlsarray    = GetMarcUrls    ($record,$marcflavour);
177 my $subtitle         = C4::Biblio::get_koha_field_from_marc('bibliosubtitle', 'subtitle', $record, '');
178
179     $template->param(
180                      MARCNOTES               => $marcnotesarray,
181                      MARCSUBJCTS             => $marcsubjctsarray,
182                      MARCAUTHORS             => $marcauthorsarray,
183                      MARCSERIES              => $marcseriesarray,
184                      MARCURLS                => $marcurlsarray,
185                      norequests              => $norequests,
186                      RequestOnOpac           => $RequestOnOpac,
187                      itemdata_ccode          => $itemfields{ccode},
188                      itemdata_enumchron      => $itemfields{enumchron},
189                      itemdata_copynumber     => $itemfields{copynumber},
190                      itemdata_itemnotes          => $itemfields{itemnotes},
191                      authorised_value_images => $biblio_authorised_value_images,
192                      subtitle                => $subtitle,
193     );
194
195 foreach ( keys %{$dat} ) {
196     $template->param( "$_" => $dat->{$_} . "" );
197 }
198
199 # COinS format FIXME: for books Only
200 my $coins_format;
201 my $fmt = substr $record->leader(), 6,2;
202 my $fmts;
203 $fmts->{'am'} = 'book';
204 $coins_format = $fmts->{$fmt};
205 $template->param(
206         ocoins_format => $coins_format,
207 );
208
209 my $reviews = getreviews( $biblionumber, 1 );
210 my $loggedincommenter;
211 foreach ( @$reviews ) {
212     my $borrowerData   = GetMember($_->{borrowernumber},'borrowernumber');
213     # setting some borrower info into this hash
214     $_->{title}     = $borrowerData->{'title'};
215     $_->{surname}   = $borrowerData->{'surname'};
216     $_->{firstname} = $borrowerData->{'firstname'};
217     $_->{userid}    = $borrowerData->{'userid'};
218     $_->{datereviewed} = format_date($_->{datereviewed});
219     if ($borrowerData->{'borrowernumber'} eq $borrowernumber) {
220                 $_->{your_comment} = 1;
221                 $loggedincommenter = 1;
222         }
223 }
224
225
226 if(C4::Context->preference("ISBD")) {
227         $template->param(ISBD => 1);
228 }
229
230 $template->param(
231     ITEM_RESULTS        => \@items,
232     subscriptionsnumber => $subscriptionsnumber,
233     biblionumber        => $biblionumber,
234     subscriptions       => \@subs,
235     subscriptionsnumber => $subscriptionsnumber,
236     reviews             => $reviews,
237     loggedincommenter   => $loggedincommenter
238 );
239
240 sub isbn_cleanup ($) {
241         my $isbn=shift;
242         if (
243                 $isbn =~ /\b(\d{13})\b/ or
244                 $isbn =~ /\b(\d{10})\b/ or 
245                 $isbn =~ /\b(\d{9}X)\b/i
246         ) {
247                 return $1;
248         }
249         return undef;
250 }
251
252 # XISBN Stuff
253 my $xisbn=$dat->{'isbn'};
254 $xisbn =~ /(\d*[X]*)/;
255 $template->param(amazonisbn => $1);             # FIXME: so it is OK if the ISBN = 'XXXXX' ?
256 my ($clean,$clean2);
257 # these might be overkill, but they are better than the regexp above.
258 if ($clean = isbn_cleanup($xisbn)){
259         $template->param(clean_isbn => $clean);
260 }
261
262 if (C4::Context->preference("OPACFRBRizeEditions")==1) {
263     eval {
264         $template->param(
265             xisbn => $xisbn,
266             XISBNS => get_xisbns($xisbn)
267         );
268     };
269     if ($@) { warn "XISBN Failed $@"; }
270 }
271 # Amazon.com Stuff
272 if ( C4::Context->preference("OPACAmazonContent") == 1 ) {
273     my $similar_products_exist;
274     my $amazon_details = &get_amazon_details( $xisbn );
275     my $item_attributes = \%{$amazon_details->{Items}->{Item}->{ItemAttributes}};
276     my $customer_reviews = \@{$amazon_details->{Items}->{Item}->{CustomerReviews}->{Review}};
277     for my $one_review (@$customer_reviews) {
278         $one_review->{Date} = format_date($one_review->{Date});
279     }
280     my @similar_products;
281     for my $similar_product (@{$amazon_details->{Items}->{Item}->{SimilarProducts}->{SimilarProduct}}) {
282         # do we have any of these isbns in our collection?
283         my $similar_biblionumbers = get_biblionumber_from_isbn($similar_product->{ASIN});
284         # verify that there is at least one similar item
285         if (scalar(@$similar_biblionumbers)){
286             $similar_products_exist++ if ($similar_biblionumbers && $similar_biblionumbers->[0]);
287             push @similar_products, +{ similar_biblionumbers => $similar_biblionumbers, title => $similar_product->{Title}, ASIN => $similar_product->{ASIN}  };
288         }
289     }
290     my $editorial_reviews = \@{$amazon_details->{Items}->{Item}->{EditorialReviews}->{EditorialReview}};
291     my $average_rating = $amazon_details->{Items}->{Item}->{CustomerReviews}->{AverageRating};
292     $template->param( OPACAmazonSimilarItems => $similar_products_exist );
293     $template->param( amazon_average_rating => $average_rating * 20);
294     $template->param( AMAZON_CUSTOMER_REVIEWS    => $customer_reviews );
295     $template->param( AMAZON_SIMILAR_PRODUCTS => \@similar_products );
296     $template->param( AMAZON_EDITORIAL_REVIEWS    => $editorial_reviews );
297 }
298 # Shelf Browser Stuff
299 if (C4::Context->preference("OPACShelfBrowser")) {
300     # pick the first itemnumber unless one was selected by the user
301     my $starting_itemnumber = $query->param('shelfbrowse_itemnumber'); # || $items[0]->{itemnumber};
302     $template->param( OpenOPACShelfBrowser => 1) if $starting_itemnumber;
303     # find the right cn_sort value for this item
304     my ($starting_cn_sort, $starting_homebranch, $starting_location);
305     my $sth_get_cn_sort = $dbh->prepare("SELECT cn_sort,homebranch,location from items where itemnumber=?");
306     $sth_get_cn_sort->execute($starting_itemnumber);
307     while (my $result = $sth_get_cn_sort->fetchrow_hashref()) {
308         $starting_cn_sort = $result->{'cn_sort'};
309         $starting_homebranch->{code} = $result->{'homebranch'};
310         $starting_homebranch->{description} = $branches->{$result->{'homebranch'}}{branchname};
311         $starting_location->{code} = $result->{'location'};
312         $starting_location->{description} = GetAuthorisedValueDesc('','',   $result->{'location'} ,'','','LOC');
313     
314     }
315     
316     ## List of Previous Items
317     # order by cn_sort, which should include everything we need for ordering purposes (though not
318     # for limits, those need to be handled separately
319     my $sth_shelfbrowse_previous = $dbh->prepare("
320         SELECT *
321         FROM items
322         WHERE
323             ((cn_sort = ? AND itemnumber < ?) OR cn_sort < ?) AND
324             homebranch = ? AND location = ?
325         ORDER BY cn_sort DESC, itemnumber ASC LIMIT 3
326         ");
327     $sth_shelfbrowse_previous->execute($starting_cn_sort, $starting_itemnumber, $starting_cn_sort, $starting_homebranch->{code}, $starting_location->{code});
328     my @previous_items;
329     while (my $this_item = $sth_shelfbrowse_previous->fetchrow_hashref()) {
330         my $sth_get_biblio = $dbh->prepare("SELECT biblio.*,biblioitems.isbn AS isbn FROM biblio LEFT JOIN biblioitems ON biblio.biblionumber=biblioitems.biblionumber WHERE biblio.biblionumber=?");
331         $sth_get_biblio->execute($this_item->{biblionumber});
332         while (my $this_biblio = $sth_get_biblio->fetchrow_hashref()) {
333             $this_item->{'title'} = $this_biblio->{'title'};
334             if ($clean2 = isbn_cleanup($this_biblio->{'isbn'})) {
335                 $this_item->{'isbn'} = $clean2;
336             } else { 
337                 $this_item->{'isbn'} = $this_biblio->{'isbn'};
338             }
339         }
340         unshift @previous_items, $this_item;
341         warn "p$this_item->{itemnumber}" . '@' . "$this_item->{biblionumber}: $this_item->{cn_sort}";
342     }
343     warn "p: " . (@previous_items ? 'yes' : 'no');
344     
345     ## List of Next Items; this also intentionally catches the current item
346     my $sth_shelfbrowse_next = $dbh->prepare("
347         SELECT *
348         FROM items
349         WHERE
350             ((cn_sort = ? AND itemnumber >= ?) OR cn_sort > ?) AND
351             homebranch = ? AND location = ?
352         ORDER BY cn_sort DESC, itemnumber ASC LIMIT 3
353         ");
354     $sth_shelfbrowse_next->execute($starting_cn_sort, $starting_itemnumber, $starting_cn_sort, $starting_homebranch->{code}, $starting_location->{code});
355     my @next_items;
356     while (my $this_item = $sth_shelfbrowse_next->fetchrow_hashref()) {
357         my $sth_get_biblio = $dbh->prepare("SELECT biblio.*,biblioitems.isbn AS isbn FROM biblio LEFT JOIN biblioitems ON biblio.biblionumber=biblioitems.biblionumber WHERE biblio.biblionumber=?");
358         $sth_get_biblio->execute($this_item->{biblionumber});
359         while (my $this_biblio = $sth_get_biblio->fetchrow_hashref()) {
360             $this_item->{'title'} = $this_biblio->{'title'};
361             if ($clean2 = isbn_cleanup($this_biblio->{'isbn'})) {
362                 $this_item->{'isbn'} = $clean2;
363             } else { 
364                 $this_item->{'isbn'} = $this_biblio->{'isbn'};
365             }
366         }
367         push @next_items, $this_item;
368         warn "n$this_item->{itemnumber}" . '@' . "$this_item->{biblionumber}: $this_item->{cn_sort}";
369     }
370     warn "n: " . (@next_items ? 'yes' : 'no');
371     
372     # alas, these won't auto-vivify, see http://www.perlmonks.org/?node_id=508481
373     my $shelfbrowser_next_itemnumber = $next_items[-1]->{itemnumber} if @next_items;
374     my $shelfbrowser_next_biblionumber = $next_items[-1]->{biblionumber} if @next_items;
375     
376     $template->param(
377         starting_homebranch => $starting_homebranch->{description},
378         starting_location => $starting_location->{description},
379         starting_itemnumber => $starting_itemnumber,
380         shelfbrowser_prev_itemnumber => (@previous_items ? $previous_items[0]->{itemnumber} : 0),
381         shelfbrowser_next_itemnumber => $shelfbrowser_next_itemnumber,
382         shelfbrowser_prev_biblionumber => (@previous_items ? $previous_items[0]->{biblionumber} : 0),
383         shelfbrowser_next_biblionumber => $shelfbrowser_next_biblionumber,
384         PREVIOUS_SHELF_BROWSE => \@previous_items,
385         NEXT_SHELF_BROWSE => \@next_items,
386     );
387 }
388
389 if (C4::Context->preference("BakerTaylorEnabled")) {
390         $template->param(
391                 BakerTaylorEnabled  => 1,
392                 BakerTaylorImageURL => &image_url(),
393                 BakerTaylorLinkURL  => &link_url(),
394                 BakerTaylorBookstoreURL => C4::Context->preference('BakerTaylorBookstoreURL'),
395         );
396         my ($bt_user, $bt_pass);
397         if ($clean and
398                 $bt_user = C4::Context->preference('BakerTaylorUsername') and
399                 $bt_pass = C4::Context->preference('BakerTaylorPassword')    )
400         {
401                 $template->param(
402                 BakerTaylorContentURL   =>
403                 sprintf("http://contentcafe2.btol.com/ContentCafeClient/ContentCafe.aspx?UserID=%s&Password=%s&ItemKey=%s&Options=Y",
404                                 $bt_user,$bt_pass,$clean)
405                 );
406         }
407 }
408
409 my $tag_quantity;
410 if (C4::Context->preference('TagsEnabled') and $tag_quantity = C4::Context->preference('TagsShowOnDetail')) {
411         $template->param(
412                 TagsEnabled => 1,
413                 TagsShowOnDetail => $tag_quantity,
414                 TagsInputOnDetail => C4::Context->preference('TagsInputOnDetail')
415         );
416         $template->param(TagLoop => get_tags({biblionumber=>$biblionumber, approved=>1,
417                                                                 'sort'=>'-weight', limit=>$tag_quantity}));
418 }
419
420 output_html_with_http_headers $query, $cookie, $template->output;