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